小石阿.90后天秤座.喜欢分享
A:请问postman是什么?
B:我想应该是辛勤的邮差吧!
A:是辛勤的邮差吗???
B:应该是吧,应该是个帅气的小哥哥
A:你们会联想到什么呢???
上帝:我记得有个故事,讲的是一个邮递员杀人的事情I remembered a particular story about a postman who was a murderer
主人公: 我们进入一个恐怖的故事吧(邪恶)
言归正传,简单的了解下我们的postman,对于一个测试人员来讲,测试接口是一个很重要的流程,而postman是测试接口的一个常用工具之一。
对于刚刚使用postman的新手来讲,有一些地方可能不是很懂,之前在帮同事使用postman中也遇见到过此类情况。现总结一部分,以供参考,安装以及环境变量设置请看上一篇Postman之设置环境变量
最近在使用postman工具进行接口测试过程中,针对业务验证的接口验证的内容不同,自己使用的几种断言,以及积累查询百度文档对于断言常用的几种类型作个记录便于后期进行查询以及使用。
1.检查请求后返回的状态码 status 为200
备注:status code:Code is 200
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
2.通过返回状态码检查是成功的post请求
备注:status code:successful POST request
pm.test("Successful POST request", function () {
pm.expect(pm.response.code).to.be.oneOf([201,202]);
});
3.检查response body等于指定字符串
备注:response body:is equal to a string
pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});
4.检查response body中包含字符串
备注:response body:contains string
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});
5.检查content-Type是否包含在header返回
备注:response headers:content-Type header check
pm.test("Content-Type is present", function () {
pm.response.to.have.header("Content-Type");
});
6.检查response body中JSON某个字段值
备注:response body:JSON value check
pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});
7.检查响应时间超过200ms
备注:response time is than 200ms
pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
8.response body:将xml转换为JSON对象
备注:response body:convert XML body to a JSON object
var jsonObject = xml2Json(responseBody);
9.设置一个环境变量
备注:set an environment variable
pm.environment.set("variable_key", "variable_value");
10.设置一个全局变量
备注:set a global variable
pm.globals.set("variable_key", "variable_value");
11.清除全局变量
备注:clear a global variable
pm.globals.unset("variable_key");
12.清除环境变量
备注:Clear an environment variable
pm.environment.unset("variable_key");
13.获取一个全局变量
备注:get a global variable
pm.globals.get("variable_key");
14.获得一个环境变量
备注:Get an environment variable
pm.environment.get("variable_key");
15.获得一个变量
备注:get a variable
pm.variables.get("variable_key");
16.检查返回状态码中有指定字符串
备注:status code:code name has string
pm.test("Status code name has string", function () {
pm.response.to.have.status("Created");
});
17.发送一个请求
备注:send s request
pm.sendRequest("https://postman-echo.com/get", function (err, response) {
console.log(resp onse.json());
});
基础常用的断言篇就是这些,根据相关工具的实际操作结合应用起来。后续会持续学习更新,欢迎关注!