四postman增加断言

Posted xinxin1994

tags:

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

预期和实际结果的判断

预期==实际:用例通过,写到报告里

预期!==实际:用例失败,写到报告里

一、例子演示

相当于首页右侧的10大每天的内容

url:http://www.v2ex.com/api/topics/hot.json

Method:GET

Authentication:None

给v2ex的api增加断言

  • 返回的状态码必须是200
  • 返回10条内容
tests["状态码必须是200"] = responseCode.code ===200;

var res= JSON.parse(responseBody);

console.log(res.length);

tests["必须返回10条数据"] = res.length ===10

技术图片

二、postman的Test功能

  • 设置全局变量
  • 设置环境变量
  • 拿到并处理请求的响应
  • 定义测试检查点和断言
tests["Body is correct"] = responseBody ==="response_body_string";
postman.clearEnvironmentVariable("variable_key");
postman.clearGlobalVariable("variable_key")
tests["Body is correct"] = responseBody ==="response_body_string";
tests["Response time is less than 200ms"] = responseTime < 200;

 

以上是关于四postman增加断言的主要内容,如果未能解决你的问题,请参考以下文章

Postman之Tests断言应用

接口测试工具之postman入门介绍

接口测试执行工具Postman:模拟请求用例执行断言批量运行用例简单持续集成

postman断言内容详解

postman常用断言

postman 断言解析