mockit.integration.junit4.internal.FakeFrameworkMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external
APIs; JUnit (4 & 5) and TestNG test runners are supported.
It also contains an advanced code coverage tool.
/*
* Copyright (c) 2006 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.integration.junit4.internal;
import java.lang.annotation.*;
import java.util.*;
import javax.annotation.*;
import org.junit.runners.model.*;
import mockit.*;
import mockit.internal.faking.*;
import mockit.internal.util.*;
/**
* Startup fake that modifies the JUnit 4.5+ test runner so that it calls back to JMockit immediately after every test
* executes.
* When that happens, JMockit will assert any expectations recorded during the test in {@link Expectations} subclasses.
*
* This class is not supposed to be accessed from user code. JMockit will automatically load it at startup.
*/
public final class FakeFrameworkMethod extends MockUp
{
public static boolean hasDependenciesInClasspath()
{
return ClassLoad.searchTypeInClasspath("org.junit.runners.model.FrameworkMethod", true) != null;
}
@Nonnull private final JUnit4TestRunnerDecorator decorator = new JUnit4TestRunnerDecorator();
@Nullable @Mock
public Object invokeExplosively(@Nonnull Invocation invocation, Object target, Object... params) throws Throwable
{
return decorator.invokeExplosively((FakeInvocation) invocation, target, params);
}
@Mock
public static void validatePublicVoidNoArg(@Nonnull Invocation invocation, boolean isStatic, List errors)
{
FrameworkMethod it = invocation.getInvokedInstance();
int previousErrorCount = errors.size();
if (!isStatic && eachParameterContainsAKnownAnnotation(it.getMethod().getParameterAnnotations())) {
it.validatePublicVoid(false, errors);
}
else {
((FakeInvocation) invocation).prepareToProceedFromNonRecursiveMock();
it.validatePublicVoidNoArg(isStatic, errors);
}
int errorCount = errors.size();
for (int i = previousErrorCount; i < errorCount; i++) {
Throwable errorAdded = errors.get(i);
StackTrace.filterStackTrace(errorAdded);
}
}
private static boolean eachParameterContainsAKnownAnnotation(@Nonnull Annotation[][] parametersAndTheirAnnotations)
{
if (parametersAndTheirAnnotations.length == 0) {
return false;
}
for (Annotation[] parameterAnnotations : parametersAndTheirAnnotations) {
if (!containsAKnownAnnotation(parameterAnnotations)) {
return false;
}
}
return true;
}
private static boolean containsAKnownAnnotation(@Nonnull Annotation[] parameterAnnotations)
{
if (parameterAnnotations.length == 0) {
return false;
}
for (Annotation parameterAnnotation : parameterAnnotations) {
String annotationTypeName = parameterAnnotation.annotationType().getName();
if (!"mockit.Tested mockit.Mocked mockit.Injectable mockit.Capturing".contains(annotationTypeName)) {
return false;
}
}
return true;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy