Postman验证请求响应信息
Postman断言的脚本在Tests标签中编写,右侧有脚本快捷生成选项,点击即可生成对应脚本。
验证函数的写法
pm.test(“验证输出文本”,function(){返回值为布尔类型的验证函数});
pm.test(“验证输出文本”,function(){pm.expect(函数).条件});
验证响应状态
状态
pm.test(“Status code is 200”, function () {
pm.response.to.have.status(200);
});
状态名称
pm.test(“Status code name has string”, function () {
pm.response.to.have.status(“Created”);
});
状态码
pm.test(“Successful POST request”, function () {
pm.expect(pm.response.code).to.be.oneOf([201,202]);
});
验证响应头
包含信息类型
pm.response.to.have.header(“Content-Type”);
});
响应时间
pm.test(“Response time is less than 200ms”, function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
验证响应体
响应文本包含
pm.test(“Body matches string”, function () {
pm.expect(pm.response.text()).to.include(“string_you_want_to_search”);
});
Json数据
pm.test(“Your test name”, function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});
响应体等于
pm.test(“Body is correct”, function () {
pm.response.to.have.body(“response_body_string”);
});