1

我们的团队希望自动化我们的 REST API 测试。现在,我们有一个 Postman 请求的集合,并让他们手动跳过这些请求。

我们可以为每个测试场景创建一个集合/文件夹,但这意味着大量的重复。我们的 API 仍在大力开发中,我真的不想在更改后的 20 个地方修复相同的东西。

我希望每个端点请求在一个集合中只有一次,并且某种独立的逻辑可以以任意顺序执行它们。我知道 Postman不支持以任何干净的方式重用请求,所以我正在寻找至少一种 hacky 方式来做到这一点。

4

1 回答 1

5

创建一个文件以加载到 Postman Collection Runner 中,其结构如下:

[{
    "testSequence": ["First request name", "Second request name", "..." ],
    "anyOtherData":  "Whatever the request needs",
    "evenMoreData":  "Whatever the request needs",
    "...":           "..."
},{
    "testSequence": ["Login", "Check newsfeed", "Send a picture", "Logout" ],
    "username":  "Example",
    "password":  "correcthorsebatterystaple",
},{
    "...": "keep the structure for any other test scenario or request sequence"
}]

将所有测试序列放入该文件中,然后让 Postman 在每个请求后检查列表并决定下一步执行什么。这可以在整个集合的“测试块”中完成:

// Use the mechanism only if there is a test scenario file
// This IF prevents the block from firing when running single requests in Postman
if (pm.iterationData.get("testSequence")) {

    // Is there another request in the scenario?
    var sequence = pm.globals.get("testSequence");
    if ((sequence instanceof Array) && (sequence.length > 0)) {

        // If so, set it as the next one
        var nextRequest = sequence.shift();
        pm.globals.set("testSequence", sequence);
        postman.setNextRequest(nextRequest);

    } else {
        // Otherwise, this was the last one. Finish the execution.
        postman.setNextRequest(null);
    }
}

如果您的请求需要在不同的运行期间使用不同的数据,您可以在输入文件中定义数据并将它们用作请求中的变量

于 2018-05-21T13:04:48.590 回答