在下面显示的unittest类中,其中一个测试失败,另一个测试成功。两个测试都使用拦截器模拟创建一个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();
}
}
答案 0 :(得分:2)
如果没有堆栈跟踪,我会假设您net.sf.cglib.core.CodeGenerationException
可能有InvocationTargetException
或ClassFormatError
,
之所以发生这种情况,是因为CGLIB无法增强它自己创建的已经增强的类。由于Mockito在JVM内部使用CGLIB,因此无法增强Mockito类。你需要增强原来的课程。 另外即使回调是一个实例,你需要传递给生成的类,所以通过创建自己的增强器,你没有上层的Mockito回调。因此mockito模拟功能甚至不起作用。无论如何,我与主题不同。
所以基本上你不能用CGLIB增强增强类,如果这个问题在运行时发生,因为你传递了一个模拟,我相信你应该有这样的代码,检查它是否有增强,如果是,则使用超类(原始) class)和/或接口:
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);
}
}
}
编辑:我运行了给定的示例,它确实给了我CodeGenerationException
,您可以在此答案的最后看到。虽然可能取决于环境,但您可以看到与您发布的堆栈跟踪不同的堆栈跟踪。
鉴于您的异常,我相信您在运行时可能会遇到如何创建双增强类的问题。由于堆栈跟踪表明实例甚至没有foo方法,因此它就像是从错误的类型生成的对象(它似乎是一个真正的模拟模拟)。我会查看Enhancer的API以正确使用类型和接口来创建增强类,您可以使用Enhancer
的新实例或使用静态方法。
此外,如果您自己证明了拦截器,并且您想要执行给定实例的行为(模拟与否),您应该制作拦截器,使其保持对原始对象的引用。
编辑2:实际上,由于技术原因,Mockito正在重新打包/ jarjar / inline CGLIB,这意味着net.sf.cglib.proxy.Enhancer
无法检测到mockito模拟。相反,应该使用1.9.5 Mockito.mockingDetails(instance).isMock()
中新引入的API来检测mockito模拟。或者使用repackaged / jarjared / inlined org.mockito.cglib.proxy.Enhancer
。最后,你需要在类路径中使用Mockito来检测Mockito模拟。
希望有所帮助
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