use of org.gradle.play.internal.toolchain.PlayToolProvider in project gradle by gradle.
the class PlayTestPlugin method createTestTasks.
@Mutate
void createTestTasks(ModelMap<Task> tasks, @Path("binaries") ModelMap<PlayApplicationBinarySpecInternal> playBinaries, final PlayPluginConfigurations configurations, final FileResolver fileResolver, final ProjectIdentifier projectIdentifier, @Path("buildDir") final File buildDir) {
for (final PlayApplicationBinarySpecInternal binary : playBinaries) {
final PlayToolProvider playToolProvider = binary.getToolChain().select(binary.getTargetPlatform());
final FileCollection testCompileClasspath = getTestCompileClasspath(binary, playToolProvider, configurations);
final String testCompileTaskName = binary.getTasks().taskName("compile", "tests");
final File testSourceDir = fileResolver.resolve("test");
final FileCollection testSources = new SimpleFileCollection(testSourceDir).getAsFileTree().matching(new PatternSet().include("**/*.scala", "**/*.java"));
final File testClassesDir = new File(buildDir, binary.getProjectScopedName() + "/testClasses");
tasks.create(testCompileTaskName, PlatformScalaCompile.class, new Action<PlatformScalaCompile>() {
public void execute(PlatformScalaCompile scalaCompile) {
scalaCompile.setDescription("Compiles the scala and java test sources for the " + binary.getDisplayName() + ".");
scalaCompile.setClasspath(testCompileClasspath);
scalaCompile.dependsOn(binary.getBuildTask());
scalaCompile.setPlatform(binary.getTargetPlatform().getScalaPlatform());
scalaCompile.setDestinationDir(testClassesDir);
scalaCompile.setSource(testSources);
String targetCompatibility = binary.getTargetPlatform().getJavaPlatform().getTargetCompatibility().getMajorVersion();
scalaCompile.setSourceCompatibility(targetCompatibility);
scalaCompile.setTargetCompatibility(targetCompatibility);
IncrementalCompileOptions incrementalOptions = scalaCompile.getScalaCompileOptions().getIncrementalOptions();
incrementalOptions.setAnalysisFile(new File(buildDir, "tmp/scala/compilerAnalysis/" + testCompileTaskName + ".analysis"));
}
});
final String testTaskName = binary.getTasks().taskName("test");
final File binaryBuildDir = new File(buildDir, binary.getProjectScopedName());
tasks.create(testTaskName, Test.class, new Action<Test>() {
public void execute(Test test) {
test.setDescription("Runs " + WordUtils.uncapitalize(binary.getDisplayName() + "."));
test.setClasspath(getRuntimeClasspath(testClassesDir, testCompileClasspath));
test.setTestClassesDir(testClassesDir);
test.setBinResultsDir(new File(binaryBuildDir, "results/" + testTaskName + "/bin"));
test.getReports().getJunitXml().setDestination(new File(binaryBuildDir, "reports/test/xml"));
test.getReports().getHtml().setDestination(new File(binaryBuildDir, "reports/test"));
test.dependsOn(testCompileTaskName);
test.setWorkingDir(projectIdentifier.getProjectDir());
}
});
binary.getTasks().add(tasks.get(testTaskName));
}
}
Aggregations