单元测试 Spring MVC Rest 服务:数组 jsonPath
Unit Test Spring MVC Rest Service: array jsonPath
在我的 Spring 控制器中,我有一个方法 returns 以下 json:
[
{
"id": 2,
"dto": null,
"user": {
"userId": 2,
"firstName": "Some",
"lastName": "Name",
"age": 100,
"aboutMe": "boring"
},
"isYoung": false,
"isOk": false
}
]
我正在尝试为此编写测试 getter.Here 是我的测试:
@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)));
}
显然我没听对:
虽然如果我 运行 测试只针对 $[0].id 测试通过。但是对于所有其他情况(对于嵌套用户对象和 isYoung 字段和 isOk),我收到数组索引异常错误。
有什么想法吗?谢谢!
测试应该是:
@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)));
}
在我的 Spring 控制器中,我有一个方法 returns 以下 json:
[
{
"id": 2,
"dto": null,
"user": {
"userId": 2,
"firstName": "Some",
"lastName": "Name",
"age": 100,
"aboutMe": "boring"
},
"isYoung": false,
"isOk": false
}
]
我正在尝试为此编写测试 getter.Here 是我的测试:
@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)));
}
显然我没听对:
虽然如果我 运行 测试只针对 $[0].id 测试通过。但是对于所有其他情况(对于嵌套用户对象和 isYoung 字段和 isOk),我收到数组索引异常错误。
有什么想法吗?谢谢!
测试应该是:
@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)));
}