在下面显示的unittest类中,一个测试失败,另一个成功。这两个测试都创建了一个带有拦截器mock的CGLIB
对象,并试图验证拦截器是否与之交互。测试在使用CGLIB动态子类化的类上有所不同。成功的测试子类化了一个普通的Java接口;失败的子类是动态子类(用Mockito
创建)。为什么第一次测试失败了?
谢谢。
public class ATest {
@Test
// This test fails.
public void cannotCallMethodOnMockWrapper() throws Throwable {
final Class<? extends Bar> c = Mockito.mock(Bar.class).getClass();
verifyInterceptorIsInvokedOnCallToObjectOfEnhanced(c);
}
@Test
// This test succeeds.
public void interceptorIsCalled() throws Throwable {
final Class<? extends Bar> c = Bar.class;
verifyInterceptorIsInvokedOnCallToObjectOfEnhanced(c);
}
private void verifyInterceptorIsInvokedOnCallToObjectOfEnhanced(
final Class<? extends Bar> c) throws Throwable {
final MethodInterceptor interceptor = Mockito.mock(
MethodInterceptor.class);
final Bar wrapper = (Bar) Enhancer.create(c, interceptor);
// Here is where the failing test chokes with exception:
// NoSuchMethodError
wrapper.foo();
verifyInterceptIsCalledOn(interceptor);
}
private void verifyInterceptIsCalledOn(
final MethodInterceptor interceptor) throws Throwable {
verify(interceptor).intercept(any(), any(Method.class),
any(Object[].class), any(MethodProxy.class));
}
public static interface Bar {
void foo();
}
}
更新:
故障的堆栈跟踪
java.lang.NoSuchMethodError: java.lang.Object.foo()V
at ATest$Bar$$EnhancerByMockitoWithCGLIB$$2e1d601f.foo(<generated>)
at ATest.verifyInterceptorIsInvokedOnCallToObjectOfEnhanced(ATest.java:37)
at ATest.cannotCallMethodOnMockWrapper(ATest.java:19)
此外,关于Mockito mock是否是CGLIB增强类,下面的测试(失败)似乎表明它不是:
public class ATest {
@Test
public void mockitoMockIsCGLIBEnhanced() {
assertTrue(Enhancer.isEnhanced(Mockito.mock(Bar.class).getClass()));
}
public static interface Bar {
void foo();
}
}
如果没有堆栈竞争,我会假设您有一个net.sf.cglib.core.CodeGenerationException
,可能有类似InvocationTargetException
或ClassFormatError
的原因,
这是因为CGLIB无法增强它自己创建的已经增强的类。由于Mockito在JVM内部使用CGLIB,因此无法增强Mockito类。你需要增强原来的类Plus即使回调可能是一个实例,你也需要将其传递给生成的类,所以通过创建自己的增强器,你就没有上层类的Mockito回调了。因此mockito mock功能甚至无法工作。不管怎样,我偏离了这个话题
因此,基本上你不能用CGLIB增强增强类,如果这个问题是在运行时发生的,因为你传递了一个mock,我相信你应该有这样的代码,检查它是否增强了,如果是,使用超类(原始类)和/或接口:
public class CGLIBEnhancerEnhancer implements TypeEnhancer {
public void Object enhance(Object objectCandidateToEnhance, MethodInterceptor interceptor) {
Class classCandidateToEnhance = classCandidateToEnhance.getClass();
if(Enhancer.isEnhanced(classCandidateToEnhance)
|| Mockito.mockingDetails(objectCandidateToEnhance).isMock()) {
// safe with CGLIB (2.x) enhanced class
return (Bar) Enhancer.create(
classCandidateToEnhance.getSuperclass(),
classCandidateToEnhance.getInterfaces(),
interceptor
);
} else
return (Bar) Enhancer.create(classCandidateToEnhance, interceptor);
}
}
}
EDIT:我运行了给定的例子,它确实给了我CodeGenerationException
,你可以在这个答案的末尾看到。不过,根据环境的不同,你可能会看到不同的堆叠比赛,比如你发布的那个。
考虑到您的异常,我相信您在运行时可能会遇到如何创建双重增强类的问题。由于stacktrace表明该实例甚至没有foo方法,这就像对象(似乎是一个真正的mockito mock)是从错误的类型生成的。我将查看Enhancer的API以正确使用类型和接口来创建增强类,您可以使用Enhancer
的新实例或使用静态方法。
此外,如果您正在自己证明拦截器,并且您希望执行给定实例的行为(无论是否为mock),则应该设计拦截器,使其包含对原始对象的引用。
EDIT 2:实际上,由于技术原因,Mockito正在重新打包/jarjar/inline CGLIB,这意味着net.sf.cglib.proxy.Enhancer
无法检测到Mockito mock。相反,应该在1.9.5Mockito.mockingDetails(instance).isMock()
中使用新引入的API来检测mockito mock。或者使用重新打包/jarjared/内联的org.mockito.cglib.proxy.Enhancer
。最后,您需要在类路径中使用Mockito来检测Mockito mock。
希望能帮助
org.mockito.cglib.core.CodeGenerationException: java.lang.reflect.InvocationTargetException-->null
at org.mockito.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:238)
at org.mockito.cglib.proxy.Enhancer.createHelper(Enhancer.java:378)
at org.mockito.cglib.proxy.Enhancer.create(Enhancer.java:286)
at org.mockito.cglib.proxy.Enhancer.create(Enhancer.java:664)
at ATest.verifyInterceptorIsInvokedOnCallToObjectOfEnhanced(ATest.java:32)
at ATest.cannotCallMethodOnMockWrapper(ATest.java:18)
... removed
at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
... removed
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at org.mockito.cglib.core.ReflectUtils.defineClass(ReflectUtils.java:385)
at org.mockito.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:220)
... 31 more
Caused by: java.lang.ClassFormatError: Duplicate method name&signature in class file ATest$Bar$$EnhancerByMockitoWithCGLIB$$58a2468b$$EnhancerByCGLIB$$9232d1df
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
... 37 more