如何解析JUnit结果xml文件并在java代码中获取testcase?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解析JUnit结果xml文件并在java代码中获取testcase?相关的知识,希望对你有一定的参考价值。
使用类Test_XyzDymanic中的@TestFactory,方法testXyzDymanicallly和自定义Suite.xml实现了动态JUnit5测试,以添加在运行时解析的多个测试用例。
根据Suite.xml中的情况,将获取两个映射mapExpected和mapAcutal,将其作为assertIterableEquals(mapExpected.entrySet(),mapAcutal.entrySet())进行比较
使用Ant构建调用Junit并在result.xml中保存输出。
执行后,一些测试用例失败(当然),Junit在控制台上只打印一行,这不足以了解原因。因此,如在junit的测试用例中,让ReportGenerator根据更细微的参数生成excel文件。
查询:对于失败的测试用例,想要运行ReportGenerator但不知道如何从Java代码中的result.xml读取失败的测试用例。 Junit是否提供任何类和解析方法来读取预定义PoJo中的result.xml?或者我们可以从蚂蚁那里读取和发送参数吗?
蚂蚁目标:
<target name="test-dynamic" depends="test-compile" description="Run JUnit tests">
<junit printsummary="true" haltonerror="no" haltonfailure="no" dir="${test.bin}" fork="true">
<sysproperty key="suite" value="${suite.xml}" />
<classpath refid="junit5.jars" />
<test name="Test_XyzDymanic" outfile="${result}" failureproperty="test.failed">
<formatter type="xml" />
<formatter usefile="false" type="brief" />
</test>
</junit>
</target>
<target name="fail-report">
<echo message="One or more test(s) failed. Generating faliur analysis report..." />
<java classname="report.ReportGenerator" failonerror="no"/>
</target>
为result.xml:
...
<property name="sun.arch.data.model" value="32" />
</properties>
<testcase classname=")" name="Case: default case(testXyzDymanicallly" time="10.245">
<failure message="iterable contents differ at index [75], expected: <PropX.ShortName=NameXyz> but was: <PropX.ShortName=NameAbc>" type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError: iterable contents differ at index [75], expected: <PropX.ShortName=NameXyz> but was: <PropX.ShortName=NameAbc>
at Test_XyzDynamic.lambda$null$2(Test_XyzDynamic.java:41)
at java.util.Optional.ifPresent(Optional.java:159)
at java.util.ArrayList.forEach(ArrayList.java:1257)
at java.util.ArrayList.forEach(ArrayList.java:1257)
</failure>
</testcase>
ReportGenerator
class ReportGenerator{
main(String args){}
generate(){}
}
尝试:
为result.xml:
<property name="sun.arch.data.model" value="32" />
</properties>
<testcase classname=")" name="testcase1" time="9.596" />
<testcase classname=")" name="testcase2" time="5.702">
<failure message="msg1" type="type1">
desc 11111
</failure>
</testcase>
<testcase classname=")" name="testcase3" time="5.656">
<failure message="msg2" type="type2">
desc 22222
</failure>
</testcase>
<testcase classname="junit.framework.JUnit4TestCaseFacade" name="JUnit Vintage" time="0.003" />
于:
<xmlproperty file="result.xml" keeproot="false" />
<target name="main">
<echo>1. ${testcase}</echo>
<echo>2. ${testcase(name)}</echo>
<echo>3. ${testcase.failure}</echo>
<echo>4. ${testcase.failure(type)}</echo>
<echo>5. ${testcase.failure(message)}</echo>
</target>
输出:
main:
[echo] 1. ,
[echo] 2. testcase1,testcase2,testcase3,JUnit Vintage
[echo] 3. desc 11111,desc 22222
[echo] 4. type1,type2
[echo] 5. msg1,msg2
查询:在控制台输出中,echo 2有testcase1,testcase2,testcase3,JUnit Vintage
,但我想要testcase2,testcase3
,因为只有这两个测试用例根据result.xml有失败标记。
而不是努力在ant
中读取xml,将文件作为参数发送到主类并像其他任何xml一样解析文件并处理所需的值。
以上是关于如何解析JUnit结果xml文件并在java代码中获取testcase?的主要内容,如果未能解决你的问题,请参考以下文章
OutOfMemoryError 异常:Java 堆空间,如何调试...?
如何在解析后获取xml文件的元素并在iPhone程序中对其进行验证