如何在 Postman 中获取测试状态(即通过、失败或错误)?

How to get the status of test(i.e. pass or fail or error) in Postman?

这是我在 postman 中的测试用例

pm.test("verify the JSON object keys for machines - ", function() {
    if (Object.keys(data).length === 0) {
        pm.expect(Object.keys(data).length).to.eq(0);
    }
}

现在如果这个测试的状态是PASS那么我不想执行下一个测试用例 但是如果状态是 FAIL 那么应该执行下一个测试用例 下一个测试用例是 -

pm.test("verify the JSON object keys for machines- ", function() {
        pm.expect(data[1]).to.have.property('timeStamp');
    }

按理说需要"OR"这个功能,但是postman里面没有这个功能。我的建议是获取 true/false 结果,然后与邮递员核实。

pm.test("verify the JSON object keys for machines - ", function() {
    const result = 
        Object.keys(data).length === 0 || // true if there are no properties in the data object
        'timeStamp' in data; // or true if there is timeStamp property in the data object
    
    pm.expect(lengthEqualZero || hasPropertyTimeStamp).to.be.true;
}

也许这可以通过以编程方式跳过测试来实现。这是语法

(condition ? skip : run)('name of your test', () => {

});

取一个变量,如果第一个测试的结果通过则更新它

var skipTest = false;

pm.test("verify the JSON object keys for machines - ", function() {
    if (Object.keys(data).length === 0) {
        pm.expect(Object.keys(data).length).to.eq(0);
        skipTest = true // if the testcase is failed, this won't be updated
    }
}

(skipTest ? pm.test.skip : pm.test)("verify timeStamp keys for machines-", () => {
     pm.expect(data[1]).to.have.property('timeStamp');
});

跳过结果

没有跳过的结果