我正在尝试使用jsonPath从JSON数组中提取值。
示例JSON响应:
{
"notices": [],
"errors": [
{
"code": "UNAUTHORIZED"
}
]
}
目前的测试如下:
@Test(dataProvider = "somePayLoadProvider", dataProviderClass = MyPayLoadProvider.class)
public void myTestMethod(SomePayload myPayload) {
Response r = given().
spec(myRequestSpecification).
contentType(ContentType.JSON).
body(myPayload).
post("/my-api-path");
List<String> e = r.getBody().jsonPath().getList("errors.code");
assertEquals(e, hasItem(MyErrorType.UNAUTHORIZED.error()));
}
然而,我不断得到[]我的错误代码。我只想要价值。
java.lang.AssertionError: expected
[a collection containing "UNAUTHORIZED"] but found [[UNAUTHORIZED]]
Expected :a collection containing "UNAUTHORIZED"
Actual :[UNAUTHORIZED]
答案 0 :(得分:0)
显然,这只是我没有正确使用assert()
方法。
已更改
assertEquals(e, hasItem(MyErrorType.UNAUTHORIZED.error()));
到
assertTrue(e.contains(MyErrorType.UNAUTHORIZED.error()));
json的解析正确地完成了ArrayList<String>
答案 1 :(得分:0)
或者,您可以指定“错误”的数组索引来删除方括号。即:
List<String> e = r.getBody().jsonPath().getList("errors[0].code");
然后您可以返回使用“等于”而不是“包含”
答案 2 :(得分:0)
请放心,您还可以在REST调用中内联链接断言,如下所示:
given()
.spec(myRequestSpecification)
.contentType(ContentType.JSON)
.body(myPayload)
.post("/my-api-path") //this returns Response
.then() //but this returns ValidatableResponse; important difference
.statusCode(200)
.body("notices", hasSize(0)) // any applicable hamcrest matcher can be used
.body("errors", hasSize(1))
.body("errors", contains(MyErrorType.UNAUTHORIZED.error()));