Package org.apache.maven.surefire.booter
Class BooterDeserializer
java.lang.Object
org.apache.maven.surefire.booter.BooterDeserializer
Knows how to serialize and deserialize the booter configuration.
The internal serialization format is through a properties file. The long-term goal of this class is not to expose this implementation information to its clients. This still leaks somewhat, and there are some cases where properties are being accessed as "Properties" instead of more representative domain objects.
The internal serialization format is through a properties file. The long-term goal of this class is not to expose this implementation information to its clients. This still leaks somewhat, and there are some cases where properties are being accessed as "Properties" instead of more representative domain objects.
- Author:
- Jason van Zyl, Emmanuel Venisse, Kristian Rosenvold
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDescribes the current connection channel used by the client in the forked JVM in order to connect to the plugin process.When set, the fork runs in discovery mode: it just lists the test classes to run (using the provider), writes their names to this file (one per line, UTF-8) and exits without running any test.int
-
Constructor Details
-
BooterDeserializer
- Throws:
IOException
-
-
Method Details
-
getForkNumber
public int getForkNumber() -
getConnectionString
Describes the current connection channel used by the client in the forked JVM in order to connect to the plugin process.- Returns:
- connection string (must not be null)
-
getPluginPid
- Returns:
- PID of Maven process where plugin is executed; or null if PID could not be determined
-
getDiscoverTestsOutputFile
When set, the fork runs in discovery mode: it just lists the test classes to run (using the provider), writes their names to this file (one per line, UTF-8) and exits without running any test. This lets us list the tests inside a JVM that matches the toolchain, for the cases where Maven's own JVM cannot load the test classes (see Issue 2151).- Returns:
- the absolute path of the discovery output file, or
nullfor a normal run
-
deserialize
-
getStartupConfiguration
-