Ho un semplice test di integrazione
@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(?);
}
Nell'ultima riga voglio confrontare la stringa ricevuta nel corpo della risposta con la stringa prevista
E in risposta ottengo:
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
Ho provato alcuni trucchi con content (), body () ma niente ha funzionato.
"Username already taken"
. Questo dovrebbe essere più di un conflitto 409.