«spring-test-mvc» etiketlenmiş sorular

11
MockMvc ile yanıt gövdesinde Dize nasıl kontrol edilir
Basit entegrasyon testim var @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(?); } Son satırda yanıt gövdesinde alınan dizeyi beklenen dizeyle karşılaştırmak istiyorum Ve yanıt olarak: MockHttpServletResponse: Status = 400 Error message = null Headers = {Content-Type=[application/json]} Content type = application/json Body = "Username already …

5
jsonpath ile üye saymak?
JsonPath kullanarak üye sayısını saymak mümkün mü? Spring mvc testini kullanarak , üreten bir denetleyiciyi test ediyorum {"foo": "oof", "bar": "rab"} ile 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")); Oluşturulan json'da başka hiçbir üyenin bulunmadığından emin olmak istiyorum. Umarım jsonPath kullanarak bunları sayarak. Mümkün mü? Alternatif çözümlere de açığız.
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.