2

我有一个小的 Jenkins 管道,它依次测试不同的 Postman 集合,然后我将单个 XML 文件合并为一个,然后将它们传递给 Jenkins。

管道片段:

...
steps {
  script {
    try {
        sh '(cd ./integrativeTests/collections && rm -rf *.xml)'
        sh '(cd ./integrativeTests/collections && npm run tests-all)'

        sh '''
        cd ./integrativeTests/collections

        echo '<?xml version="1.0" encoding="UTF-8"?>' > newman_dev_results.xml
        echo '<testsuites>' >> newman_dev_results.xml

        for f in COLLECTION-*.xml
        do
          echo $(sed 1,$(expr $(grep -m1 -n "<testsuite" ${f} | cut -f1 -d:) - 1)d ${f}) >> newman_dev_results.xml
        done

        echo '</testsuites>' >> newman_dev_results.xml
        cat newman_dev_results.xml
        '''

        sh '(cp ./integrativeTests/collections/newman_dev_results.xml ./newman_results.xml)'
        currentBuild.result = 'SUCCESS'
    } catch(Exception e) {
        currentBuild.result = 'FAILURE'
    }
    junit 'newman_results.xml'
  }
}
...

生成的 XML 如下所示:

xml截图

但遗憾的是,我在 Jenkins 日志中收到了一个错误:

ERROR: None of the test reports contained any result
Finished: FAILURE

对于 Jenkins 具有多个集合的测试结果,正确的 xml 布局是什么,或者如何将多个测试结果传递给 Jenkins?

4

1 回答 1

3

正如在Junit Plugin 的官方文档中发现的那样,我不需要自己组合所有 xml 并传递单个文件。我只需要使用通配符一次传递所有 XML。

管道:

...
steps {
    script {
        try {
            sh '(cd ./integrativeTests/collections && npm run tests-all)'
            currentBuild.result = 'SUCCESS'
        } catch(Exception e) {
            currentBuild.result = 'FAILURE'
        }
        sh 'junit-viewer --results=./integrativeTests/collections --save=result.html'
        archiveArtifacts artifacts: 'result.html', fingerprint: true
        junit '**/integrativeTests/collections/COLLECTION-*.xml'
    }
}
...
于 2018-03-26T12:59:01.950 回答