10

我正在尝试将 Jenkins xUnit 插件用于我的 Qt 单元测试项目,但我无法使其工作......

这是我到目前为止所做的:

首先,我使用 qmakebuilder 插件构建我的单元测试项目(向 qmakebuilder 插件提供 .pro),然后我添加一个Execute Shell构建部分,首先rm -f是 testResult xml 文件,然后运行测试带有标志的二进制-xunitxml文件让它为我生成 xml 文件我命名 xml 文件testResult.xml,换句话说:

rm -f /home/guest/QT/unitTest/testResult.xml
cd /home/guest/QT/unitTest
./tst_unittesttest -xunitxml > testResult.xml

最后在 Post Build Action 中,我选择Publish xUnit test result并将模式指定为*.xml.

但是,构建作业会失败,这是我在使用 Jenkins 构建作业时得到的输出:

[xUnit] [INFO] - Starting to record.
[xUnit] [INFO] - Processing QTestlib-Version N/A
[xUnit] [INFO] - [QTestlib-Version N/A] - 1 test report file(s) were found with
the pattern '*.xml' relative to '/home/guest/QT/unitTest' for the testing framework
'QTestlib-Version N/A'.
[xUnit] [ERROR] - The converted file for the result file '/home/guest/QT/unitTest
/testResult.xml' (during conversion process for the metric 'QTestlib') is not
valid.
The report file has been skipped.
[xUnit] [ERROR] - The plugin hasn't been performed correctly: hudson.util.IOException2:
Failed to read /home/guest/QT/unitTest/generatedJUnitFiles/QTestlib/TEST--735044756.xml
Build step 'Publish xUnit test result report' changed build result to FAILURE
Build step 'Publish xUnit test result report' marked build as failure
Finished: FAILURE

如您所见,将我的测试结果 xml 文件转换为 xUnit 插件可以读取的文件时出现问题。我的 testResult.xml 文件如下所示:

<?xml version="1.0" encoding="UTF-8" ?>
<testsuite errors="2" failures="0" tests="4" name="UnitTestTest">
  <properties>
    <property value="4.7.4" name="QTestVersion"/>
    <property value="4.7.4" name="QtVersion"/>
  </properties>
  <testcase result="pass" name="initTestCase">
    <!-- message="called before everything else" type="qdebug" -->
  </testcase>
  <testcase result="pass" name="myFirstTest"/>
  <testcase result="pass" name="mySecondTest"/>
  <testcase result="pass" name="cleanupTestCase">
    <!-- message="called after myFirstTest and mySecondTest" type="qdebug" -->
  </testcase>
  <system-err>
<![CDATA[called before everything else]]>
<![CDATA[called after myFirstTest and mySecondTest]]>
  </system-err>
</testsuite>

但是TEST--735044756.xml是一个单行 xml 文件:<?xml version="1.0" encoding="UTF-8"?>

任何人都知道我在哪里做错了什么?生成输出xml文件应该有问题。

另一方面,我在系统日志Jenkins菜单中添加了日志thingi,但这似乎不是这个问题的原因......至少IMO

4

1 回答 1

9

使用标志执行测试二进制文件-xml就可以了。奇怪地使用-xunitxml会创建损坏的 xml 文件,它<testcase>没有time属性。仅运行测试二进制文件并-xml成功构建作业。

于 2012-11-12T08:34:21.877 回答