postman断言的几种方式(二)

1、检查响应体是否包含字符串

pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});

2、检查响应体是否等于字符串

pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});

3、检查JSON值

pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});

4、内容类型存在

pm.test("Content-Type is present", function () {
pm.response.to.have.header("Content-Type");
});

5、响应时间小于200毫秒

pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});

6、状态代码为200

pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});

7、代码名包含字符串

pm.test("Status code name has string", function () {
pm.response.to.have.status("Created");
});

 

转载于:https://www.cnblogs.com/unknows/p/10032150.html