import java.net.URISyntaxException;
|
import java.nio.file.Path;
|
import java.nio.file.Paths;
|
|
import static java.util.Objects.requireNonNull;
|
|
/**
|
* @author <a href="https://github.com/gatling/gatling-maven-plugin-demo-java">gatling-maven-plugin-demo-java</a>
|
*/
|
public class IDEPathHelper {
|
|
static final Path mavenSourcesDirectory;
|
static final Path mavenResourcesDirectory;
|
static final Path mavenBinariesDirectory;
|
static final Path resultsDirectory;
|
static final Path recorderConfigFile;
|
|
static {
|
try {
|
Path projectRootDir = Paths.get(requireNonNull(IDEPathHelper.class.getResource("gatling.conf"), "Couldn't locate gatling.conf").toURI()).getParent().getParent().getParent();
|
Path mavenTargetDirectory = projectRootDir.resolve("target");
|
Path mavenSrcTestDirectory = projectRootDir.resolve("src").resolve("test");
|
|
mavenSourcesDirectory = mavenSrcTestDirectory.resolve("java");
|
mavenResourcesDirectory = mavenSrcTestDirectory.resolve("resources");
|
mavenBinariesDirectory = mavenTargetDirectory.resolve("test-classes");
|
resultsDirectory = mavenTargetDirectory.resolve("gatling");
|
recorderConfigFile = mavenResourcesDirectory.resolve("recorder.conf");
|
} catch (URISyntaxException e) {
|
throw new ExceptionInInitializerError(e);
|
}
|
}
|
}
|