如何模拟@InjectMocks 类的方法?

例如,我有联络人:

@Component
public class MyHandler {


@AutoWired
private MyDependency myDependency;


public int someMethod() {
...
return anotherMethod();
}


public int anotherMethod() {...}
}

为了测试它,我想写下这样的东西:

@RunWith(MockitoJUnitRunner.class}
class MyHandlerTest {


@InjectMocks
private MyHandler myHandler;


@Mock
private MyDependency myDependency;


@Test
public void testSomeMethod() {
when(myHandler.anotherMethod()).thenReturn(1);
assertEquals(myHandler.someMethod() == 1);
}
}

但实际上,每当我试图模仿它时,它都会调用 anotherMethod()。我应该如何处理 myHandler来模拟它的方法?

66587 次浏览

In your code, you are not testing MyHandler at all. You don't want to mock what you are testing, you want to call its actual methods. If MyHandler has dependencies, you mock them.

Something like this:

public interface MyDependency {
public int otherMethod();
}


public class MyHandler {
@AutoWired
private MyDependency myDependency;


public void someMethod() {
myDependency.otherMethod();
}
}

And in test:

private MyDependency mockDependency;
private MyHandler realHandler;


@Before
public void setup() {
mockDependency = Mockito.mock(MyDependency.class);
realHandler = new MyHandler();
realhandler.setDependency(mockDependency); //but you might Springify this
}


@Test
public void testSomeMethod() {


//specify behaviour of mock
when(mockDependency.otherMethod()).thenReturn(1);


//really call the method under test
realHandler.someMethod();
}

The point is to really call the method under test, but mock any dependencies they may have (e.g. calling method of other classes)

If those other classes are part of your application, then they'd have their own unit tests.

NOTE the above code could be shortened with more annotations, but I wanted to make it more explicit for the sake of explanation (and also I can't remember what the annotations are :) )

First of all the reason for mocking MyHandler methods can be the following: we already test anotherMethod() and it has complex logic, so why do we need to test it again (like a part of someMethod()) if we can just verify that it's calling?
We can do it through:

@RunWith(MockitoJUnitRunner.class)
class MyHandlerTest {


@Spy
@InjectMocks
private MyHandler myHandler;


@Mock
private MyDependency myDependency;


@Test
public void testSomeMethod() {
doReturn(1).when(myHandler).anotherMethod();
assertEquals(myHandler.someMethod() == 1);
verify(myHandler, times(1)).anotherMethod();
}
}

Note: in case of 'spying' object we need to use doReturn instead of thenReturn(little explanation is here)

All answers above are really good and may be useful so make sure you study and understand these principes first before continue reading my post.

In my scenario none of advices above did work. I will post what helped me after a pretty long debugging.

If you want to call methods from tested class, the @Spy annotation is needed alongside @InjectMocks (or Mockito.spy(XXX) call or course)

The interesting part is, the order of these annotations does matter! The @Spy annotation must precede @InjectMocks annotation.

Will not work

...


@InjectMocks
@Spy
private TestedObject instance


...

Will work

...


@Spy
@InjectMocks
private TestedObject instance


...