gpt4 book ai didi

java - Mockito 抛出 WrongTypeOfReturnValue

转载 作者:行者123 更新时间:2023-11-30 09:01:27 24 4
gpt4 key购买 nike

实现类中的逻辑如下所示,我尝试编写一个模拟并获取异常作为 WrongTypeOfReturnValue

  /**
* update audit and courier log when Provider sign the document.
* @param cmsCourierInfo
* @param documentInfo
* @throws Exception
*/
public boolean doAuditProviderESignCompletion(CMSCourierInfo cmsCourierInfo, DocumentInfo documentInfo) throws Exception {

String signerTitle = "";
List<ParticipantInfo> participantInfos = documentInfo.getParticipants().getParticipantInfo();
//First participant is Provider
ParticipantInfo participantInfo = participantInfos.get(0);

if(StringUtils.isNotEmpty(participantInfo.getTitle())){
signerTitle = participantInfo.getTitle();
}
//update audit log with provider signed information
CMSCourierContractManager.signContract(cmsCourierInfo.getGuidString(), participantInfo.getName(), signerTitle, null);

//update audit log when document sent to Internal Signer
return doAuditSentForInternalSigner(cmsCourierInfo.getDocumentKey(), documentInfo);
}

测试

   @Test
public void testUpdateContractStatus() throws Exception{

String documentKey = "TestKey";
cmsCourierInfo = mock(CMSCourierInfo.class);
when(cmsFactoryManager.findCourier(anyString())).thenReturn(cmsCourierInfo);
EchoSignDocumentServiceImpl echoSignDocumentService = spy(documentService);
when(echoSignDocumentService.updateContractStatus(anyString())).thenReturn(true);

doThrow(new RuntimeException()).when(echoSignDocumentService).updateContractStatus(anyString());
boolean status = echoSignDocumentService.updateContractStatus(documentKey);
Assert.assertEquals(true, status);
}

我得到的错误是

org.mockito.exceptions.misusing.WrongTypeOfReturnValue: 
Boolean cannot be returned by findCourier()
findCourier() should return CMSCourierInfo
***

If you're unsure why you're getting above error read on.
Due to the nature of the syntax above problem might occur because:
1. This exception *might* occur in wrongly written multi-threaded tests.
Please refer to Mockito FAQ on limitations of concurrency testing.
2. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies -
- with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)

一些输入会有很大帮助

最佳答案

我无法解释您遇到的具体错误(我可能不得不查看更多代码)。但是在测试中肯定存在编码错误。在您调用 updateContractStatus() 之前,您告诉 mock 在使用任何字符串值调用此方法时抛出异常。因此,您永远不会得到分配的返回值,也永远不会到达 assert 语句。

此外,因为我无法看到您的所有代码,我只是在猜测,但根据发布的错误帮助消息,您可以尝试将 spy 类的 stub 更改为以下形式:

doReturn(true).when(echoSignDocumentService).updateContractStatus(anyString());

关于java - Mockito 抛出 WrongTypeOfReturnValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26409731/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com