I have no idea how to use mocks to check whether my method was invoked every time it was supposed to. I really don't know how to describe this problem, so I'll go ahead and just show my code:
I have two interacting classes: Filter and Filtrable (an interface). Filter class is able to filter filtrables - which returns filtrables (so it is possible to apply other filters if necessary). Filtering method is just iterating through every filtrable line and checking if that line is filtered - then adding to result filtrable if it is. I wanted to test that every input line is really checked.
Here's the code from Filter class:
public Filtrable filter(Filtrable input) {
Filtrable result = input.createEmptyFiltrable();
while(input.hasNextLine()){
Line line = input.nextLine();
if(isLineFiltered(line)){
result.addLine(line);
}
}
return result;
}
And here's my (failed) attempt to test it:
@Test
public void testFilter(){
Filtrable mockedFiltrable = mock(Filtrable.class);
when(mockedFiltrable.createEmptyFiltrable()).thenReturn(new StringArrayFiltrable());
when(mockedFiltrable.hasNextLine()).thenReturn(true,true,true,false);
when(mockedFiltrable.nextLine()).thenReturn(dummyLine);
Filter mockedFilter = mock(Filter.class);
mockedFilter.filter(mockedFiltrable);
verify(mockedFilter, times(3)).isLineFiltered(dummyLine);
}
The idea here was to make a stubbed filtrable, which consists of three identical dummy lines. Then pass those to a Filter class and check whether method isLineFiltered was called exactly three times with the same dummyLine every time.
After reading Mocks Aren't Stubs by Martin Fowler I understand this is completely wrong as I don't test the actual system (Filter) anywhere!
So how can I verify if the method in "System Under Test" was invoked three times using mocks? This is crucial, as I'm trying to learn this methodology. I could easily make a test class that inherits from Filter and counts how many times isLineFiltered was invoked and then check it. I just feel that this can be done very nicely with mocks.
I'm using Mockito here and it would be nice if any suggestion would use it also (but any other java mocking framework will do of course).
P.S.
After I run the test an exception from Mockito Wanted but not invoked: filter.isLineFiltered is thrown.
EDIT:
Filtrable interface is as follows:
public interface Filtrable {
public Filtrable createEmptyFiltrable();
public boolean hasNextLine();
public void addLine(Line line);
public Line nextLine() throws FiltrableException;
}
SOLUTION:
Here's how I've done it eventually:
@Test
public void testFilter(){
Filtrable mockedFiltrable = mock(Filtrable.class);
Filtrable mockedFiltrableResult = mock(Filtrable.class);
when(mockedFiltrable.createEmptyFiltrable()).thenReturn(mockedFiltrableResult);
Iterator<Line> mockedIterator = mock(Iterator.class);
when(mockedFiltrable.iterator()).thenReturn(mockedIterator);
when(mockedIterator.hasNext()).thenReturn(true,true,true,false);
when(mockedIterator.next()).thenReturn(dummyLine);
Filter filterUnderTest = new TestFilter(true);
filterUnderTest.filter(mockedFiltrable);
verify(mockedFiltrableResult,times(3)).addLine(dummyLine);
}
I've changed Filtrable interface to extend Iterable so that's why final solution differs a little from my initial try.
Thanks for your help!

