lsekfe 发表于 2020-9-10 10:08:48

postman使用心得(二):postman接口测试断言

在使用postman做接口测试的时候,可以在tests中对该接口进行断言设置上面的图为使用postman断言方法之一,使json解析key的值进行校验tests["Your test name"] = jsonData.value === 100;其中 Your test name 为断言名,jsonData.value表示为对json进行解析,=== 100 表示为key的value值

{
"ok": true,
"data": {
    "user": {
      "user_no": "888",
      "type": "1",
      "user_name": "W HE",
      "fullname": "W HE",
      "nickname": "",
      "login_name": "1258@qq.com",
      "headimg": "",
      "is_payed": true,
      "is_certified": false
    },
    "redirect_url": "/team/search"
}
}jsonData["data"]["user"]["user_name"] === "W HE"附:
常用的postman断言 解释 对应脚本
Response body:Contains string response包含字符串 tests["Body matches string"] = responseBody.has("string_you_want_to_search");
Response body:Is equal to a string response body等于指定字符串 tests["Body is correct"] = responseBody === "response_body_string";
response body:JSON value check json解析key的值进行校验 tests["Your test name"] = jsonData.value === 100;
status code:Code is 200 判断状态码 tests["Status code is 200"] = responseCode.code === 200;
status code:code name has string 检查code name 是否包含内容 tests["Status code name has string"] = responseCode.name.has("Created");

作者:与我蹉跎不慈悲
链接:https://www.jianshu.com/p/746fd2ebab98
来源:简书


szc123qq 发表于 2020-9-10 10:29:15

:time:

Miss_love 发表于 2020-12-30 14:42:46

支持分享
页: [1]
查看完整版本: postman使用心得(二):postman接口测试断言