断言响应 body 是带有 rest-assured 的空列表
Assert that response body is empty list with rest-assured
如果响应 json 是一个空列表,我如何检查 rest-assured (2.4.0)?
鉴于响应 []
(header content-type=application/json
),我尝试了:
.body(Matchers.emptyArray()) // expected: an empty array, actual: []
.body("/", Matchers.emptyArray()) // invalid expression /
.body(".", Matchers.emptyArray()) // invalid expression .
问题是(可能)REST 保证 returns 一个列表而不是一个数组(并且 Hamcrest 区分两者)。你可以这样做:
.body("", Matchers.hasSize(0))
或
.body("$", Matchers.hasSize(0))
或
.body("isEmpty()", Matchers.is(true))
受到@Johan 所说的启发,我尝试了这个,我认为它比其他建议更能说明 reader。
.body("", equalTo(Collections.emptyList()))
如果响应 json 是一个空列表,我如何检查 rest-assured (2.4.0)?
鉴于响应 []
(header content-type=application/json
),我尝试了:
.body(Matchers.emptyArray()) // expected: an empty array, actual: []
.body("/", Matchers.emptyArray()) // invalid expression /
.body(".", Matchers.emptyArray()) // invalid expression .
问题是(可能)REST 保证 returns 一个列表而不是一个数组(并且 Hamcrest 区分两者)。你可以这样做:
.body("", Matchers.hasSize(0))
或
.body("$", Matchers.hasSize(0))
或
.body("isEmpty()", Matchers.is(true))
受到@Johan 所说的启发,我尝试了这个,我认为它比其他建议更能说明 reader。
.body("", equalTo(Collections.emptyList()))