org.evosuite.contracts.JCrasherExceptionContract 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.contracts;
import java.util.Arrays;
import java.util.List;
import org.evosuite.PackageInfo;
import org.evosuite.testcase.statements.Statement;
import org.evosuite.testcase.variable.VariableReference;
import org.evosuite.testcase.execution.CodeUnderTestException;
import org.evosuite.testcase.execution.Scope;
import org.evosuite.testcase.statements.ConstructorStatement;
import org.evosuite.testcase.statements.MethodStatement;
/**
* JCrasherExceptionContract class.
*
* @author fraser
*/
public class JCrasherExceptionContract extends Contract {
// ArrayIndexOutOfBoundsException, NegativeArraySizeException, ArrayStoreException, ClassCastException, and ArithmeticException
private final static Class>[] uncheckedBugExceptions = {
ArrayIndexOutOfBoundsException.class, NegativeArraySizeException.class,
ArrayStoreException.class, ClassCastException.class,
ArithmeticException.class };
private final static List> uncheckedExceptions = Arrays.asList(uncheckedBugExceptions);
/* (non-Javadoc)
* @see org.evosuite.contracts.Contract#check(org.evosuite.testcase.StatementInterface, org.evosuite.testcase.Scope, java.lang.Throwable)
*/
/** {@inheritDoc} */
@Override
public ContractViolation check(Statement statement, Scope scope, Throwable exception) {
if (!isTargetStatement(statement))
return null;
if (exception != null) {
if (exception instanceof CodeUnderTestException)
return null;
if (exception instanceof RuntimeException) {
if (uncheckedExceptions.contains(exception.getClass()))
return new ContractViolation(this, statement, exception);
else {
StackTraceElement element = exception.getStackTrace()[0];
String methodName = "";
if (statement instanceof ConstructorStatement)
methodName = "";
else if (statement instanceof MethodStatement)
methodName = ((MethodStatement) statement).getMethod().getName();
else
return null;
// If the exception was thrown in the called method we assume it is a bug in the test, not the class
if (element.getMethodName().equals(methodName)) {
return null;
}
// If the exception was thrown in the test directly, it is also not interesting
if (element.getClassName().startsWith(PackageInfo.getEvoSuitePackage()+".testcase")) {
return null;
}
return new ContractViolation(this, statement, exception);
}
}
}
return null;
}
@Override
public void addAssertionAndComments(Statement statement,
List variables, Throwable exception) {
statement.addComment("Throws undeclared exception (JCrasher heuristic): " +exception.getMessage());
}
/** {@inheritDoc} */
@Override
public String toString() {
return "Undeclared exception (JCrasher style)";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy