spring中mock RestTemplate和FeignClient(mock方法内部的方法调用)

目的:要测试ServiceImpl类中的方法methodA
难点:methodA中调用了restTemplate的方法或者FeignClient的方法,而这两个方法都依赖第三方应用,如果第三方应用没有准备好,则会报错,为了在单元测试中不依赖第三方应用,因此需要mock他们。

引入包

spring的这个jar包下自带Mock相关内容。


    org.springframework.boot
    spring-boot-starter-test
    test

FeignClient接口类

@FeignClient("applicationName")
public interface XXXClient extends XXXService{
}

测试类

注意:service如果是接口,要使用实现类ServiceImpl 来InjectMocks才行

@RunWith(MockitoJUnitRunner.class) 
public class ServiceTest {
    @Mock
    RestTemplate restTemplate;
    @Mock
    XXXClient client;
    @InjectMocks
    ServiceImpl serviceImpl;

    @Test
    public void test() throws Exception {
      serviceImpl.methodA();
    }

参考

https://stackoverflow.com/questions/42406625/how-to-mock-resttemplate-in-java-spring/42428738
https://zhuanlan.zhihu.com/p/21444517
https://www.jianshu.com/p/dcc12f06e807

你可能感兴趣的:(spring中mock RestTemplate和FeignClient(mock方法内部的方法调用))