postman测试案例的值判断的一些写法

//判断状态码
pm.test("状态码是200", function () {
    pm.response.to.have.status(200);
});
//判断json指定key等于指定值
pm.test("msg等于账户与密码不匹配", function () {
    var jsonData = pm.response.json();
    pm.expect(jsonData.msg).to.eql("账户与密码不匹配");
});
pm.test("success等于true", function () {
    var jsonData = pm.response.json();
    pm.expect(jsonData.success).to.eql(true);
});
//判断返回[]
pm.test("内容长度为0", function () {
    var jsonData = pm.response.json();
//实际就是判断json长度等于0
    pm.expect(jsonData.length).to.eql(0);
});
//判断json数组条数大于指定值
pm.test("条数大于0", function () {
    var jsonData = pm.response.json();
   pm.expect(jsonData.length).to.above(0);
});
//判断json数组条数小于指定值
pm.test("条数小于5", function () {
    var jsonData = pm.response.json();
   pm.expect(jsonData.length).to.below(5);
});
//判断没有返回内容
pm.test("数据为空", function () {
    pm.expect(pm.response.text()).to.eql("");
});

你可能感兴趣的:(postman测试案例的值判断的一些写法)