mockit.internal.expectations.mocking.InterfaceImplementationGenerator 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 developer (unit/integration) testing.
It contains mocking APIs and other tools, 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-2011 Rogério Liesenfeld
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.expectations.mocking;
import java.util.*;
import static mockit.external.asm.Opcodes.*;
import mockit.external.asm.*;
import mockit.external.asm.commons.*;
import mockit.internal.*;
final class InterfaceImplementationGenerator extends BaseClassModifier
{
private final List implementedMethods = new ArrayList();
private final String implementationClassName;
private String interfaceName;
private String[] initialSuperInterfaces;
InterfaceImplementationGenerator(ClassReader classReader, String implementationClassName)
{
super(classReader);
this.implementationClassName = implementationClassName.replace('.', '/');
}
@Override
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
{
interfaceName = name;
initialSuperInterfaces = interfaces;
String[] implementedInterfaces = {name};
super.visit(
version, ACC_PUBLIC + ACC_FINAL, implementationClassName, signature, superName, implementedInterfaces);
generateConstructor();
}
private void generateConstructor()
{
mw = super.visitMethod(ACC_PUBLIC, "", "()V", null, null);
mw.visitVarInsn(ALOAD, 0);
mw.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "", "()V");
generateEmptyImplementation();
}
@Override
public void visitInnerClass(String name, String outerName, String innerName, int access) {}
@Override
public void visitOuterClass(String owner, String name, String desc) {}
@Override
public void visitAttribute(Attribute attr) {}
@Override
public void visitSource(String file, String debug) {}
@Override
public FieldVisitor visitField(int access, String name, String desc, String signature, Object value) { return null; }
@Override
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
{
if (name.charAt(0) != '<') { // ignores an eventual "" class initialization "method"
generateMethodImplementation(access, name, desc, signature, exceptions);
}
return null;
}
private void generateMethodImplementation(
int access, String name, String desc, String signature, String[] exceptions)
{
String methodNameAndDesc = name + desc;
if (!implementedMethods.contains(methodNameAndDesc)) {
mw = super.visitMethod(ACC_PUBLIC, name, desc, signature, exceptions);
generateDirectCallToHandler(interfaceName, access, name, desc, signature, exceptions, 0);
generateReturnWithObjectAtTopOfTheStack(desc);
mw.visitMaxs(1, 0);
implementedMethods.add(methodNameAndDesc);
}
}
@Override
public void visitEnd()
{
for (String superInterface : initialSuperInterfaces) {
new MethodGeneratorForImplementedSuperInterface(superInterface);
}
}
private final class MethodGeneratorForImplementedSuperInterface extends EmptyVisitor
{
String[] superInterfaces;
MethodGeneratorForImplementedSuperInterface(String interfaceName)
{
ClassFile.visitClass(interfaceName, this);
}
@Override
public void visit(int version, int access, String name, String signature, String superName, String[] interfaces)
{
superInterfaces = interfaces;
}
@Override
public FieldVisitor visitField(
int access, String name, String desc, String signature, Object value) { return null; }
@Override
public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions)
{
generateMethodImplementation(access, name, desc, signature, exceptions);
return null;
}
@Override
public void visitEnd()
{
for (String superInterface : superInterfaces) {
new MethodGeneratorForImplementedSuperInterface(superInterface);
}
}
}
}