后置脚本
发送接口请求后执行的代码片段也称为后置脚本。主要用来断言请求返回的结果是否正确、将请求返回的结果数据写入环境变量等场景。
使用示例
断言请求响应是否正确
// pm.response.to.have 示例
pm.test('返回结果状态码为 200', function() {
pm.response.to.have.status(200);
});
// pm.expect() 示例
pm.test('当前为正式环境', function() {
pm.expect(pm.environment.get('env')).to.equal('production');
});
// response assertions 示例
pm.test('返回结果没有错误', function() {
pm.response.to.not.be.error;
pm.response.to.have.jsonBody('');
pm.response.to.not.have.jsonBody('error');
});
// pm.response.to.be* 示例
pm.test('返回结果没有错', function() {
// assert that the status code is 200
pm.response.to.be.ok; // info, success, redirection, clientError, serverError, are other variants
// assert that the response has a valid JSON body
pm.response.to.be.withBody;
pm.response.to.be.json; // this assertion also checks if a body exists, so the above check is not needed
});
将接口响应数据写入至环境变量
// 获取 JSON 格式的请求返回数据
var jsonData = pm.response.json();
// 将 jsonData.token 的值写入环境变量
pm.environment.set('token', jsonData.token);
更多示例
- 更多测试/断言示例
- 使用变量(环境变量、全局变量、临时变量)示例
- 脚本内发送接口请求
pm.sendRequest('https://www.api.com/get', function(err, response) {
console.log(response.json());
});