我们如何验证上述字段(如“Json”)的Json数据类型;价格&引用;ck“&引用;名称&引用;“已启用”;和“;标签“;在放心测试中。
{
"odd": {
"price": 200,
"ck": 12.2,
"name": "test this",
"enabled": true,
"tags": null
}
}
是否有任何方法或断言库可以提供rest-assured测试示例中提到的数据类型验证,其中我们可以只验证以下示例中提到的数据类型,而不是断言给定键的实际值。文章源自玩技e族-https://www.playezu.com/190314.html
ValidatableResponse response =
given().
spec(requestSpec).
headers("authkey", "abcdxxxxxxxxxyz").
pathParam("uid", oddUid).
when().
get("/orders" + "/{uid}").
then().
assertThat().
statusCode(200).
body(
"odd.price", isNumber(),
"odd.name", isString(),
"enabled", isboolean()
"tags", isNull()
);
catia软件功能测试文章源自玩技e族-https://www.playezu.com/190314.html 文章源自玩技e族-https://www.playezu.com/190314.html
未知地区 1F
如果我们想验证我们在 .正文() 方法,然后我们可以使用Rest Assured内置匹配器 匹配器 类别:
import static org.hamcrest.匹配器.isA;
import static org.hamcrest.匹配器.nullValue;
…
given().
spec(requestSpec).
headers("authkey", "abcdxxxxxxxxxyz").
pathParam("uid", oddUid).
when().
get("/orders" + "/{uid}").
then().
body("odd.price", isA(Integer.class)).
body("odd.name", isA(String.class)).
body("enabled", isA(Boolean.class)).
body("tags", nullValue()).
或者我们可以使用一些断言库,例如AssertJ:
import static org.assertj.core.api.Assertions.assertThat;
…
JsonPath response = given().
spec(requestSpec).
headers("authkey", "abcdxxxxxxxxxyz").
pathParam("uid", oddUid).
when().
get("/orders" + "/{uid}").
then().
extract().jsonPath();
assertThat(jsonPath.get("odd.price") instanceof Integer).isTrue();