gpt4 book ai didi

ant - 为 QUnit + PhantomJS + Jenkins 创建 report.xml 文件时遇到问题

转载 作者:行者123 更新时间:2023-12-02 01:41:06 25 4
gpt4 key购买 nike

我一直在尝试让 Jenkins 显示我正在使用 QUnit 测试的示例 js 项目的 JUnit 报告。到目前为止,我已经在互联网上搜索了点点滴滴,Running QUnit tests with Jenkins and Apache Ant?是我找到的最有帮助的帖子。

我可以确认:

  • 用户有足够的权限写入磁盘
  • 当我按照以下方式编写内容时,PhantomJS 可以从 shell 中 headless 地工作:

        [user@myserver PhantomJS]$ phantomjs phantomjs-runner/runner.js web/index.html 

    并显示:

    运行 6 次测试需要 8 毫秒。 6 人通过,0 人失败。

  • 当在浏览器中执行时,Qunit 确实可以工作并提供测试结果

我仍然无法生成 report.xml 以将其提供给 Jenkins。下面是我添加到我的 build.xml 文件中的目标:

    <target name="qunit" description="runs QUnit tests using PhantomJS">
<!-- QUnit Javascript Unit Tests -->
<echo message="Executing QUnit Javascript Unit Tests..."/>
<apply executable="/usr/local/CI/phantomjs/bin/phantomjs" >
<arg value="/usr/local/CI/phantomjs-runner/runner.js" />
<arg line="--qunit /usr/local/CI/jenkins/workspace/PhantomJS/web/js/qunit-1.17.1.js --tests /usr/local/CI/jenkins/workspace/PhantomJS/web/index.html --junit /usr/local/CI/jenkins/workspace/PhantomJS/test-results/report.xml" />
<fileset dir="${basedir}/web/" includes="/js/prettydate.js" />
<srcfile/>
</apply>
<echo message="Tests complete..."/>
</target>

在 Jenkins 中编译项目会得到以下输出:

? PhantomJS/result.xml ? PhantomJS/test-results Using locally configured password for connection to :pserver:user@server:/cvsroot cvs rlog -S -d18 Feb 2015 15:49:54 +0000<18 Feb 2015 15:51:40 +0000 QUnit_Jenkins [PhantomJS] $ /usr/local/CI/ant/bin/ant qunit Buildfile: /usr/local/CI/jenkins/workspace/PhantomJS/build.xml

qunit: [echo] Executing QUnit Javascript Unit Tests... [echo] Tests complete...

BUILD SUCCESSFUL Total time: 0 seconds Recording test results Test reports were found but none of them are new. Did tests run? For example, /usr/local/CI/jenkins/workspace/PhantomJS/test-results/report.xml is 4 hr 18 min old

Build step 'Publish JUnit test result report' changed build result to FAILURE Finished: FAILURE

您可能会注意到,jenkins 找不到更新的 report.xml 文件,因为根本没有生成任何文件。

你能观察到我的 build.xml 中有什么错误吗?如果没有,有什么想法和提示可以帮助我生成 result.xml 文件吗?

最佳答案

我通过以下步骤找到了我的答案的解决方案:

1) 添加了 <script src="js/qunit-reporter-junit.js"></script>因为需要生成报告。确保您还包含 qunit.js 库。我用了qunit-1.17.1.js

2) 我将以下代码放在测试我的 js 代码的 html 文件中:

<script>
QUnit.jUnitReport = function(report) {
console.log(report.xml)
};
</script>

3) 我在 build.xml 文件中添加了 Ant 代码:

    <target name="build" description="runs QUnit tests using PhantomJS">
<!-- Clean up output directory -->
<delete dir="./build/qunit"/>
<mkdir dir="./build/qunit"/>
<!-- QUnit Javascript Unit Tests -->
<echo message="Executing QUnit Javascript Unit Tests..."/>
<exec executable="/usr/local/CI/phantomjs/bin/phantomjs" output="./build/qunit/qunit-results.xml">
<arg value="/usr/local/CI/phantomjs-runner/runner-muted.js"/>
<arg value="./web/index.html"/>
</exec>
</target>

您会注意到我将 runner.js 的名称更改为 runner-muted.js 之所以如此,是因为我对 runner.js 进行了更改以不将其输出包含到 xml 文件中,因为这使得它不可读 Jenkins 。为此:

  1. cp/usr/local/CI/phantomjs-runner/runner.js/usr/local/CI/phantomjs-runner/runner-muted.js
  2. 查找并注释掉在 QUnit.done 和 QUnit.testDone 下发现的 console.log 事件,以使运行器静音,不显示其自己的测试运行结果。
  3. 确保您在 Jenkins 中选择了生成的 xml 文件的正确路径。

我希望这能帮助任何试图让它工作的人

关于ant - 为 QUnit + PhantomJS + Jenkins 创建 report.xml 文件时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28588380/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com