我在模拟RESTTEMPLATE.GETFOROBJECT方法方面遇到困难。方法定义是
public <T> T getForObject(String url, Class<T> responseType, Object... uriVariables) throws RestClientException
我在服务类中使用此方法如下。
User user = restTemplate.getForObject("https://api.github.com/users/{username}",
User.class, username);
服务方法获取"用户名"作为我传递的输入。
。在我的测试方法中,我有模拟休息模板。
doAnswer(new Answer<User>() {
@Override
public User answer(InvocationOnMock invocationOnMock) throws Throwable {
User user = new User();
user.setLogin("ghtvnath");
user.setName("Tharindu Vishwanath");
return user;
}
}).when(restTemplate).getForObject(anyString(),
eq(User.class), anyString());
,但由于某种原因,这个模拟不起作用。
尝试使用MockRestServiceServer
而不是模拟RESTTEMPLATE接口。
private MockRestServiceServer mockServer;
@Before
public void setUp() {
mockServer = createServer(restTemplate);
}
@Test
public void testSomething(){
mockServer.expect(anything()).andRespond(withSuccess("{login":"ghtvnath""}", MediaType.APPLICATION_JSON));
}