คำถามติดแท็ก spring-test-mvc

11
วิธีการตรวจสอบ String ในการตอบสนองเนื้อหาด้วย mockMvc
ฉันมีการทดสอบการรวมอย่างง่าย @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(?); } ในบรรทัดสุดท้ายฉันต้องการเปรียบเทียบสตริงที่ได้รับในเนื้อความการตอบสนองกับสตริงที่คาดหวัง และในการตอบสนองฉันได้รับ: 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 ลองใช้เทคนิคบางอย่างกับเนื้อหา (), เนื้อหา () แต่ไม่มีอะไรทำงาน

5
นับสมาชิกด้วย jsonpath?
เป็นไปได้ไหมที่จะนับจำนวนสมาชิกโดยใช้ JsonPath? ใช้การทดสอบสปริง mvcฉันกำลังทดสอบคอนโทรลเลอร์ที่สร้างขึ้น {"foo": "oof", "bar": "rab"} ด้วย 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")); ฉันต้องการตรวจสอบให้แน่ใจว่าไม่มีสมาชิกคนอื่นอยู่ใน json ที่สร้างขึ้น หวังว่าจะนับโดยใช้ jsonPath เป็นไปได้ไหม? ทางเลือกอื่นยินดีต้อนรับเช่นกัน
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.