【发布时间】:2012-02-29 14:19:34
【问题描述】:
我正在尝试像这样模拟一个类(感谢 google 提供在测试环境中难以使用的代码设计):
GoogleAuthorizationCodeGrant googleAuthorizationCodeGrant = EasyMock.createMock(GoogleAuthorizationCodeGrant.class);
然后我像这样设置一个模拟方法调用:
AccessTokenResponse accessTokenResponse = new AccessTokenResponse();
EasyMock.expect(googleAuthorizationCodeGrant.execute()).andReturn(accessTokenResponse);
但它会引发异常,因为在 googleAuthorizationCodeGrant.execute() 期间,它会尝试在 GoogleAuthorizationCodeGrant.execute() 中运行实际代码。我在这里错过了什么吗?我希望 cglib 代理包装这个类并覆盖它的方法什么都不做,因为我不希望在模拟时实现它们。应该不需要保留任何业务逻辑,因为我正在定义各种方法调用的行为。
编辑
注意 - 我认为这里有些混乱。抛出异常:
EasyMock.expect(googleAuthorizationCodeGrant.execute()).andReturn(accessTokenResponse)
当我将模拟置于重放模式时不会,因为我实际上从未接触过该代码。引发异常的原因是因为 GoogleAuthorizationCodeGrant 的成员为空,并且在 .execute() 上对其调用了一个方法。如果我使用 new 运算符实例化 GoogleAuthorizationCodeGrant,则该成员不会为空。但是我不明白为什么 EasyMock 会在一个类上这样工作,因为我希望它创建一个代理来包装实现以不做任何事情。
这是一个堆栈跟踪:
java.lang.NullPointerException
at com.google.api.client.auth.oauth2.draft10.AccessTokenRequest.executeUnparsed(AccessTokenRequest.java:451)
at com.google.api.client.auth.oauth2.draft10.AccessTokenRequest.execute(AccessTokenRequest.java:475)
at uk.co.domain.service.google.GmailContactPollerTest.testDoPoll(GmailContactPollerTest.java:64)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
【问题讨论】:
-
能否将异常中的堆栈跟踪添加到问题中?
-
你设置Mock对象为重放状态了吗?
标签: java unit-testing easymock