1.简介
Postman基于Node.js编写,运行时可让您向请求和集合中添加动态行为。这样,您就可以编写测试套件,构建可以包含动态参数的请求,在请求之间传递数据等等。您可以添加JavaScript代码以在2个事件期间执行:
- 一个请求之前被发送到服务器,作为 预请求脚本 的 re-request script 标签。
- 收到响应后,作为 test script 选项卡下的 测试脚本。
2.脚本运行顺序
2.1单个请求
- 与请求关联的预请求脚本将在发送请求之前执行
- 发送请求后,将执行与请求关联的测试脚本
2.2集合中
对于集合中的每个请求,脚本将按以下顺序执行:
- 与集合关联的预请求脚本将在集合中的每个请求之前运行。
- 与文件夹关联的预请求脚本将在文件夹中的每个请求之前运行。
- 与集合关联的测试脚本将在集合中的每个请求之后运行。
- 与文件夹关联的测试脚本将在文件夹中请求后运行。
3.请求前脚本
Pre-request Script : 在将该值传递给第二个请求之前,需要对其进行处理
4.请求后脚本
验证请求返回的数据,可以使用pm.response
对象。
使用pm.test
函数定义测试,并提供一个名称和函数,该函数返回一个布尔值(true
或false
)来指示测试是通过还是失败。
1. // 断言响应状态码 2. pm.test("Status test", function () { 3. pm.response.to.have.status(200); 4. });
1. // 使用适合于响应数据格式的语法来确定请求响应的有效性 2. pm.test("response must be valid and have a body", function () { 3. pm.response.to.be.ok; 4. pm.response.to.be.withBody; 5. pm.response.to.be.json; 6. });
1. // 访问环境 2. pm.test("environment to be production", function () { 3. pm.expect(pm.environment.get("env")).to.equal("production"); 4. });
5.脚本示例
5.1解析响应数据
1. // json格式 2. const responseJson = pm.response.json();
1. // xml格式 2. const responseJson = xml2Json(pm.response.text());
1. const $ = cheerio.load(pm.response.text()); 2. //output the html for testing 3. console.log($.html());
5.2 断言类型
1. // 断言类型 2. const jsonData = pm.response.json(); 3. pm.test("Test data type of the response", () => { 4. pm.expect(jsonData).to.be.an("object"); 5. pm.expect(jsonData.name).to.be.a("string"); 6. pm.expect(jsonData.age).to.be.a("number"); 7. pm.expect(jsonData.hobbies).to.be.an("array"); 8. pm.expect(jsonData.website).to.be.undefined; 9. pm.expect(jsonData.email).to.be.null; 10. });
5.3断言响应时间
1. pm.test("Response time is less than 200ms", () => { 2. pm.expect(pm.response.responseTime).to.be.below(200); 3. });
5.4断言响应头
1. // 响应头字段 2. pm.test("Content-Type header is present", () => { 3. pm.response.to.have.header("Content-Type"); 4. });
1. // 响应头字段对应的值 2. pm.test("Content-Type header is application/json", () => { 3. pm.expect(pm.response.headers.get('Content-Type')).to.eql('application/json'); 4. });
5.5 断言响应主体
1. pm.test("Person is Jane", () => { 2. const responseJson = pm.response.json(); 3. pm.expect(responseJson.name).to.eql("Jane"); 4. pm.expect(responseJson.age).to.eql(23); 5. });
5.6断言状态码
1. // 断言状态码是否在数组中 2. pm.test("Successful POST request", () => { 3. pm.expect(pm.response.code).to.be.oneOf([201,202]); 4. });
1. // 断言状态码值 2. pm.test("Status code is 201", () => { 3. pm.response.to.have.status(201); 4. });
5.7 断言Cookie
1. // 是否存在 2. pm.test("Cookie JSESSIONID is present", () => { 3. pm.expect(pm.cookies.has('JSESSIONID')).to.be.true; 4. });
1. // 断言cookie 值 2. pm.test("Cookie isLoggedIn has value 1", () => { 3. pm.expect(pm.cookies.get('isLoggedIn')).to.eql('1'); 4. });
5.8使用多个断言
1. pm.test("The response has all properties", () => { 2. //parse the response json and test three properties 3. const responseJson = pm.response.json(); 4. pm.expect(responseJson.type).to.eql('vip'); 5. pm.expect(responseJson.name).to.be.a('string'); 6. pm.expect(responseJson.id).to.have.lengthOf(1); 7. });