postman|postman接口测试&断言

一、接口测试 举例:天气预报
网址:www.apishop.net
postman|postman接口测试&断言
文章图片

apiKey可以免费申请,我已经有了就不申请了
postman|postman接口测试&断言
文章图片

【postman|postman接口测试&断言】输入参数
postman|postman接口测试&断言
文章图片

请求成功
postman|postman接口测试&断言
文章图片

二、断言 断言和沙盒
postman|postman接口测试&断言
文章图片

1.Status code:Code is 200响应状态码是否是200 pm.test("Status code is 200", function () { pm.response.to.have.status(200); });

postman|postman接口测试&断言
文章图片

然后点击send,查看结果
postman|postman接口测试&断言
文章图片

2.Response time is less then 200ms响应时间是否低于200ms pm.test("Response time is less than 200ms", function () { pm.expect(pm.response.responseTime).to.be.below(200); });

postman|postman接口测试&断言
文章图片

大于看好里的数字则是错误的
postman|postman接口测试&断言
文章图片

3.Response body: Contains string响应包含某个字符串 pm.test("Body matches string", function () { pm.expect(pm.response.text()).to.include("string_you_want_to_search"); });

我的响应里有“请求成功”
postman|postman接口测试&断言
文章图片

4.Response body is equal to a string 响应主体等于某个值 pm.test("Body is correct", function () { pm.response.to.have.body("response_body_string"); });

我的响应太多了,所有不做例子了
5.Response body:JSON value check响应主体中的某个json键的值是否等于某个值(常用:重点) pm.test("Your test name", function () { var jsonData = https://www.it610.com/article/pm.response.json(); pm.expect(jsonData.value).to.eql(100); });

postman|postman接口测试&断言
文章图片

postman|postman接口测试&断言
文章图片

    推荐阅读