Simulate first call fails, second call succeeds

前端 未结 5 1590
傲寒
傲寒 2021-01-30 15:24

I want to use Mockito to test the (simplified) code below. I don\'t know how to tell Mockito to fail the first time, then succeed the second time.

for(int i = 1;         


        
相关标签:
5条回答
  • 2021-01-30 15:56

    To add on to this and this answer, you can also use a loop to chain the mocked calls. This is useful if you need to mock the same thing several times, or mock in some pattern.

    Eg (albeit a farfetched one):

    import org.mockito.stubbing.Stubber;
    
    Stubber stubber = doThrow(new Exception("Exception!"));
    for (int i=0; i<10; i++) {
        if (i%2 == 0) {
            stubber.doNothing();
        } else {
            stubber.doThrow(new Exception("Exception"));
        }
    }
    stubber.when(myMockObject).someMethod(anyString());
    
    0 讨论(0)
  • 2021-01-30 15:57

    Since the comment that relates to this is hard to read, I'll add a formatted answer.

    If you are trying to do this with a void function that just throws an exception, followed by a no behavior step, then you would do something like this:

    Mockito.doThrow(new Exception("MESSAGE"))
                .doNothing()
                .when(mockService).method(eq());
    
    0 讨论(0)
  • 2021-01-30 15:58

    From the docs:

    Sometimes we need to stub with different return value/exception for the same method call. Typical use case could be mocking iterators. Original version of Mockito did not have this feature to promote simple mocking. For example, instead of iterators one could use Iterable or simply collections. Those offer natural ways of stubbing (e.g. using real collections). In rare scenarios stubbing consecutive calls could be useful, though:

    when(mock.someMethod("some arg"))
       .thenThrow(new RuntimeException())
      .thenReturn("foo");
    
    //First call: throws runtime exception:
    mock.someMethod("some arg");
    
    //Second call: prints "foo"
    System.out.println(mock.someMethod("some arg"));
    

    So in your case, you'd want:

    when(myMock.doTheCall())
       .thenReturn("You failed")
       .thenReturn("Success");
    
    0 讨论(0)
  • 2021-01-30 16:02

    The shortest way to write what you want is

    when(myMock.doTheCall()).thenReturn("Success", "you failed");
    

    When you supply mutiple arguments to thenReturn like this, each argument will be used at most once, except for the very last argument, which is used as many times as necessary. For example, in this case, if you make the call 4 times, you'll get "Success", "you failed", "you failed", "you failed".

    0 讨论(0)
  • 2021-01-30 16:13

    I have a different situation, I wanted to mock a void function for the first call and run it normally at the second call.

    This works for me:

    Mockito.doThrow(new RuntimeException("random runtime exception"))
           .doCallRealMethod()
           .when(spy).someMethod(Mockito.any());
    
    0 讨论(0)
提交回复
热议问题