Tôi có bài kiểm tra tích hợp đơn giản
@Test
public void shouldReturnErrorMessageToAdminWhenCreatingUserWithUsedUserName() throws Exception {
mockMvc.perform(post("/api/users").header("Authorization", base64ForTestUser).contentType(MediaType.APPLICATION_JSON)
.content("{\"userName\":\"testUserDetails\",\"firstName\":\"xxx\",\"lastName\":\"xxx\",\"password\":\"xxx\"}"))
.andDo(print())
.andExpect(status().isBadRequest())
.andExpect(?);
}
Trong dòng cuối cùng tôi muốn so sánh chuỗi nhận được trong phần phản hồi với chuỗi dự kiến
Và đáp lại tôi nhận được:
MockHttpServletResponse:
Status = 400
Error message = null
Headers = {Content-Type=[application/json]}
Content type = application/json
Body = "Username already taken"
Forwarded URL = null
Redirected URL = null
Đã thử một số thủ thuật với nội dung (), body () nhưng không có gì hiệu quả.
"Username already taken"
. Đó phải là một cuộc xung đột 409.