在测试RestClient-Implementation时,我想模拟一个RestClientException,它可能被该实现f.e中的一些RestTemplate方法抛出。删除方法:
@Override
public ResponseEntity<MyResponseModel> documentDelete(String id) {
template.setErrorHandler(new MyResponseErrorHandler());
ResponseEntity<MyResponseModel> response = null;
try {
String url = baseUrl + "/document/id/{id}";
response = template.exchange(url, DELETE, null, MyResponseModel.class, id);
} catch (RestClientException ex) {
return handleException(ex);
}
return response;
}
我怎样才能做到这一点?
我以这种方式定义模拟服务器:
@Before
public void setUp() {
mockServer = MockRestServiceServer.createServer(template);
client = new MyRestClient(template, serverUrl + ":" + serverPort);
}
答案 0 :(得分:6)
您可以测试从MockRestServiceServer
抛出运行时异常,尽管从Spring 5.0.0.RC4开始,此类不是为它设计的(这意味着它可能不适用于更复杂的用例): / p>
RestTemplate yourApi;
MockRestServiceServer server = MockRestServiceServer.createServer(yourApi);
server.expect(requestTo("http://..."))
.andRespond((response) -> { throw new ResourceAccessException(
new ConnectException("Connection reset")); });
它似乎在测试中起作用:
RestTemplate
来电,我无法预料到两个连续的例外;重播第二个期望时MockRestSeriviceServer
(更具体,SimpleRequestExpectationManager
)抛出IllegalStateException
。
答案 1 :(得分:4)
Answer by Alex Ciocan适用于不同的http状态响应,因此如果您需要这些,请使用它,因为这是最干净的方法。我遇到了一个问题,我需要能够测试连接重置和其他网络级问题,这些问题比较难以模拟。
Answer by MaDa适用于某些用例,但在使用AsyncRestTemplate时它对我不起作用,因为它太早抛出。然而它确实引导我走向正确的方向。这个似乎也适用于异步调用:
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
// ...
ClientHttpResponse exceptionThrowingResponse = mock(ClientHttpResponse.class);
when(exceptionThrowingResponse.getStatusCode()) // getRawStatusCode() in latest spring
.thenThrow(new IOException("connection reset");
mockServer.expect(requestTo("http://localhost:123/callme"))
.andRespond((response) -> exceptionThrowingResponse);
这似乎也适用于连续异常,以及不同的http状态。
答案 2 :(得分:2)
您可以利用MockRestResponseCreators来模拟mockRestServiceServer中的4xx或5xx响应。
例如,测试5xx - 内部服务器错误:
mockServer.expect(requestTo("your.url"))
.andExpect(method(HttpMethod.GET/POST....))
.andRespond(withServerError()...);
在您的情况下,针对客户端HTTP错误抛出RestClientException,所以
通过使用以下示例,可以针对4xx
异常微调以上示例:
...andRespond(withBadRequest());
或...andRespond(withStatus(HttpStatus.NOT_FOUND));
为了更简单地使用这些方法,您可以使用org.springframework.test.web.client.MockRestServiceServer
的静态导入,org.springframework.test.web.client.response.MockRestResponseCreators
答案 3 :(得分:0)
如何?
@Spy
@InjectMocks
ClasstoMock objToMock;
@Test
public void testRestClientException() throws Exception {
try {
Mockito.when(this.objToMock.perform()).thenThrow(new RestClientException("Rest Client Exception"));
this.objToMock.perform();
}
catch(Exception e){
Assert.assertEquals(RestClientException.class, e.getClass());
}