Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mockito; verify method was called with list, ignore order of elements in list

Tags:

I have a class (ClassA) that get the files in a directory. It scans the given directory for files matching a regex. For each matching file, it adds a File Object to a list. Once the directory is processed, it passes the List of Files to another Class (ClassB) for processing

I am writing unit tests for ClassA, so am mocking ClassB using Mockito, and injecting it into ClassA. I then want to verify in different scenarios the contents of the list that is passed to ClassB (ie my mock)

I've stripped back the code to the following

public class ClassA implements Runnable {      private final ClassB classB;      public ClassA(final ClassB classB) {         this.classB = classB;     }      public List<File> getFilesFromDirectories() {         final List<File> newFileList = new ArrayList<File>();         //        ...         return newFileList;     }      public void run() {         final List<File> fileList = getFilesFromDirectories();          if (fileList.isEmpty()) {             //Log Message         } else {             classB.sendEvent(fileList);         }     } } 

The test class looks like this

    @RunWith(MockitoJUnitRunner.class)     public class AppTest {      @Rule     public TemporaryFolder folder = new TemporaryFolder();      @Mock     private ClassB mockClassB;      private File testFileOne;      private File testFileTwo;      private File testFileThree;      @Before     public void setup() throws IOException {         testFileOne = folder.newFile("testFileA.txt");         testFileTwo = folder.newFile("testFileB.txt");         testFileThree = folder.newFile("testFileC.txt");     }      @Test     public void run_secondFileCollectorRun_shouldNotProcessSameFilesAgainBecauseofDotLastFile() throws Exception {         final ClassA objUndertest = new ClassA(mockClassB);          final List<File> expectedFileList = createSortedExpectedFileList(testFileOne, testFileTwo, testFileThree);         objUndertest.run();          verify(mockClassB).sendEvent(expectedFileList);     }      private List<File> createSortedExpectedFileList(final File... files) {         final List<File> expectedFileList = new ArrayList<File>();         for (final File file : files) {             expectedFileList.add(file);         }         Collections.sort(expectedFileList);         return expectedFileList;     } } 

The problem is that this test works perfectly fine on windows, but fails on Linux. The reason being that on windows, the order that ClassA list the files matches the expectedList, so the line

verify(mockClassB).sendEvent(expectedFileList); 

is causing the problem expecetdFileList = {FileA, FileB, FileC} on Windows, whereas on Linux it will be {FileC, FileB, FileA}, so the verify fails.

The question is, how do I get around this in Mockito. Is there any way of saying, I expect this method to be be called with this parameter, but I don't care about the order of the contents of the list.

I do have a solution, I just don't like it, I would rather have a cleaner, easier to read solution.

I can use an ArgumentCaptor to get the actual value passed into the mock, then can sort it, and compare it to my expected values.

    final ArgumentCaptor<List> argument = ArgumentCaptor.forClass(List.class);     verify(mockClassB).method(argument.capture());     Collections.sort(expected);     final List<String> value = argument.getValue();     Collections.sort(value);     assertEquals(expecetdFileList, value); 
like image 349
Dace Avatar asked Sep 06 '14 12:09

Dace


People also ask

How do you verify a method called in Mockito?

Mockito verify() method can be used to test number of method invocations too. We can test exact number of times, at least once, at least, at most number of invocation times for a mocked method. We can use verifyNoMoreInteractions() after all the verify() method calls to make sure everything is verified.

Which method in Mockito verifies that no interaction has happened with a mock in Java?

Mockito verifyZeroInteractions() method It verifies that no interaction has occurred on the given mocks. It also detects the invocations that have occurred before the test method, for example, in setup(), @Before method or the constructor.

What is EQ Mockito?

Mockito Argument Matcher - eq() When we use argument matchers, then all the arguments should use matchers. If we want to use a specific value for an argument, then we can use eq() method. when(mockFoo. bool(eq("false"), anyInt(), any(Object. class))).


2 Answers

As noted in another answer, if you don't care about the order, you might do best to change the interface so it doesn't care about the order.

If order matters in the code but not in a specific test, you can use the ArgumentCaptor as you did. It clutters the code a bit.

If this is something you might do in multiple tests, you might do better to use appropriate Mockito Matchers or Hamcrest Matchers, or roll your own (if you don't find one that fills the need). A hamcrest matcher might be best as it can be used in other contexts besides mockito.

For this example you could create a hamcrest matcher as follows:

import org.hamcrest.BaseMatcher; import org.hamcrest.Description; import org.hamcrest.Matcher;  import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set;  public class MyMatchers {     public  static <T> Matcher<List<T>> sameAsSet(final List<T> expectedList) {         return new BaseMatcher<List<T>>(){             @Override             public boolean matches(Object o) {                 List<T> actualList = Collections.EMPTY_LIST;                 try {                     actualList = (List<T>) o;                 }                 catch (ClassCastException e) {                     return false;                 }                 Set<T> expectedSet = new HashSet<T>(expectedList);                 Set<T> actualSet = new HashSet<T>(actualList);                 return actualSet.equals(expectedSet);             }              @Override             public void describeTo(Description description) {                 description.appendText("should contain all and only elements of ").appendValue(expectedList);             }         };     } } 

And then the verify code becomes:

verify(mockClassB).sendEvent(argThat(MyMatchers.sameAsSet(expectedFileList))); 

If you instead created a mockito matcher, you wouldn't need the argThat, which basically wraps a hamcrest matcher in a mockito matcher.

This moves the logic of sorting or converting to set out of your test and makes it reusable.

like image 130
Don Roby Avatar answered Oct 23 '22 07:10

Don Roby


An ArgumentCaptor probably is the best way to do what you want.

However, it seems that you don’t actually care about the order of the files in the List. Therefore, have you considered changing ClassB so that it takes an unordered collection (like a Set) instead?

like image 41
Alex Bishop Avatar answered Oct 23 '22 07:10

Alex Bishop