Postman接口&压力测试 ---- Tests使用(断言)

Postman接口&压力测试 ---- Tests使用(断言)_第1张图片

所谓断言,主要用于测试返回的数据结果进行匹配判断,匹配成功返回PASS,失败返回FAIL。

下图方法一,直接点击右侧例子函数,会自动生成出现在左侧窗口脚本,只需修改数据即可。

Postman接口&压力测试 ---- Tests使用(断言)_第2张图片

 

方法二:直接自己写脚本,如下图所示: 

Postman接口&压力测试 ---- Tests使用(断言)_第3张图片

验证Status code的值
tests["Status code is 200"] = responseCode.code === 200;

验证Response time是否小于某个值
tests["Response time is less than 200ms"] = responseTime < 200;

name是否包含某个值
tests["Status code name has string"] = responseCode.name.has("Created");

POST 请求的状态响应码是否是某个值
tests["Successful POST request"] = responseCode.code === 201 || responseCode.code === 202;

 

压力测试

 Postman接口&压力测试 ---- Tests使用(断言)_第4张图片

Postman接口&压力测试 ---- Tests使用(断言)_第5张图片

设置并发10次。执行后结果:

Postman接口&压力测试 ---- Tests使用(断言)_第6张图片

你可能感兴趣的:(PHP,笔记,postman,压力测试)