如何确保我的回复,让我们说它是JSON,包含或不包含特定字段?
when()
.get("/person/12345")
.then()
.body("surname", isPresent()) // Doesn't work...
.body("age", isNotPresent()); // ...But that's the idea.
我正在寻找一种方法来断言我的JSON是否包含字段年龄和姓氏。
答案 0 :(得分:33)
您也可以在JSON字符串上使用Hamcrest匹配器hasKey()(来自org.hamcrest.Matchers
类)。
when()
.get("/person/12345")
.then()
.body("$", hasKey("surname"))
.body("$", not(hasKey("age")));
答案 1 :(得分:0)
你可以像这样使用equals(null):
.body("surname", equals(null))
如果该字段不存在,则为null
答案 2 :(得分:0)
检查wheedver字段是否为空。例如:
Response resp = given().contentType("application/json").body(requestDto).when().post("/url");
ResponseDto response = resp.then().statusCode(200).as(ResponseDto.class);
Assertions.assertThat(response.getField()).isNotNull();
答案 3 :(得分:0)
使用:
import static org.junit.Assert.assertThat;
您可以:
assertThat(response.then().body(containsString("thingThatShouldntBeHere")), is(false));