我正在尝试模拟对RestTemplate.exchange()的调用,但无法使其工作。目前对exchange()的调用挂起,所以我相信实际的方法是被调用而不是我的模拟。对exchange()的调用如下:
ResponseEntity<List<MyType>> response =
restTemplate.exchange(queryStr,
HttpMethod.GET,
null,
new ParameterizedTypeReference<List<MyType>>() {
});
模仿如下:
@MockBean
private RestTemplate restTemplate;
@Test
public void testMethod() throws Exception {
when(restTemplate.exchange(anyString(),
eq(HttpMethod.GET),
eq(null),
eq(new ParameterizedTypeReference<List<MyType>>(){})
)).thenReturn(new ResponseEntity<List<MyType>>(HttpStatus.OK));
// rest of test code follows.
}
我尝试更改参数匹配器,以便它们匹配更广泛的参数类型(即any()代替anyString())但我得到相同的行为或错误“对交换的引用是模糊的两种方法交换( ...)和方法交换(...)匹配“。我也得到“找不到合适的方法,然后返回(...)与thenReturn(...)不兼容”以及第一个错误。
提前致谢。
答案 0 :(得分:0)
发现我们没有使用我们的控制器中使用的@Autowired注释RestTemplate的实例。
@RestController
public class myController {
...
@Autowired // <-- Forgot this annotation.
private RestTemplate restTemplate;
...
}
现在模拟工作正常。