使用spring-test-mvc jsonpath进行测试返回null

时间:2012-11-13 14:20:47

标签: spring mockito spring-test jsonpath spring-test-mvc

我正在使用Spring的“spring-test-mvc”库来测试Web控制器。我有一个非常简单的控制器,它返回一个JSON数组。然后在我的测试中我有:

@Test
public void shouldGetAllUsersAsJson() throws Exception {
    mockMvc.perform(get("/v1/users").accept(MediaType.APPLICATION_JSON))
            .andExpect(content().mimeType(MediaType.APPLICATION_JSON))
            .andExpect(jsonPath("fName").exists());
}

以上测试返回:

java.lang.AssertionError: No value for JSON path: fName

为了快速查看我实际得到的内容,我运行了以下测试:

@Test
public void shouldPrintResults() throws Exception {
    mockMvc.perform(get("/v1/users").accept(MediaType.APPLICATION_JSON))
            .andDo(print());
}

它在MockHttpServletResponse

的正文中返回正确的JSON数组

我不确定为什么jsonPath无法在JSON数组中看到fName

2 个答案:

答案 0 :(得分:10)

如果将json路径依赖项添加到maven,或者将jar添加到lib,那么它将起作用。我认为Spring在最新的Spring 3.2.0 RC1版本中没有包含jsonPath依赖项。我猜测Spring-Test-MVC独立项目也是如此。

以下是Maven的依赖:

<dependency>
    <groupId>com.jayway.jsonpath</groupId>
    <artifactId>json-path</artifactId>
    <version>0.8.1</version>
    <scope>test</scope>
</dependency>

你可能还需要hamcrest库来使用jsonPath(“$。test”)。value(“test”)

<dependency>
    <groupId>org.hamcrest</groupId>
    <artifactId>hamcrest-library</artifactId>
    <version>1.3</version>
    <scope>test</scope>
</dependency>

答案 1 :(得分:10)

你的json响应体是什么样的?您可以通过执行.andDo(print())

来查看它

您可能想尝试jsonPath("$.fName")

这假设你的json响应是: {"fName":"first name"}

如果您的回复是一个数组,那么您需要jsonPath("$[0].fName")作为响应,例如: [{"fName":"first name"},{"fName":"first name #2"}]

您可以在以下位置查看更多示例:http://goessner.net/articles/JsonPath/