postman示例

参考 官网文档

测试示例

示例中部分可以在Postman中作为片段直接使用。
多数测试都与简单的JavaScript一样。可以根据要求提供尽可能多的测试。

设置环境变量

postman.setEnvironmentVariable("key", "value");
或者
pm.environment.set("variable_key", "variable_value");

这两种方式使用其中一种即可,根据自己的喜爱,以下示例使用pm对象,其他的可以参考官方文档的后半部分

将嵌套对象设置为环境变量

var array = [1, 2, 3, 4];
pm.environment.set("array", JSON.stringify(array, null, 2));

var obj = { a: [1, 2, 3, 4], b: { c: 'val' } };
pm.environment.set("obj", JSON.stringify(obj));

获取环境变量

pm.environment.get("variable_key");

获取一个环境变量(其值是一个字符串对象)

// These statements should be wrapped in a try-catch block if the data is coming from an unknown source.

var array = JSON.parse(pm.environment.get("array"));
var obj = JSON.parse(pm.environment.get("obj"));

清除环境变量

pm.environment.unset("variable_key");

设置一个全局变量

pm.globals.set("variable_key", "variable_value");

获取全局变量

pm.globals.get("variable_key");

清除一个全局变量

pm.globals.unset("variable_key");

获取一个变量

从全局变量和激活的环境中(当前环境)

pm.variables.get("variable_key");

检查响应是否包含一个字符串

tests["Body matches string"] = responseBody.has("string_you_want_to_search");
或者
pm.test("Body matches string", function () {
    pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});

书写test:旧方式是使用tests[],新方式是pm.test

检查返回体是否等于一个字符串

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

检查json值

pm.test("Your test name", function () {
    var jsonData = pm.response.json();
    pm.expect(jsonData.value).to.eql(100);
});

检查当前的Content-Type

pm.test("Your test name", function () {
    var jsonData = pm.response.json();
    pm.expect(jsonData.value).to.eql(100);
});

检查相应时间小于200ms

pm.test("Response time is less than 200ms", function () {
    pm.expect(pm.response.responseTime).to.be.below(200);
});

检查http响应码是否为200

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

状态码名称包含一个字符串

pm.test("Status code name has string", function () {
    pm.response.to.have.status("Created");
});
或者
tests["Status code name has string"] = responseCode.name.has("Created");

成功的POST请求状态码

pm.test("Successful POST request", function () {
    pm.expect(pm.response.code).to.be.oneOf([201,202]);
});
或者
tests["Successful POST request"] = responseCode.code === 201 || responseCode.code === 202;

将TinyValidator用于JSON数据

var schema = {
 "items": {
 "type": "boolean"
 }
};
var data1 = [true, false];
var data2 = [true, 123];

pm.test('Schema is valid', function() {
  pm.expect(tv4.validate(data1, schema)).to.be.true;
  pm.expect(tv4.validate(data2, schema)).to.be.true;
});

console.log("Validation failed: ", tv4.error);

解码base64编码数据

var intermediate,
	base64Content, // assume this has a base64 encoded value
	rawContent = base64Content.slice('data:application/octet-stream;base64,'.length);

intermediate = CryptoJS.enc.Base64.parse(base64content); // CryptoJS is an inbuilt object, documented here: https://www.npmjs.com/package/crypto-js
pm.test('Contents are valid', function() {
  pm.expect(CryptoJS.enc.Utf8.stringify(intermediate)).to.be.true; // a check for non-emptiness
});

发送匿名请求
该请求适用于pre-request和test

pm.sendRequest("https://postman-echo.com/get", function (err, response) {
    console.log(response.json());
});

xml转json

var jsonObject = xml2Json(responseBody);

请指正~

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值