空手道测试不一致通过或失败

问题描述 投票:-1回答:1

我在Gradle中使用空手道,并且具有8个功能文件,这些文件测试了Spring Boot API的读取/ GET功能。

我看到这些测试以某种相当随机的方式失败。失败与授权有关,但是我看不到任何错误。

这里是一个例子,

此失败

Feature: Get Objectives

  Background:
    * url baseUrl
    * def objectiveEndpoint = '/objectives'
    * header Authorization = token

  Scenario: Get an Objective that exists

    Given path objectiveEndpoint + '/37376564-3139-6232-2d66-6631392d3466'
    When method GET
    Then status 200
    And match response contains { objectiveId: '37376564-3139-6232-2d66-6631392d3466' }

并且通过

Feature: Get Assessments

  Background:
    * url baseUrl
    * def assessmentEndpoint = '/assessments'
    * header Authorization = token

  Scenario: Get an assessment that exists

    Given path assessmentEndpoint + '/2900b695-d344-4bec-b25d-524f6b22a93a'
    When method GET
    Then status 200
    And match response contains { odiAssessmentId: '2900b695-d344-4bec-b25d-524f6b22a93a' }

客观测试由于带有以下消息的401而失败:

com.intuit.karate.exception.KarateException: objectives-read.feature:12 - status code was: 401, expected: 200, response time: 74, url: http://localhost:8080/objectives/37376564-3139-6232-2d66-6631392d3466, response: {"path":"/objectives/37376564-3139-6232-2d66-6631392d3466","error":"Unauthorized","message":"Unauthorized","timestamp":"2020-06-02T08:04:57.231+0000","status":401}

评估考试通过。

我通过运行授权功能来获取令牌,并将结果存储到令牌变量中。

Auth功能是:

Feature: Log In

  Background:
    * url 'https://$URL/oauth/token'
    * def localSecret = secret
    * def localClientId = clientId

  Scenario: Get token
    Given url 'https://$URL/oauth/token'
    And form field grant_type = 'client_credentials'
    And form field client_id = localClientId
    And form field client_secret = localSecret
    And form field audience = 'http://localhost:8080'
    When method post
    Then status 200
    And match response contains { access_token: '#string' }
    And def access_token = $.access_token

然后我将令牌添加到配置中,并将其传递到每个测试中,如下所示:

var result = karate.callSingle('classpath:login.feature', config);
    config.token = 'Bearer ' + result.access_token;

我已经确认以上两个功能中使用的令牌有效。我已经用失败测试的输出中打印的令牌手动测试了我的API,当我在Postman中重新创建它们时,上述两个测试都可以正常工作。我的API似乎没有问题,因为如果我重新运行测试套件,则失败的测试会有所不同,并且在我的CI上,这些测试会生成绿色版本。

当像这样单独运行测试套件时,我都遇到了问题:

@Karate.Test
    Karate testAssessments() {
        return Karate.run().relativeTo(AssessmentsRunner.class);
    }

以及当我像这样并行运行所有测试时:

public class SpecTestParallel {
    public static void generateReport(String karateOutputPath) {
        Collection<File> jsonFiles = FileUtils.listFiles(new File(karateOutputPath), new String[]{"json"}, true);
        List<String> jsonPaths = new ArrayList(jsonFiles.size());
        jsonFiles.forEach(file -> jsonPaths.add(file.getAbsolutePath()));
        Configuration config = new Configuration(new File("target"), "Test API");
        ReportBuilder reportBuilder = new ReportBuilder(jsonPaths, config);
        reportBuilder.generateReports();
    }

    @Test
    void testParallel() {
        Results results = Runner.path("classpath:specTests").tags("~@ignore").parallel(5);
        generateReport(results.getReportDir());
        assertEquals(0, results.getFailCount(), results.getErrorMessages());
    }
}

以前有人遇到过类似的问题吗?

java integration-testing karate
1个回答
0
投票

事实证明,这是IntelliJ中的意外行为。

所以空手道似乎有重试政策。如果测试失败,它将重试几次。

当我使用IntelliJ中的测试运行器功能运行测试时,每次测试失败,IntelliJ都会将其记录在测试运行器窗口中,以进行失败的测试,但空手道会继续运行,重试并通过测试。我现在可以在报告中看到这一点,但是IntelliJ测试运行程序没有更新。

这会导致令人困惑的情况,即测试通过了,但似乎在本地失败,但是测试通过了CI。

这里是本地测试的示例:

local-tests

和在CI中传递的同一提交:

ci-tests

我真的不知道这里的解决办法,如果有的话。如果IntelliJ意识到了这种行为,那就很不错,或者空手道只能在处理完所有重试后才报告测试结果-现在,看起来像空手道在第一次测试运行后就报告了。

这真是令人困惑的几天。

© www.soinside.com 2019 - 2024. All rights reserved.