Simulate first call fails, second call succeeds

JavaMockito

Java Problem Overview


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; i < 3; i++) {
  String ret = myMock.doTheCall();

  if("Success".equals(ret)) {
    log.write("success");
  } else if ( i < 3 ) {
    log.write("failed, but I'll try again. attempt: " + i);
  } else {
    throw new FailedThreeTimesException();
  }
}

I can setup the success test with:

Mockito.when(myMock).doTheCall().thenReturn("Success");

And the failure test with:

Mockito.when(myMock).doTheCall().thenReturn("you failed");

But how can I test that if it fails once (or twice) then succeeds, it's fine?

Java Solutions


Solution 1 - Java

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");

Solution 2 - Java

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".

Solution 3 - Java

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());

Solution 4 - Java

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());

Solution 5 - Java

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());

Solution 6 - Java

The shortest would be

doReturn("Fail", "Success").when(myMock).doTheCall();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionjb.View Question on Stackoverflow
Solution 1 - JavaJon SkeetView Answer on Stackoverflow
Solution 2 - JavaDawood ibn KareemView Answer on Stackoverflow
Solution 3 - JavaanoneironautView Answer on Stackoverflow
Solution 4 - JavaMohammed ElrashidyView Answer on Stackoverflow
Solution 5 - JavatypoerrprView Answer on Stackoverflow
Solution 6 - JavaShubham TrigunaitView Answer on Stackoverflow