Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

277
Views
Servicio de descanso Spring MVC de prueba unitaria: matriz jsonPath

En mi controlador Spring tengo un método que devuelve el siguiente json:

 [ { "id": 2, "dto": null, "user": { "userId": 2, "firstName": "Some", "lastName": "Name", "age": 100, "aboutMe": "boring" }, "isYoung": false, "isOk": false } ]

Estoy tratando de escribir una prueba para este getter. Aquí está mi prueba:

 @Test public void getterMethod() throws Exception{ mockMvc.perform(get("/path?id=1")).andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE)) .andExpect(jsonPath("$[0].id", is(2))) .andExpect(jsonPath("$[2].user.userId", is(2))) .andExpect(jsonPath("$[2].user.firstName", is("Giorgos"))) .andExpect(jsonPath("$[2].user.lastName", is("Ant"))) .andExpect(jsonPath("$[3].isYoung", is(false))) .andExpect(jsonPath("$[4].isOk", is(false))); }

Aparentemente no estoy entendiendo esto bien:

Aunque si ejecuto la prueba solo para $[0].id, la prueba pasa. Sin embargo, para todos los demás casos (para el objeto de usuario anidado y los campos isYoung e isOk) obtengo un error de excepción de índice de matriz.

¿Alguna idea? ¡Gracias!

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Si la prueba es:

 @Test public void getterMethod() throws Exception{ mockMvc.perform(get("/path?id=1")).andExpect(status().isOk()) .andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE)) .andExpect(jsonPath("$[0].id", is(2))) .andExpect(jsonPath("$[0].user.userId", is(2))) .andExpect(jsonPath("$[0].user.firstName", is("Some"))) .andExpect(jsonPath("$[0].user.lastName", is("Name"))) .andExpect(jsonPath("$[0].isYoung", is(false))) .andExpect(jsonPath("$[0].isOk", is(false))); }
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!