ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

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

2019-07-12 08:20:14  阅读:250  来源: 互联网

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


我正在使用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.

解决方法:

如果将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>

标签:spring,mockito,spring-test,spring-test-mvc,jsonpath
来源: https://codeday.me/bug/20190712/1439058.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有