mockit.internal.expectations.transformation.ExpectationsTransformer 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.internal.expectations.transformation;
import java.lang.instrument.*;
import java.security.*;
import javax.annotation.*;
import mockit.external.asm.*;
import mockit.internal.util.*;
public final class ExpectationsTransformer implements ClassFileTransformer
{
private static final String BASE_CLASSES =
"mockit/Expectations mockit/Verifications " +
"mockit/VerificationsInOrder mockit/FullVerifications mockit/FullVerificationsInOrder";
@Nullable @Override
public byte[] transform(
@Nullable ClassLoader loader, @Nonnull String className, @Nullable Class> classBeingRedefined,
@Nullable ProtectionDomain protectionDomain, @Nonnull byte[] classfileBuffer)
{
if (classBeingRedefined == null && protectionDomain != null) {
boolean anonymousClass = ClassNaming.isAnonymousClass(className);
if (anonymousClass && !isJMockitClass(className) && !className.startsWith("org/junit/")) {
ClassReader cr = new ClassReader(classfileBuffer);
String superClassName = cr.getSuperName();
if (!BASE_CLASSES.contains(superClassName)) {
return null;
}
return modifyInvocationsSubclass(cr, className);
}
}
return null;
}
private static boolean isJMockitClass(@Nonnull String classDesc)
{
return
classDesc.startsWith("mockit/") &&
(classDesc.startsWith("mockit/internal/") || classDesc.startsWith("mockit/coverage/") ||
classDesc.startsWith("mockit/integration/"));
}
@Nullable
private static byte[] modifyInvocationsSubclass(@Nonnull ClassReader cr, @Nonnull final String classDesc)
{
ClassWriter cw = new ClassWriter(cr);
ClassVisitor modifier = new WrappingClassVisitor(cw) {
@Override
public MethodVisitor visitMethod(
int access, @Nonnull String name, @Nonnull String desc, @Nullable String signature,
@Nullable String[] exceptions)
{
MethodWriter mw = cw.visitMethod(access, name, desc, signature, exceptions);
if (!"".equals(name)) {
return mw;
}
return new InvocationBlockModifier(mw, classDesc);
}
};
try {
cr.accept(modifier);
return modifier.toByteArray();
}
catch (VisitInterruptedException ignore) {}
catch (Throwable e) { e.printStackTrace(); }
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy