All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.evosuite.coverage.statement.StatementCoverageFactory Maven / Gradle / Ivy

The newest version!
/**
 * 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.statement;

import java.util.ArrayList;
import java.util.List;

import org.evosuite.Properties;
import org.evosuite.TestGenerationContext;
import org.evosuite.coverage.MethodNameMatcher;
import org.evosuite.graphs.cfg.BytecodeInstruction;
import org.evosuite.graphs.cfg.BytecodeInstructionPool;
import org.evosuite.testsuite.AbstractFitnessFactory;

public class StatementCoverageFactory extends
        AbstractFitnessFactory {

	/** {@inheritDoc} */
	@Override
	public List getCoverageGoals() {
		long start = System.currentTimeMillis();
		String targetClass = Properties.TARGET_CLASS;

		List goals = new ArrayList();

		final MethodNameMatcher matcher = new MethodNameMatcher();
		
		for (String className : BytecodeInstructionPool.getInstance(TestGenerationContext.getInstance().getClassLoaderForSUT()).knownClasses()) {

			if (!(targetClass.equals("") || className.endsWith(targetClass)))
				continue;

			for (String methodName : BytecodeInstructionPool.getInstance(TestGenerationContext.getInstance().getClassLoaderForSUT()).knownMethods(className)) {

				if (!matcher.methodMatches(methodName))
					continue;

				for (BytecodeInstruction ins : BytecodeInstructionPool.getInstance(TestGenerationContext.getInstance().getClassLoaderForSUT()).getInstructionsIn(className,
				                                                                                                                             methodName))
					if (isUsable(ins))
						goals.add(new StatementCoverageTestFitness(ins.getClassName(), ins.getMethodName(), ins.getInstructionId()));
			}
		}
		long end = System.currentTimeMillis();
		goalComputationTime = end - start;

		return goals;
	}

	private static boolean isUsable(BytecodeInstruction ins) {

		return !ins.isLabel() && !ins.isLineNumber();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy