org.evosuite.coverage.dataflow.AllDefsCoverageSuiteFitness Maven / Gradle / Ivy
/**
* Copyright (C) 2010-2018 Gordon Fraser, Andrea Arcuri and EvoSuite
* contributors
*
* This file is part of EvoSuite.
*
* EvoSuite is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3.0 of the License, or
* (at your option) any later version.
*
* EvoSuite is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with EvoSuite. If not, see .
*/
package org.evosuite.coverage.dataflow;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.evosuite.Properties.Criterion;
import org.evosuite.TestSuiteGenerator;
import org.evosuite.coverage.FitnessFunctions;
import org.evosuite.testcase.ExecutableChromosome;
import org.evosuite.testcase.TestChromosome;
import org.evosuite.testcase.TestFitnessFunction;
import org.evosuite.testcase.execution.ExecutionResult;
import org.evosuite.testsuite.AbstractTestSuiteChromosome;
import org.evosuite.testsuite.TestSuiteChromosome;
import org.evosuite.testsuite.TestSuiteFitnessFunction;
/**
* Evaluate fitness of a test suite with respect to all of its def-use pairs
*/
public class AllDefsCoverageSuiteFitness extends TestSuiteFitnessFunction {
private static final long serialVersionUID = 1L;
static List extends TestFitnessFunction> goals = FitnessFunctions.getFitnessFactory(Criterion.ALLDEFS).getCoverageGoals();
/** Constant totalGoals=goals.size()
*/
public static int totalGoals = goals.size();
/*
* (non-Javadoc)
*
* @see
* org.evosuite.ga.FitnessFunction#getFitness(org.
* evosuite.ga.Chromosome)
*/
/** {@inheritDoc} */
@Override
public double getFitness(
AbstractTestSuiteChromosome extends ExecutableChromosome> individual) {
logger.trace("Calculating defuse fitness");
TestSuiteChromosome suite = (TestSuiteChromosome) individual;
List results = runTestSuite(suite);
double fitness = 0.0;
Set coveredGoals = new HashSet();
for (TestFitnessFunction goal : goals) {
if (coveredGoals.contains(goal))
continue;
double goalFitness = 2.0;
for (ExecutionResult result : results) {
TestChromosome tc = new TestChromosome();
tc.setTestCase(result.test);
double resultFitness = goal.getFitness(tc, result);
if (resultFitness < goalFitness)
goalFitness = resultFitness;
if (goalFitness == 0.0) {
result.test.addCoveredGoal(goal);
// System.out.println(goal.toString());
// System.out.println(result.test.toCode());
// System.out.println(resultFitness);
coveredGoals.add(goal);
break;
}
}
fitness += goalFitness;
}
updateIndividual(this, individual, fitness);
setSuiteCoverage(suite, coveredGoals);
return fitness;
}
private void setSuiteCoverage(TestSuiteChromosome suite,
Set coveredGoals) {
if (goals.size() > 0)
suite.setCoverage(this, coveredGoals.size() / (double) goals.size());
else
suite.setCoverage(this, 1.0);
suite.setNumOfCoveredGoals(this, coveredGoals.size());
}
}