1、断言响应码为200
pm.test("Status code is 200", function () { pm.response.to.have.status(200); });
2、断言响应结果包含指定的字符串
pm.test("Body matches string", function () { pm.expect(pm.response.text()).to.include("自定义指定字符串"); });
3、对返回的结果做json检查
pm.test("Your test name", function () { var jsonData = pm.response.json(); pm.expect(jsonData.value).to.eql(100); }); //jsonData.value表示需要断言的响应结果中json的值(通过json键值对的方法获取), //to.eql(100)表示期望响应结果的值
4、断言响应结果等于指定的字符串
pm.test("Body is correct", function () { pm.response.to.have.body("期望的响应结果"); }); //一般用于响应结果固定的断言方式
5、断言响应头包含指定的响应头
pm.test("Content-Type is present", function () { pm.response.to.have.header("Content-Type"); }); //根据实际情况而定,content-type为实际情况需要的响应头内容
6、断言接口响应时间小于200ms
pm.test("Response time is less than 200ms", function () { pm.expect(pm.response.responseTime).to.be.below(200); }); //响应时间根据需要进行自定义
7、断言响应码在指定范围内
pm.test("Successful POST request", function () { pm.expect(pm.response.code).to.be.oneOf([201, 202]); }); //根据接口自身情况定义范围,比较常用
8、断言响应码包含指定的字符串
pm.test("Status code name has string", function () { pm.response.to.have.status("Created"); }); //接口成功一般返回的都是 "ok"
作者:陇山
原文链接:https://blog.csdn.net/qq_45881545/article/details/117587647