1

我试图弄清楚如何通过 Cucumber 自动化脚本自动更新 Rally 中测试用例的测试用例结果。我希望能够运行我的测试脚本,然后它将自动将 Rally 中的测试用例结果更新为通过或失败。

有没有办法用 Cucumber 做到这一点?我将 Cucumber 与 TestNG 和 Rest Assured 一起使用。

4

1 回答 1

1

如果您正在使用TestNG 的 BDD 的 QAF 扩展,它提供了一种您的测试结果与测试管理工具集成的方法,方法是提供TestCaseResultUpdator. 在您的测试用例或场景中,您需要从测试管理工具中提供测试用例 ID,并调用 api 来更新该测试用例的测试结果。QAF 支持gherkin,但 gherking 不支持自定义元数据。您可以使用BDD2,它是一组超级黄瓜,您的场景可能如下所示:

@smoke @RallyId:TC-12345
Scenario:  A scenario

    Given step represents a precondition to an event
    When step represents the occurrence of the event
    Then step represents the outcome of the event

在上面的示例中,假设RallyId表示测试管理工具中的测试用例 id。您可以在实现结果更新器时使用它。

package example;
...
public class RallyResultUpdator implements TestCaseResultUpdator{

   @Override
   public String getToolName() {
    return "Rally";
   }

   /**
    * This method will be called by result updator after completion of each testcase/scenario.
    * @param params
    *            tescase/scenario meta-data including method parameters if any
    * @param result
    *            test case result
    * @param details
    *            run details
    * @return
    */

   @Override
   public boolean updateResult(Map<String, ? extends Object> metadata,
        TestCaseRunResult result, String details) {

    String tcid = metadata.get("RallyId");
    // Provide test management tool specific implemeneation/method calls

    return true;
   }
}

如下注册您的更新程序:

result.updator=example.RallyResultUpdator

结果更新器将在测试用例完成时由 qaf 自动调用,并将在单独的线程中运行,因此您的测试执行无需等待。

于 2019-04-09T16:02:27.197 回答