Postman沙盒

Postman Sandbox是一个JavaScript执行环境,您可以在编写预请求脚本和测试脚本(在Postman和Newman中)时可用。在这个沙箱中执行您在预请求/测试脚本部分中写入的代码。可调用库。

postman沙盒详细介绍地址:https://learning.getpostman.com/docs/postman/scripts/postman_sandbox_api_reference/

Postman常用的断言:

  在使用postman做接口测试的时候,可以在tests中对该接口进行断言设置

  下面是几种常用的断言方式:

  1.检验请求是否发送成功,也就是postman中的status是否为200

    接口:http://suggest.taobao.com/sug?code=utf-8&q=女装&callback=cb(网上找的免费接口)

    断言方式两种写法:第一种:tests['Status code is 200']=responseCode.code===200;第二种:   

pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});其中“Status code is 200”可以任意编辑

  2.断言响应数据的status是不是200:
    接口:http://www.kuaidi100.com/query?type=yuantong&postid=11111111111

    断言代码:

var jsondata=JSON.parse(responseBody)#获取响应的body部分并且转化成json格式
tests['断言响应数据里的status是否为200']=jsondata.status==='200';

  

  3.断言响应返回的数据中是否存在某个字段:

    断言代码:

pm.test('是否存在字段com',function(){
pm.expect(pm.response.text()).to.include('com');
});

  

  4.断言响应数据里面的值是否正确:

  附一段响应数据:

  

{
"status": 1,
"message": "success",
"data": [
{
"id": 1,
"title": "乡愁",
"author": "余光中",
"content": "小时候,乡愁是一枚小小的邮票,我在这头,母亲在那头。长大后,乡愁是一张窄窄的船票,我在这头,新娘在那头"
},
{
"id": 5,
"title": "乡愁",
"author": "余光中",
"content": "小时候,乡愁是一枚小小的邮票,我在这头,母亲在那头。长大后,乡愁是一张窄窄的船票,我在这头,新娘在那头"
}
]
}

  断言id是否等于1:

  断言代码:

var jsonData = JSON.parse(responseBody);

tests["Check respose status value"] = jsonData.status === 1;

pm.test("判断data里面第一个json数据的id为1", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.data[0].id).to.eql(1);});

  5.校验响应时间:

  断言代码:

pm.test('响应时间是否小于300ms',function(){
pm.expect(pm.response.responseTime).to.be.below(300);
});

  6.校验响应数据中,返回的数据类型:

  断言代码:

var jsondata=JSON.parse(responseBody);
tests['判断com字段的值是不是string类型']=typeof(jsondata.com)==='string';

  

  7.断言响应数据中是否含有某个元素:

  判断是否含有message这个元素

  断言代码:

tests['判断是否含有message这个元素']=responseBody.has('message');

  

  8.校验响应数据中的status是不是200或者301:

  意思是:status为200或者301都算通过

  断言代码:

  

pm.test("响应status code 是200,301就算成功", function () {

      pm.expect(pm.response.code).to.be.oneOf([200,301]);
    });

  

postman常见断言方法介绍:

Setting an environment variable  (设置一个环境变量)

1.pm.environment.set("variable_key""variable_value");

Setting a nested object as an environment variable (将嵌套对象设置为环境变量)

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

Getting an environment variable (获取环境变量)

pm.environment.get("variable_key");

Getting an environment variable (whose value is a stringified object)  获取一个环境变量(其值是一个字符串化的对象)

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

Clear an environment variable (清除一个环境变量)

pm.environment.unset("variable_key");

Set a global variable (设置一个全局变量)

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

Get a global variable (获取一个全局变量)

pm.globals.get("variable_key");

Clear a global variable (清除全局变量)

pm.globals.unset("variable_key");

Get a variable (获取一个变量)

该函数在全局变量和活动环境中搜索变量。

pm.variables.get("variable_key");

Check if response body contains a string (检查响应主体是否包含字符串)

pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});

Check if response body is equal to a string (检查响应主体是否等于一个字符串)

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

Check for a JSON value (检查JSON值

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

Content-Type is present (内容类型存在

pm.test("Content-Type is present", function () {
pm.response.to.have.header("Content-Type");
});

Response time is less than 200ms (响应时间小于200ms

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

Status code is 200 (状态码是200

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

Code name contains a string (代码名称包含一个字符串

pm.test("Status code name has string", function () {
pm.response.to.have.status("Created");
});

Successful POST request status code (成功的POST请求状态码

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

Use TinyValidator for JSON data (对于JSON数据使用TinyValidator

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;
});

Decode base64 encoded data (解码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
});

Send an asynchronous request (发送异步请求

该功能既可以作为预先请求,也可以作为测试脚本使用。

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

Convert XML body to a JSON object (将XML正文转换为JSON对象

var jsonObject = xml2Json(responseBody);

postman—Sandbox和断言的更多相关文章

  1. postman测试实例--断言

    postman测试实例--断言 让我们来看看postman测试的一些例子. 其中大部分是作为内部postman片段. 大多数测试是为单行的JavaScript语句一样简单. 只要你想一个请求,你可以有 ...

  2. 4、postman的常见断言

    推荐我的另一篇文章  浅谈JSONObject解析JSON数据,这篇文章原理类似,使用java或者beanshell进行断言解析json数据 介绍断言之前,我们先测试1个接口: 接口地址:https: ...

  3. 『政善治』Postman工具 — 9、在Postman中使用断言

    目录 1.Tests的介绍 2.常用SNIPPETS(片段)说明 (1)常用变量相关 (2)状态码相关 (3)响应结果断言: (4)Header : (5)响应速度: 3.示例 (1)响应码断言 (2 ...

  4. postman之请求&断言

    http://www.jianshu.com/p/dd0db1b13cfc    ---参考网址 文档:https://www.v2ex.com/p/7v9TEc53 api地址:https://ww ...

  5. PostMan变量与断言应用(对标Jmeter)

    常见的接口测试工具有PostMan/Jmeter/SoapUI,当然,也有一些公司为了更贴近自身的应用开发了一些小工具. 从功能上对比,Jmeter更为强大,既能做压测还能测接口,扩展性也比较好. B ...

  6. 利用 Postman 中 Tests 断言校验返回结果

    前言 Postman目前是一款很火的接口测试工具,它有着非常强大结果判断能力.为什么说强大呢,因为Postman有自带的校验脚本,根本不需要我们去学习JS脚本语言,对于代码能力为0的各位测试小伙伴来说 ...

  7. Postman(一)、断言

    postman常见断言方法介绍: 1.Clear a global variable (清除一个全局变量)  postman.clearGlobalVariable("variable_ke ...

  8. Postman中的断言

    Postman设置断言 一.断言的定义 1.什么是断言? 一般一个完整的接口测试,包括:请求->获取响应正文->断言,请求和获取响应正文很常见.断言一般是对请求的响应结果做操作,判断预期结 ...

  9. ~postman基础断言方法

    postman官方文档:https://learning.getpostman.com/docs/postman/scripts/test_examples/ 断言1:检查响应主体是否包含字符串 // ...

随机推荐

  1. multiple datasource config

    Hi Harshit S. project structure: multiple datasource config as follows: step 1: step 2:add a datasou ...

  2. WebMvcConfigurer 与 WebMvcConfigurationSupport避坑指南

    我们知道,在Spring Boot 2.0后用自己的的配置类继承WebMvcConfigurerAdapter时,idea会提示这个类已经过时了. 通常情况下我们会采用下面两种代替方案: 实现WebM ...

  3. vue路由高级用法

    五.路由设置高级用法alias 别名 {path:'/list',component:MyList,alias:'/lists'}redirect 重定向 {path:'/productList',r ...

  4. LeetCode.876-链表的中间节点(Middle of the Linked List)

    这是悦乐书的第337次更新,第361篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第206题(顺位题号是876).给定具有头节点的非空单链表,返回链表的中间节点.如果有两 ...

  5. 吴恩达机器学习(二) 单变量线性回归(Linear Regression with one variable)

    一.模型表示 1.一些术语 如下图,房价预测.训练集给出了房屋面积和价格,下面介绍一些术语: x:输入变量或输入特征(input variable/features). y:输出变量或目标变量(out ...

  6. java.lang.NoSuchMethodError: org.apache.spark.internal.Logging.$init$(Lorg/apache/spark/internal/Logging;)V

    1.sparkML的版本不对应 请参考官网找到对于版本, 比如我的 spark2.3.3          spark MLlib 也是2.3.3

  7. 【Linux-驱动】驱动策略----信号量

    访问共享资源的代码区块叫“临界区”,临界区需要以某种互斥机制加以保护:自旋锁.信号量等.互斥访问:一个执行单元在访问共享资源的时候,其他的执行单元被禁止访问. 信号量:在Liunx中的信号量是一种睡眠 ...

  8. (4.31)sql server中的xml数据操作

    关键词:xml数据转为行列方式显示 常规案例: declare @data xml declare @h int set @data=' <bookstore> <row> & ...

  9. bootstrap使用总结(导航在carousel居中之上)

    在导航中想实现这样 carousel 在底部,导航条在上面中间,div结构为以下 <div class="navbar-wrapper"style="width: ...

  10. 最长上升子序列(LIS) Medium2

    JGShining's kingdom consists of 2n(n is no more than 500,000) small cities which are located in two ...