use of eu.stamp_project.dspot.common.compilation.TestCompiler in project dspot by STAMP-project.
the class ProjectJSONTest method setUp.
@Before
public void setUp() {
super.setUp();
this.configuration = new UserInput();
this.configuration.setAbsolutePathToProjectRoot(getPathToProjectRoot());
this.configuration.setOutputDirectory(outputDirectory);
this.builder = AutomaticBuilderEnum.Maven.getAutomaticBuilder(configuration);
this.initializeDSpot = new InitializeDSpot();
String dependencies = initializeDSpot.completeDependencies(configuration, this.builder);
DSpotUtils.init(CommentEnum.None, outputDirectory, this.configuration.getFullClassPathWithExtraDependencies(), this.getPathToProjectRoot());
this.compiler = DSpotCompiler.createDSpotCompiler(configuration, dependencies);
DSpotCache.init(10000);
Launcher launcher = new Launcher();
launcher.getEnvironment().setNoClasspath(true);
launcher.addInputResource(this.getPathToProjectRoot());
launcher.buildModel();
this.factory = launcher.getFactory();
TestFramework.init(this.factory);
testCompiler = new TestCompiler(0, false, this.getPathToProjectRoot(), this.configuration.getClasspathClassesProject(), 10000, "", false);
AssertionGeneratorUtils.init(false);
DSpotPOMCreator.createNewPom(configuration);
RandomHelper.setSeedRandom(72L);
ValueCreator.count = 0;
this.testSelector = new JacocoCoverageSelector(builder, configuration);
try {
FileUtils.forceDelete(new File(outputDirectory));
} catch (Exception ignored) {
}
}
use of eu.stamp_project.dspot.common.compilation.TestCompiler in project dspot by STAMP-project.
the class InitializeDSpot method init.
public void init(UserInput userInput) {
this.DSpotState = new DSpotState();
DSpotState.setUserInput(userInput);
DSpotState.setOnlyInputAmplification(userInput.isOnlyInputAmplification());
DSpotState.setDevFriendlyAmplification(userInput.isDevFriendlyAmplification());
DSpotState.verbose = userInput.isVerbose();
DSpotState.setStartTime(System.currentTimeMillis());
DSpotState.setTestFinder(new TestFinder(Arrays.stream(userInput.getExcludedClasses().split(",")).collect(Collectors.toList()), Arrays.stream(userInput.getExcludedTestCases().split(",")).collect(Collectors.toList())));
DSpotState.setAutomaticBuilder(userInput.getBuilderEnum().getAutomaticBuilder(userInput));
final String dependencies = completeDependencies(userInput, DSpotState.getAutomaticBuilder());
DSpotState.setCompiler(DSpotCompiler.createDSpotCompiler(userInput, dependencies));
userInput.setFactory(DSpotState.getCompiler().getLauncher().getFactory());
initHelpers(userInput);
DSpotState.setTestCompiler(new TestCompiler(userInput.getNumberParallelExecutionProcessors(), userInput.shouldExecuteTestsInParallel(), userInput.getAbsolutePathToProjectRoot(), userInput.getClasspathClassesProject(), userInput.getTimeOutInMs(), userInput.getPreGoalsTestExecution(), userInput.shouldUseMavenToExecuteTest()));
final EmailSender emailSender = new EmailSender(userInput.getSmtpUsername(), userInput.getSmtpPassword(), userInput.getSmtpHost(), userInput.getSmtpPort(), userInput.isSmtpAuth(), userInput.getSmtpTls());
DSpotState.setCollector(CollectorFactory.build(userInput, emailSender));
DSpotState.getCollector().reportInitInformation(userInput.getAmplifiers(), userInput.getSelector(), userInput.getNbIteration(), userInput.isGregorMode(), !userInput.isGregorMode(), userInput.getNumberParallelExecutionProcessors());
DSpotState.setTestClassesToBeAmplified(DSpotState.getTestFinder().findTestClasses(userInput.getTestClasses()));
DSpotState.setTestMethodsToBeAmplifiedNames(userInput.getTestCases());
if (DSpotState.getTestMethodsToBeAmplifiedNames().size() == 1 && DSpotState.getTestMethodsToBeAmplifiedNames().get(0).isEmpty()) {
DSpotState.getTestMethodsToBeAmplifiedNames().clear();
}
DSpotState.setTestSelector(userInput.getSelector().buildSelector(DSpotState.getAutomaticBuilder(), userInput));
final List<Amplifier> amplifiers = userInput.getAmplifiers().stream().map(AmplifierEnum::getAmplifier).filter(Objects::nonNull).collect(Collectors.toList());
DSpotState.setInputAmplDistributor(userInput.getInputAmplDistributor().getInputAmplDistributor(userInput.getMaxTestAmplified(), amplifiers));
DSpotState.setOutput(new Output(userInput.getAbsolutePathToProjectRoot(), userInput.getOutputDirectory(), DSpotState.getCollector()));
DSpotState.setAssertionGenerator(new AssertionGenerator(userInput.getDelta(), DSpotState.getCompiler(), DSpotState.getTestCompiler(), DSpotState.isDevFriendlyAmplification()));
Checker.postChecking(userInput);
DSpotState.setCollectData(true);
DSpotState.setDelta(userInput.getDelta());
DSpotState.setNbIteration(userInput.getNbIteration());
DSpotState.verbose = userInput.isVerbose();
}
use of eu.stamp_project.dspot.common.compilation.TestCompiler in project dspot by STAMP-project.
the class AbstractSelectorRemoveOverlapTest method setUp.
@Before
public void setUp() {
DSpotState.verbose = true;
this.configuration = new UserInput();
this.configuration.setAbsolutePathToProjectRoot(getPathToAbsoluteProjectRoot());
this.configuration.setOutputDirectory(outputDirectory);
this.builder = AutomaticBuilderEnum.Maven.getAutomaticBuilder(configuration);
this.initializeDSpot = new InitializeDSpot();
String dependencies = initializeDSpot.completeDependencies(configuration, this.builder);
DSpotUtils.init(CommentEnum.None, outputDirectory, this.configuration.getFullClassPathWithExtraDependencies(), this.getPathToAbsoluteProjectRoot());
this.compiler = DSpotCompiler.createDSpotCompiler(configuration, dependencies);
DSpotCache.init(10000);
Launcher launcher = new Launcher();
launcher.getEnvironment().setNoClasspath(true);
launcher.addInputResource(this.getPathToAbsoluteProjectRoot());
launcher.buildModel();
this.factory = launcher.getFactory();
TestFramework.init(this.factory);
this.testCompiler = new TestCompiler(0, false, this.getPathToAbsoluteProjectRoot(), this.configuration.getClasspathClassesProject(), 10000, "", false);
AssertionGeneratorUtils.init(false);
DSpotPOMCreator.createNewPom(configuration);
RandomHelper.setSeedRandom(72L);
ValueCreator.count = 0;
this.testSelectorUnderTest = this.getTestSelector();
}
use of eu.stamp_project.dspot.common.compilation.TestCompiler in project dspot by STAMP-project.
the class AbstractSelectorTest method setUp.
@Before
public void setUp() throws Exception {
DSpotState.verbose = true;
this.configuration = new UserInput();
this.configuration.setAbsolutePathToProjectRoot(getPathToAbsoluteProjectRoot());
this.configuration.setOutputDirectory(outputDirectory);
this.configuration.setGregorMode(true);
this.builder = AutomaticBuilderEnum.Maven.getAutomaticBuilder(configuration);
this.initializeDSpot = new InitializeDSpot();
String dependencies = initializeDSpot.completeDependencies(configuration, this.builder);
DSpotUtils.init(CommentEnum.None, outputDirectory, this.configuration.getFullClassPathWithExtraDependencies(), this.getPathToAbsoluteProjectRoot());
this.compiler = DSpotCompiler.createDSpotCompiler(configuration, dependencies);
DSpotCache.init(10000);
Launcher launcher = new Launcher();
launcher.getEnvironment().setNoClasspath(true);
launcher.addInputResource(this.getPathToAbsoluteProjectRoot());
launcher.buildModel();
this.factory = launcher.getFactory();
TestFramework.init(this.factory);
this.testRunner = new TestRunner(this.getPathToAbsoluteProjectRoot(), "", false);
this.testCompiler = new TestCompiler(0, false, this.getPathToAbsoluteProjectRoot(), this.configuration.getClasspathClassesProject(), 10000, "", false);
AssertionGeneratorUtils.init(false);
DSpotPOMCreator.createNewPom(configuration);
RandomHelper.setSeedRandom(72L);
ValueCreator.count = 0;
this.testSelectorUnderTest = this.getTestSelector();
}
use of eu.stamp_project.dspot.common.compilation.TestCompiler in project dspot by STAMP-project.
the class ProjectJSONTest method test.
@Test
public void test() throws Exception {
final File file = new File(outputDirectory + "/sample.json");
if (file.exists()) {
file.delete();
}
final InputAmplDistributor inputAmplDistributor = InputAmplDistributorEnum.RandomInputAmplDistributor.getInputAmplDistributor(200, Collections.emptyList());
DSpotState dspotState = new DSpotState();
dspotState.setDelta(0.1f);
dspotState.setTestFinder(TestFinder.get());
dspotState.setCompiler(compiler);
dspotState.setTestSelector(testSelector);
dspotState.setInputAmplDistributor(inputAmplDistributor);
dspotState.setOutput(Output.get(configuration));
dspotState.setNbIteration(1);
dspotState.setAutomaticBuilder(builder);
dspotState.setTestCompiler(testCompiler);
dspotState.setTestClassesToBeAmplified(Collections.singletonList(findClass("fr.inria.amp.TestJavaPoet")));
dspotState.setAssertionGenerator(new AssertionGenerator(0.1f, compiler, testCompiler));
DSpot dspot = new DSpot(dspotState);
final CtClass<?> clone = findClass("fr.inria.amp.TestJavaPoet").clone();
dspot.run();
ProjectTimeJSON projectJson = getProjectJson(file);
assertTrue(projectJson.classTimes.stream().anyMatch(classTimeJSON -> "fr.inria.amp.TestJavaPoet".equals(classTimeJSON.fullQualifiedName)));
assertEquals(1, projectJson.classTimes.size());
assertEquals("sample", projectJson.projectName);
dspotState.setTestClassesToBeAmplified(Collections.singletonList(findClass("fr.inria.mutation.ClassUnderTestTest")));
dspot.run();
projectJson = getProjectJson(file);
assertTrue(projectJson.classTimes.stream().anyMatch(classTimeJSON -> classTimeJSON.fullQualifiedName.equals("fr.inria.amp.TestJavaPoet")));
assertTrue(projectJson.classTimes.stream().anyMatch(classTimeJSON -> classTimeJSON.fullQualifiedName.equals("fr.inria.mutation.ClassUnderTestTest")));
assertEquals(2, projectJson.classTimes.size());
assertEquals("sample", projectJson.projectName);
/* we reinitialize the factory to remove the amplified test class */
final CtClass<?> amplifiedClassToBeRemoved = findClass("fr.inria.amp.TestJavaPoet");
final CtPackage aPackage = amplifiedClassToBeRemoved.getPackage();
aPackage.removeType(amplifiedClassToBeRemoved);
aPackage.addType(clone);
dspotState.setTestClassesToBeAmplified(Collections.singletonList(findClass("fr.inria.amp.TestJavaPoet")));
dspot.run();
projectJson = getProjectJson(file);
assertTrue(projectJson.classTimes.stream().anyMatch(classTimeJSON -> classTimeJSON.fullQualifiedName.equals("fr.inria.amp.TestJavaPoet")));
assertTrue(projectJson.classTimes.stream().anyMatch(classTimeJSON -> classTimeJSON.fullQualifiedName.equals("fr.inria.mutation.ClassUnderTestTest")));
assertEquals(2, projectJson.classTimes.size());
assertEquals("sample", projectJson.projectName);
}
Aggregations