postman(三)——预请求脚本和断言

1、欲请求脚本

**// 获取环境变量**

// var(定义变量) e=pm.environment.get("test0703").toString();  (变为string类型)

// console.log("获取的环境变量"+e); (控制台输出)

**//获取全局变量**

// console.log("获取的全局变量"+pm.globals.get("token"));

**//获取变量**

// pm.variables.set("var", "局部变量");

// //设置局变量(设置没有调用,所以不会有影响)

// console.log("获取局部变量var:"+pm.variables.get("var"));

**//设置一个环境变量**

// pm.environment.set("eszy0424", "192.168.1.1");

// console.log("设置环境变量:"+pm.environment.get("eszy0424"));

**//设置全局变量**

// pm.globals.set("gszy0424", "1232423445435");

// console.log("设置全局变量:"+pm.globals.get("gszy0424"));

**//清除一个环境变量.具体的环境变量**

// pm.environment.unset("eszy0911");

// console.log("清除环境变量:"+pm.environment.get("eszy0911"))

**//清除全局变量**

// pm.globals.unset("gszy0424");

// console.log("清除全局变量:"+pm.globals.get("gszy0424"));

**// 发送一个请求**

const echoPostRequest = {

url: 'http://localhost/api/mgr/loginReq',

method: 'POST',

header: 'Content-Type:application/x-www-form-urlencoded',

body: {

  mode: 'urlencoded',

  urlencoded:'username=auto&password=sdfsdfsdf'

}

};

pm.sendRequest(echoPostRequest, function (err, res) {

console.log(err ? err : res.json());

});

2、断言

//匹配响应码

// pm.test("Status code is 200", function () {

//   pm.response.to.have.status(200);

// });

//匹配响应体中包含字符串

// pm.test("验证过是否有1519课程", function () {

//   pm.expect(pm.response.text()).to.include("1519");

// });

//匹配响应体里json值验证

// pm.test("Your test name", function () {

//   var jsonData = pm.response.json();

//   pm.expect(jsonData.retcode).to.eql(0);

// });

//响应体值正确的----循环登录案例

// pm.test("Body is correct", function () {

//   pm.response.to.have.body('{"retcode": 0}');

// });

//匹配响应头contenty-type

// pm.test("Content-Type is present", function () {

//   pm.response.to.have.header("Content-Type");

// });

//匹配响应时间是否少于200ms

// pm.test("Response time is less than 200ms", function () {

//   pm.expect(pm.response.responseTime).to.be.below(200);

// });

//成功的响应中是否包含

// pm.test("Successful POST request", function () {

//   pm.expect(pm.response.code).to.be.oneOf([201,203,200]);

// });

//状态码是否包含字符串

// pm.test("Status code name has string", function () {

//   pm.response.to.have.status("OK");

// });

//将响应的XML格式转化为json格式

// var jsonObject = xml2Json(responseBody);

// var str=JSON.stringify(jsonObject);

// console.log(str);

//为json数据使用tiny验证器

// 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;

// });

你可能感兴趣的:(postman,postman,测试工具)