use of org.evosuite.assertion.CheapPurityAnalyzer in project evosuite by EvoSuite.
the class ToStringInspectorSystemTest method testImpureToString.
@Test
public void testImpureToString() {
EvoSuite evosuite = new EvoSuite();
String targetClass = ImpureToStringInspector.class.getCanonicalName();
Properties.TARGET_CLASS = targetClass;
Properties.OUTPUT_VARIABLES = "" + RuntimeVariable.HadUnstableTests;
String[] command = new String[] { "-generateSuite", "-class", targetClass };
Object result = evosuite.parseCommandLine(command);
GeneticAlgorithm<?> ga = getGAFromResult(result);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
double best_fitness = best.getFitness();
Assert.assertTrue("Optimal coverage was not achieved ", best_fitness == 0.0);
CheapPurityAnalyzer purityAnalyzer = CheapPurityAnalyzer.getInstance();
String descriptor = Type.getMethodDescriptor(Type.getType(String.class));
boolean toString = purityAnalyzer.isPure(targetClass, "toString", descriptor);
assertFalse(toString);
Map<String, OutputVariable<?>> map = DebugStatisticsBackend.getLatestWritten();
Assert.assertNotNull(map);
OutputVariable unstable = map.get(RuntimeVariable.HadUnstableTests.toString());
Assert.assertNotNull(unstable);
Assert.assertEquals(Boolean.FALSE, unstable.getValue());
}
use of org.evosuite.assertion.CheapPurityAnalyzer in project evosuite by EvoSuite.
the class ImpureInspectorSystemTest method test.
@Test
public void test() {
EvoSuite evosuite = new EvoSuite();
String targetClass = ImpureInspector.class.getCanonicalName();
Properties.TARGET_CLASS = targetClass;
Properties.OUTPUT_VARIABLES = "" + RuntimeVariable.HadUnstableTests;
String[] command = new String[] { "-generateSuite", "-class", targetClass };
Object result = evosuite.parseCommandLine(command);
GeneticAlgorithm<?> ga = getGAFromResult(result);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
double best_fitness = best.getFitness();
Assert.assertTrue("Optimal coverage was not achieved ", best_fitness == 0.0);
CheapPurityAnalyzer purityAnalyzer = CheapPurityAnalyzer.getInstance();
String descriptor = Type.getMethodDescriptor(Type.INT_TYPE);
boolean recursivePureFunction = purityAnalyzer.isPure(targetClass, "recursivePureFunction", Type.getMethodDescriptor(Type.INT_TYPE, Type.INT_TYPE));
assertTrue(recursivePureFunction);
boolean getImpureValue = purityAnalyzer.isPure(targetClass, "getImpureValue", descriptor);
assertFalse(getImpureValue);
boolean getPureValue = purityAnalyzer.isPure(targetClass, "getPureValue", descriptor);
assertTrue(getPureValue);
boolean getImpureValueFromCall = purityAnalyzer.isPure(targetClass, "getImpureValueFromCall", descriptor);
assertFalse(getImpureValueFromCall);
boolean getPureValueFromCall = purityAnalyzer.isPure(targetClass, "getPureValueFromCall", descriptor);
assertTrue(getPureValueFromCall);
boolean recursivePureInspector = purityAnalyzer.isPure(targetClass, "recursivePureInspector", descriptor);
assertTrue(recursivePureInspector);
boolean recursiveImpureInspector = purityAnalyzer.isPure(targetClass, "recursiveImpureInspector", descriptor);
assertFalse(recursiveImpureInspector);
Map<String, OutputVariable<?>> map = DebugStatisticsBackend.getLatestWritten();
Assert.assertNotNull(map);
OutputVariable unstable = map.get(RuntimeVariable.HadUnstableTests.toString());
Assert.assertNotNull(unstable);
Assert.assertEquals(Boolean.FALSE, unstable.getValue());
}
use of org.evosuite.assertion.CheapPurityAnalyzer in project evosuite by EvoSuite.
the class JUnitOnSeparateProcessPropertySystemTest method test.
@Test
public void test() {
EvoSuite evosuite = new EvoSuite();
String targetClass = Foo.class.getCanonicalName();
Properties.TARGET_CLASS = targetClass;
Properties.OUTPUT_VARIABLES = "" + RuntimeVariable.HadUnstableTests;
String[] command = new String[] { "-generateSuite", "-class", targetClass };
Object result = evosuite.parseCommandLine(command);
GeneticAlgorithm<?> ga = getGAFromResult(result);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
double best_fitness = best.getFitness();
Assert.assertTrue("Optimal coverage was not achieved ", best_fitness == 0.0);
CheapPurityAnalyzer purityAnalyzer = CheapPurityAnalyzer.getInstance();
String descriptor = Type.getMethodDescriptor(Type.BOOLEAN_TYPE, Type.getType(Object.class));
boolean equals = purityAnalyzer.isPure(targetClass, "equals", descriptor);
assertFalse(equals);
Map<String, OutputVariable<?>> map = DebugStatisticsBackend.getLatestWritten();
Assert.assertNotNull(map);
OutputVariable unstable = map.get(RuntimeVariable.HadUnstableTests.toString());
Assert.assertNotNull(unstable);
Assert.assertEquals(Boolean.FALSE, unstable.getValue());
}
use of org.evosuite.assertion.CheapPurityAnalyzer in project evosuite by EvoSuite.
the class ToStringInspectorSystemTest method testPureToString.
@Test
public void testPureToString() {
EvoSuite evosuite = new EvoSuite();
String targetClass = ToStringInspector.class.getCanonicalName();
Properties.TARGET_CLASS = targetClass;
Properties.OUTPUT_VARIABLES = "" + RuntimeVariable.HadUnstableTests;
String[] command = new String[] { "-generateSuite", "-class", targetClass };
Object result = evosuite.parseCommandLine(command);
GeneticAlgorithm<?> ga = getGAFromResult(result);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
double best_fitness = best.getFitness();
Assert.assertTrue("Optimal coverage was not achieved ", best_fitness == 0.0);
CheapPurityAnalyzer purityAnalyzer = CheapPurityAnalyzer.getInstance();
String descriptor = Type.getMethodDescriptor(Type.getType(String.class));
boolean toString = purityAnalyzer.isPure(targetClass, "toString", descriptor);
assertFalse(toString);
boolean abstractToString = purityAnalyzer.isPure(AbstractToStringInspector.class.getCanonicalName(), "toString", descriptor);
assertFalse(abstractToString);
Map<String, OutputVariable<?>> map = DebugStatisticsBackend.getLatestWritten();
Assert.assertNotNull(map);
OutputVariable unstable = map.get(RuntimeVariable.HadUnstableTests.toString());
Assert.assertNotNull(unstable);
Assert.assertEquals(Boolean.FALSE, unstable.getValue());
}
use of org.evosuite.assertion.CheapPurityAnalyzer in project evosuite by EvoSuite.
the class JdkInspectorSystemTest method test.
@Test
public void test() {
EvoSuite evosuite = new EvoSuite();
String targetClass = JdkPureInspector.class.getCanonicalName();
Properties.TARGET_CLASS = targetClass;
Properties.OUTPUT_VARIABLES = "" + RuntimeVariable.HadUnstableTests;
String[] command = new String[] { "-generateSuite", "-class", targetClass };
Object result = evosuite.parseCommandLine(command);
GeneticAlgorithm<?> ga = getGAFromResult(result);
TestSuiteChromosome best = (TestSuiteChromosome) ga.getBestIndividual();
System.out.println("EvolvedTestSuite:\n" + best);
double best_fitness = best.getFitness();
Assert.assertTrue("Optimal coverage was not achieved ", best_fitness == 0.0);
CheapPurityAnalyzer purityAnalyzer = CheapPurityAnalyzer.getInstance();
String descriptor = Type.getMethodDescriptor(Type.BOOLEAN_TYPE);
boolean equalsToZ = purityAnalyzer.isPure(targetClass, "equalsToZ", descriptor);
assertTrue(equalsToZ);
boolean isLowerCase = purityAnalyzer.isPure(targetClass, "isLowerCase", descriptor);
assertTrue(isLowerCase);
Map<String, OutputVariable<?>> map = DebugStatisticsBackend.getLatestWritten();
Assert.assertNotNull(map);
OutputVariable unstable = map.get(RuntimeVariable.HadUnstableTests.toString());
Assert.assertNotNull(unstable);
Assert.assertEquals(Boolean.FALSE, unstable.getValue());
}
Aggregations