美文网首页
Postman设置参数

Postman设置参数

作者: circlq | 来源:发表于2019-07-12 15:45 被阅读0次
    一.断言&设置参数
    1.正常断言
    pm.test("Status code is 200", function () {
        pm.response.to.have.status(200);
    });
    
    var data=JSON.parse(responseBody);
    tests["Code=1"]=data.data.Code===1;
    
    2.设置参数
    pm.test("Status code is 200", function () {
        pm.response.to.have.status(200);
    });
    
    var data=JSON.parse(responseBody);
    var lableId=data.data.Content.lableId;
     
    //设置成环境变量
    pm.environment.set("lableId", lableId);
    tests["Code=1"]=data.data.Code===1;
    
    3.更改参数名称
    pm.test("Status code is 200", function () {
        pm.response.to.have.status(200);
    });
    
    var data=JSON.parse(responseBody);
    var lableId_1=data.data.Content.lableId;
     
    //设置成环境变量
    pm.environment.set("lableId_1", lableId_1);
    tests["Code=1"]=data.data.Code===1;
    
    4.获取多个返回值
    var data=JSON.parse(responseBody);
    
    var num=data.data.Content.length;
    var studyContentIds = ''
    for(var i=0;i<num;i++){
        var studyContentId=data.data.Content[i].studyContentId;
        if (i == num - 1) {
            studyContentIds += (studyContentId)
        } else {
            studyContentIds += studyContentId + ","
        }
    }
    pm.environment.set("studyContentIds", '"'+studyContentIds+'"');  
    
    pm.test("Status code is 200", function () {
        pm.response.to.have.status(200);
    });
    
    tests["Code=1"]=data.data.Code===1;
    
    二、时间参数
    1.添加时间戳
    以下代码添加在Pre-request Script里面
    postman.setGlobalVariable("now",Date.parse(new Date()));
    
    +{{now}}
    
    2.添加日期
    Date.prototype.Format = function (fmt) {
    var o = {
    "M+": this.getMonth() + 1, //月份
    "d+": this.getDate(), //日
    "H+": this.getHours(), //小时
    "m+": this.getMinutes(), //分
    "s+": this.getSeconds(), //秒
    "q+": Math.floor((this.getMonth() + 3) / 3), //季度
    "S": this.getMilliseconds() //毫秒
    };
    if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    for (var k in o)
    if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    return fmt;
    }
    var timeNow = new Date().Format("yyyy-MM-dd HH:mm:ss");
    postman.setGlobalVariable("now",timeNow);

    相关文章

      网友评论

          本文标题:Postman设置参数

          本文链接:https://www.haomeiwen.com/subject/hsxykctx.html