使用@TestFactory在类 Test_XyzDymanic ,方法 testXyzDymanicallly 和自定义Suite.xml中添加了JUnit5测试,以添加多个正在测试的用例在运行时解析。
根据Suite.xml中的案例,正在获取两个地图 mapExpected 和 mapAcutal ,它们被比较为 assertIterableEquals (mapExpected.entrySet( ),mapAcutal.entrySet())
使用 Ant 构建调用Junit,并将输出保存在 result.xml 中。
执行某些测试用例后(当然)失败了,Junit在控制台上仅打印一行,这不足以了解原因。 因此,请使用 ReportGenerator ,它可以根据更薄的参数生成Excel文件,就像在junit的测试用例中一样。
查询: 对于失败的测试用例,请运行 ReportGenerator ,但不知道如何从Java代码的 result.xml 中读取失败的测试用例。 Junit是否提供任何类和解析方法来读取预定义的PoJo中的 result.xml ?还是我们可以从ant读取并作为参数发送?
蚂蚁目标:
<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
查询:
在控制台输出中,回显2具有testcase1,testcase2,testcase3,JUnit Vintage
,但我想要testcase2,testcase3
,因为根据result.xml,只有这两个测试用例具有失败标记。
答案 0 :(得分:0)
与其尽力读取ant
中的xml,而不是像其他xml一样将文件作为参数发送到主类并解析文件并处理所需的值。