postman校验脚本与newman

Posted RainBol

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman校验脚本与newman相关的知识,希望对你有一定的参考价值。

Test

在postman的collections中选择文件夹或者单个请求中找到(如果文件夹和单个请求中都有填写,优先执行上层)

 

 

 这些测试将在此集合中的每个请求之后执行,通常执行一些测试校验,下面来看看吧

 

校验是否为200

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

 

校验响应时间是否小于3秒内

pm.test(
    "//Response响应时间是否<=3000ms", function () {
    pm.expect(pm.response.responseTime).to.be.below(3000);
});

 

校验返回结果中是否包含某个字符串

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

});

 

校验返回结果是否等于该字符串

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

});

 

校验返回结果中某个字段值是否等于某个值

pm.test("Your test name", function () {
//设置jsonData变量用来接收postman的json格式的返回数据

var jsonData = pm.response.json();

//判断返回数据中,msg字段是结果是否为OK

//此处与需要注意一下json格式,jsonData为整个接口的返回数据,jsonData.msg是第一层级字段

pm.expect(jsonData.value).to.eql(100);

});

 

校验响应头是否包含某个值

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

});

 

以上是关于postman校验脚本与newman的主要内容,如果未能解决你的问题,请参考以下文章

postman+newman脚本化接口测试

postman+Newman+Jenkins框架

Postman接口测试_Newman运行集合脚本

Postman之newman运行API包

postman+newman+jenkins持续集成接口自动化测试脚本

postman(newman)+jenkins实现自动化测试生成报告发送邮件