使用 String[] 作为请求主体的 Mockmvc 单元测试
Mockmvc unit testing with String[] as request body
我正在尝试为 PUT api 创建单元测试,如下所示,使用 String[] 作为请求主体。
@RequestMapping(value = "/test/id", method = RequestMethod.PUT)
public ResponseEntity<?> updateStatus(@RequestBody String[] IdList,.........){
}
我的测试如下所示
@Test
public void updateStatus() throws Exception {
when(serviceFactory.getService()).thenReturn(service);
mockMvc.perform(put(baseUrl + "/test/id)
.param("IdList",new String[]{"1"}))
.andExpect(status().isOk());
}
测试失败,出现此异常:
java.lang.AssertionError: Status expected:<200> but was:<400>
从 mockmvc 传递字符串数组参数的最佳方法是什么?
您正在将 String[] 放入参数中。你应该把它放在 body 中。你可以这样说(我假设你使用的是json。如果你使用xml,你可以相应地改变它):
ObjectMapper mapper = new ObjectMapper();
String requestJson = mapper.writeValueAsString(new String[]{"1"});
mockMvc.perform(put(baseUrl + "/test/id)
.contentType(MediaType.APPLICATION_JSON_UTF8).content(requestJson)
.andExpect(status().isOk())
.andExpect(jsonPath("$.[0]", is("1")));
jsonPath
是 org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath
我正在尝试为 PUT api 创建单元测试,如下所示,使用 String[] 作为请求主体。
@RequestMapping(value = "/test/id", method = RequestMethod.PUT)
public ResponseEntity<?> updateStatus(@RequestBody String[] IdList,.........){
}
我的测试如下所示
@Test
public void updateStatus() throws Exception {
when(serviceFactory.getService()).thenReturn(service);
mockMvc.perform(put(baseUrl + "/test/id)
.param("IdList",new String[]{"1"}))
.andExpect(status().isOk());
}
测试失败,出现此异常:
java.lang.AssertionError: Status expected:<200> but was:<400>
从 mockmvc 传递字符串数组参数的最佳方法是什么?
您正在将 String[] 放入参数中。你应该把它放在 body 中。你可以这样说(我假设你使用的是json。如果你使用xml,你可以相应地改变它):
ObjectMapper mapper = new ObjectMapper();
String requestJson = mapper.writeValueAsString(new String[]{"1"});
mockMvc.perform(put(baseUrl + "/test/id)
.contentType(MediaType.APPLICATION_JSON_UTF8).content(requestJson)
.andExpect(status().isOk())
.andExpect(jsonPath("$.[0]", is("1")));
jsonPath
是 org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath