我想用json数据模拟http POST。
对于GET方法,我使用以下代码成功:
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
when(request.getMethod()).thenReturn("GET");
when(request.getPathInfo()).thenReturn("/getUserApps");
when(request.getParameter("userGAID")).thenReturn("test");
when(request.getHeader("userId")).thenReturn("xxx@aaa-app.com");
我的问题是 http POST 请求正文。我希望它包含application/json
类型的内容。
像这样的东西,但是应该用什么请求参数来回答 json 响应?
HttpServletRequest request = mock(HttpServletRequest.class);
HttpServletResponse response = mock(HttpServletResponse.class);
when(request.getMethod()).thenReturn("POST");
when(request.getPathInfo()).thenReturn("/insertPaymentRequest");
when( ???? ).then( ???? maybe ?? // new Answer<Object>() {
@Override
public Object answer(InvocationOnMock invocation) throws Throwable {
new Gson().toJson("{id:213213213 , amount:222}", PaymentRequest.class);
}
});
或者也许是"公共对象答案..."不是用于 Json 返回的正确方法。
usersServlet.service(request, response);
发布请求正文可通过request.getInputStream()
或request.getReader()
方法访问。这些是您需要模拟的内容,以便提供您的 JSON 内容。确保也模拟getContentType()
。
String json = "{"id":213213213, "amount":222}";
when(request.getInputStream()).thenReturn(
new DelegatingServletInputStream(
new ByteArrayInputStream(json.getBytes(StandardCharsets.UTF_8))));
when(request.getReader()).thenReturn(
new BufferedReader(new StringReader(json)));
when(request.getContentType()).thenReturn("application/json");
when(request.getCharacterEncoding()).thenReturn("UTF-8");
您可以使用 Spring 框架中的DelegatingServletInputStream
类,也可以只复制其源代码。