Domande taggate «spring-test-mvc»

11
Come controllare String nel corpo della risposta con mockMvc
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]} …

5
contare i membri con jsonpath?
È possibile contare il numero di membri utilizzando JsonPath? Utilizzando spring mvc test sto testando un controller che genera {"foo": "oof", "bar": "rab"} con standaloneSetup(new FooController(fooService)).build() .perform(get("/something").accept(MediaType.APPLICATION_JSON)).andExpect(status().isOk()) .andExpect(jsonPath("$.foo").value("oof")) .andExpect(jsonPath("$.bar").value("rab")); Vorrei assicurarmi che nessun altro membro sia presente nel json generato. Si spera contandoli usando jsonPath. È possibile? Sono benvenute anche …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.