作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下示例 URI:
localhost/users
当我向它发送请求时,这个 JSON 作为响应:
[
{
"id": 1,
"name": "Joe"
,
{
"id": 3,
"name": "Ben"
,
{
"id": 4,
"name": "Jim"
}
}
]
如何向 RestAssured 进行验证,例如是否没有 id = 2 的用户?
它会是类似这种半伪的东西吗:
given().spec(requestSpecification)
.when().get("/users")
.and().body("id==2", ????);
任何建议/指导将不胜感激,谢谢。
最佳答案
试试这个:
given().spec(requestSpecification)
.when().get("/users")
.and().body("id", is(not(equalTo(2))));
使用放心文档部分Use the response to verify other parts of the response提供更多详细信息。
is(not(Matcher))
由 hamcrest 提供
关于java - 放心,JSON : verify absence of a value in a field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59355909/
我是一名优秀的程序员,十分优秀!