/** * Copyright (C) 2010-2017 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 <http://www.gnu.org/licenses/>. */ package org.evosuite.coverage.io.input; import static org.evosuite.coverage.io.IOCoverageConstants.*; import org.evosuite.coverage.io.output.OutputCoverageGoal; import org.evosuite.testcase.TestChromosome; import org.evosuite.testcase.TestFitnessFunction; import org.evosuite.testcase.execution.ExecutionResult; import org.evosuite.testcase.statements.ConstructorStatement; import org.evosuite.testcase.statements.EntityWithParametersStatement; import org.evosuite.testcase.statements.MethodStatement; import org.evosuite.utils.generic.GenericConstructor; import org.evosuite.utils.generic.GenericMethod; import org.objectweb.asm.Type; import java.lang.reflect.Array; import java.util.*; import java.util.Map.Entry; /** * @author Jose Miguel Rojas */ public class InputCoverageTestFitness extends TestFitnessFunction { private static final long serialVersionUID = 6630097528288524492L; /** * Target goal */ private final InputCoverageGoal goal; /** * Constructor - fitness is specific to a method * * @param goal the coverage goal * @throws IllegalArgumentException */ public InputCoverageTestFitness(InputCoverageGoal goal) throws IllegalArgumentException { if (goal == null) { throw new IllegalArgumentException("goal cannot be null"); } this.goal = goal; } /** * <p> * getClassName * </p> * * @return a {@link String} object. */ public String getClassName() { return goal.getClassName(); } /** * <p> * getMethod * </p> * * @return a {@link String} object. */ public String getMethod() { return goal.getMethodName(); } /** * <p> * getValue * </p> * * @return a {@link String} object. */ public Type getType() { return goal.getType(); } /** * <p> * getValue * </p> * * @return a {@link String} object. */ public String getValueDescriptor() { return goal.getValueDescriptor(); } /** * {@inheritDoc} * <p/> * Calculate fitness * * @param individual a {@link org.evosuite.testcase.ExecutableChromosome} object. * @param result a {@link ExecutionResult} object. * @return a double. */ @Override public double getFitness(TestChromosome individual, ExecutionResult result) { double fitness = 1.0; for(Set<InputCoverageGoal> goals : result.getInputGoals().values()) { if(goals.contains(goal)) { fitness = 0.0; break; } } updateIndividual(this, individual, fitness); return fitness; } /** * {@inheritDoc} */ @Override public String toString() { return "[Input]: "+goal.toString(); } /** * {@inheritDoc} */ @Override public int hashCode() { int iConst = 13; return 51 * iConst + goal.hashCode(); } /** * {@inheritDoc} */ @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; InputCoverageTestFitness other = (InputCoverageTestFitness) obj; return this.goal.equals(other.goal); } /* (non-Javadoc) * @see org.evosuite.testcase.TestFitnessFunction#compareTo(org.evosuite.testcase.TestFitnessFunction) */ @Override public int compareTo(TestFitnessFunction other) { if (other instanceof InputCoverageTestFitness) { InputCoverageTestFitness otherInputFitness = (InputCoverageTestFitness) other; return goal.compareTo(otherInputFitness.goal); } return compareClassName(other); } /* (non-Javadoc) * @see org.evosuite.testcase.TestFitnessFunction#getTargetClass() */ @Override public String getTargetClass() { return getClassName(); } /* (non-Javadoc) * @see org.evosuite.testcase.TestFitnessFunction#getTargetMethod() */ @Override public String getTargetMethod() { return getMethod(); } }