1、code is 200:断言 http 状态码为 200
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
2、contains string:断言响应结果包含指定的字符串
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("自定义指定字符串");
});
3、json value check:检查报文中的 json 值
pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100); # 转json格式,检查value属性值为100
});
4、is equal to a string:断言响应结果等于指定的字符串
pm.test("Body is correct", function () {
pm.response.to.have.body("指定的字符串");
});