如何测试JSON路径是否不包含特定元素,或者是否存在该元素为null?

我一直在为简单的Spring

Web应用程序编写一些简单的单元测试例程。当我在资源的getter方法上添加@JsonIgnore批注时,所得的json对象不包含相应的json元素。因此,当我的单元测试例程尝试测试它是否为空(这是我的情况的预期行为,我不希望密码在json对象中可用)时,测试例程会遇到异常:

java.lang.AssertionError:JSON路径:$ .password没有值,异常:路径:$ [‘password’]没有结果

这是我编写的单元测试方法,使用is(nullValue())方法测试“密码”字段:

@Test

public void getUserThatExists() throws Exception {

User user = new User();

user.setId(1L);

user.setUsername("zobayer");

user.setPassword("123456");

when(userService.getUserById(1L)).thenReturn(user);

mockMvc.perform(get("/users/1"))

.andExpect(jsonPath("$.username", is(user.getUsername())))

.andExpect(jsonPath("$.password", is(nullValue())))

.andExpect(jsonPath("$.links[*].href", hasItem(endsWith("/users/1"))))

.andExpect(status().isOk())

.andDo(print());

}

我还尝试了jsonPath()。exists(),它得到了类似的异常,指出该路径不存在。我将分享更多的代码片段,以便使整个情况更具可读性。

我正在测试的控制器方法看起来像这样:

@RequestMapping(value="/users/{userId}", method= RequestMethod.GET)

public ResponseEntity<UserResource> getUser(@PathVariable Long userId) {

logger.info("Request arrived for getUser() with params {}", userId);

User user = userService.getUserById(userId);

if(user != null) {

UserResource userResource = new UserResourceAsm().toResource(user);

return new ResponseEntity<>(userResource, HttpStatus.OK);

} else {

return new ResponseEntity<>(HttpStatus.NOT_FOUND);

}

}

我正在使用spring hateos资源汇编程序将实体转换为资源对象,这是我的资源类:

public class UserResource extends ResourceSupport {

private Long userId;

private String username;

private String password;

public Long getUserId() {

return userId;

}

public void setUserId(Long userId) {

this.userId = userId;

}

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

@JsonIgnore

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

}

我了解为什么这会成为异常,并且在某种程度上也成功地测试到找不到密码字段。但是我要做的是,运行此测试以确保该字段不存在,或者如果存在,则该字段包含空值。我该如何实现?

就我而言,该字段也可能不存在。

作为记录,这些是我使用的测试软件包的版本:

    <dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-core</artifactId>

<version>2.6.1</version>

</dependency>

<dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-annotations</artifactId>

<version>2.6.1</version>

</dependency>

<dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-databind</artifactId>

<version>2.6.1</version>

</dependency>

<dependency>

<groupId>com.jayway.jsonpath</groupId>

<artifactId>json-path</artifactId>

<version>2.0.0</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>com.jayway.jsonpath</groupId>

<artifactId>json-path-assert</artifactId>

<version>2.0.0</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>junit</groupId>

<artifactId>junit</artifactId>

<version>4.12</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.mockito</groupId>

<artifactId>mockito-all</artifactId>

<version>1.10.19</version>

<scope>test</scope>

</dependency>

提前致谢。

[编辑]确切地说,您必须为一个实体编写测试,在该实体中您知道某些字段必须为null或为空,甚至不应该存在,并且您实际上并没有经过代码来查看如果在属性顶部添加了JsonIgnore。而您希望您的测试通过,我该怎么做。

请随时告诉我,这根本不实际,但仍然很高兴知道。

[编辑]上面的测试通过以下较早的json-path依赖关系成功通过:

    <dependency>

<groupId>com.jayway.jsonpath</groupId>

<artifactId>json-path</artifactId>

<version>0.9.1</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>com.jayway.jsonpath</groupId>

<artifactId>json-path-assert</artifactId>

<version>0.9.1</version>

<scope>test</scope>

</dependency>

[编辑]在阅读spring的json路径匹配器的文档后,找到了一个与最新版本的jayway.jasonpath一起使用的快速修复程序。

.andExpect(jsonPath("$.password").doesNotExist())

回答:

我在较新版本中遇到了相同的问题。在我看来,dosNotExist()函数将验证密钥不在结果中:

.andExpect(jsonPath("$.password").doesNotExist())

以上是 如何测试JSON路径是否不包含特定元素,或者是否存在该元素为null? 的全部内容, 来源链接: utcz.com/qa/405094.html

回到顶部