mockit.internal.faking.FakeMethodCollector 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 mocking/faking APIs and a code coverage tool, supporting both JUnit and TestNG.
The mocking APIs allow all kinds of Java code, without testability restrictions, to be tested
in isolation from selected dependencies.
/*
* Copyright (c) 2006 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.faking;
import java.util.*;
import javax.annotation.*;
import mockit.*;
import mockit.asm.metadata.*;
import mockit.asm.metadata.ClassMetadataReader.*;
import mockit.asm.types.*;
import mockit.internal.*;
import mockit.internal.faking.FakeMethods.FakeMethod;
import mockit.internal.util.*;
import static mockit.asm.jvmConstants.Access.*;
/**
* Responsible for collecting the signatures of all methods defined in a given fake class which are explicitly annotated
* as {@link Mock fakes}.
*/
final class FakeMethodCollector
{
private static final int INVALID_METHOD_ACCESSES = BRIDGE + SYNTHETIC + ABSTRACT + NATIVE;
private static final EnumSet ANNOTATIONS = EnumSet.of(Attribute.Annotations);
@Nonnull private final FakeMethods fakeMethods;
private boolean collectingFromSuperClass;
FakeMethodCollector(@Nonnull FakeMethods fakeMethods) { this.fakeMethods = fakeMethods; }
void collectFakeMethods(@Nonnull Class> fakeClass) {
ClassLoad.registerLoadedClass(fakeClass);
fakeMethods.setFakeClassInternalName(JavaType.getInternalName(fakeClass));
Class> classToCollectFakesFrom = fakeClass;
do {
byte[] classfileBytes = ClassFile.readBytesFromClassFile(classToCollectFakesFrom);
ClassMetadataReader cmr = new ClassMetadataReader(classfileBytes, ANNOTATIONS);
List methods = cmr.getMethods();
addFakeMethods(methods);
classToCollectFakesFrom = classToCollectFakesFrom.getSuperclass();
collectingFromSuperClass = true;
}
while (classToCollectFakesFrom != MockUp.class);
}
private void addFakeMethods(@Nonnull List methods) {
for (MethodInfo method : methods) {
int access = method.accessFlags;
if ((access & INVALID_METHOD_ACCESSES) == 0 && method.isMethod() && method.hasAnnotation("Lmockit/Mock;")) {
FakeMethod fakeMethod = fakeMethods.addMethod(collectingFromSuperClass, access, method.name, method.desc);
if (fakeMethod != null && fakeMethod.requiresFakeState()) {
FakeState fakeState = new FakeState(fakeMethod);
fakeMethods.addFakeState(fakeState);
}
}
}
}
}