断言 (测试请求结果)

    将请求返回的结果数据写入环境变量

    1. // 获取 JSON 格式的请求返回数据
    2. var jsonData = pm.response.json();
    3. // 将 jsonData.token 的值写入环境变量
    4. pm.environment.set('token', jsonData.token);

    检查 response body 是否包含某个字符串

    1. pm.test('Body matches string', function() {
    2. pm.expect(pm.response.text()).to.include('string_you_want_to_search');
    3. });

    检查 response body 是否包含等于字符串

    1. pm.test('Body is correct', function() {
    2. pm.response.to.have.body('response_body_string');
    3. });

    检查 json 值

    1. pm.test('Your test name', function() {
    2. var jsonData = pm.response.json();
    3. pm.expect(jsonData.value).to.eql(100);
    4. });

    检查 header 是否有设置 Content-Type

    1. pm.test('Content-Type header is present', function() {
    2. pm.response.to.have.header('Content-Type');

    检查请求响应耗时是否低于 200 毫秒

    1. pm.test('Response time is less than 200ms', function() {
    2. pm.expect(pm.response.responseTime).to.be.below(200);
    3. });
    1. pm.test('Status code is 200', function() {
    2. pm.response.to.have.status(200);
    3. });

    检查 HTTP 状态码名称是否包含某个字符串

    是否正确的 POST 请求状态码

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

    断言库的使用示例

    Apifox 内置了ChaiJS作为断言库,以下是常用的断言测试脚本示例,但并非全部示例,更多用法请参考文档: ChaiJS expect BDD library

    断言目标字符串包含另一个字符串

    1. pm.test('断言目标字符串包含另一个字符串', function() {
    2. pm.expect('foobar').to.have.string('bar');
    3. });

    断言目标严格等于(===)某值

    1. const TEN = 10;
    2. pm.test('Check if number is equal to 10', function() {
    3. pm.expect(TEN).to.equal(10);

    如果设置了deep标记,则断言目标深度等于value

    1. pm.test('断言目标深度等于提供的 JSON', function() {
    2. pm.expect(data1).to.deep.equal(data2);
    3. });
    1. 设置deep标记,然后使用equalproperty断言。该标记可以让其后的断言不是比较对象本身,而是递归比较对象的键值对。

    断言深度等于某值,相当于deep.equal(value)的简写

    1. pm.test('Check response value', function() {
    2. var jsonData = pm.response.json();
    3. pm.expect(jsonData.value).to.eql(100);
    4. });

    断言当前环境

    1. pm.test('Check if environment is production', function() {
    2. pm.expect(pm.environment.get('env')).to.equal('production');
    3. });
    1. pm.test('Check if target is string', function() {
    2. pm.expect('Postman').to.be.a('string');
    3. });
    4. pm.test('Check if target is an object', function() {
    5. pm.expect({ a: 1 }).to.be.an('object');
    6. });
    7. pm.test('Check if target is undefined', function() {
    8. pm.expect(undefined).to.be.an('undefined');
    9. });

    注意:

    1. 推荐在做其他断言前,先使用 .a 方法检查模板的数据类型。
    2. 数据类型是大小写敏感的。

    断言是否为空

    还可以使用 .a方法检查数据类型后,在断言是否为空。

    1. pm.test('Check if array is empty', function() {
    2. pm.expect([]).to.be.an('array').that.is.empty;

    断言目标对象的键值

    1. pm.test('Check if object contains all provided keys', function() {
    2. pm.expect({ a: 1, b: 2 }).to.have.all.keys('a', 'b');
    3. });
    4. pm.test('Checking if object contains any ONE of the keys', function() {
    5. pm.expect({ a: 1, b: 2 }).to.have.any.keys('a', 'b');
    6. });
    7. pm.test('Check if object contains any NONE of the provided keys', function() {
    8. pm.expect({ a: 1, b: 2 }).to.not.have.any.keys('c', 'd');

    断言目标对象是否包含指定属性

    1. pm.test('Check if object contains the property', function() {
    2. pm.expect({ a: 1 }).to.have.property('a');
    3. });

    注意:

    1. 目标对象必须是 objectsetarraymap
    2. 如果 .keys 前面没有 .all.any,则默认为 .all
    3. 由于只有部分数据类型的目标对象可使用 .keys 方法,建议先用 .a方法断言数据类型。
    1. pm.test('Check if object contains all the keys', function() {
    2. pm.expect({ a: 1, b: 2 })
    3. .to.be.an('object')
    4. .that.has.all.keys('a', 'b');
    5. });

    断言目标对象的 length

    1. pm.test('Check the length of the target', function() {
    2. pm.expect('foo').to.have.lengthOf(3);
    3. });
    4. pm.test('Check the size of the target', function() {
    5. pm.expect([1, 2, 3]).to.have.lengthOf(2);
    6. });

    断言目标对象的成员 (members)

    1. pm.test('Check if the target has same members as the array set', function() {
    2. pm.expect([1, 2, 3]).to.have.members([2, 1, 3]);
    3. });

    注意:

    1. 默认情况下, .members 使用严格比较。
    2. members 的顺序不会影响结果。

    断言目标对象包含指定 item

    1. pm.test('Check if the target array includes the number provided', function() {
    2. pm.expect([1, 2, 3]).to.include(2);
    3. });
    4. pm.test(
    5. 'Check if the target object includes the properties provided',
    6. function() {
    7. pm.expect({ a: 1, b: 2, c: 3 }).to.include({ a: 1, b: 2 });
    8. },
    9. );

    示例: