Как вывести только последний дублирующий узел В верхнем / родительском элементе, используя XSLT 1.0?Я использую процессор xsltproc.
Input.xml
<testng-results>
<suite>
<test>
<class name="system.apps.CreateTerritory">
<test-method status="PASS" name="initTest" is-config="true"> </test-method>
<test-method status="FAIL" name="ABC"> </test-method>
</class>
<class name="system.apps.CreateAccount">
<test-method status="PASS" name="initTest" is-config="true"> </test-method>
<test-method status="SKIP" name="DEF"> </test-method>
<test-method status="PASS" name="initTest" is-config="true"> </test-method>
<test-method status="FAIL" name="DEF"> </test-method>
</class>
<class name="system.apps.CreateProposal">
<test-method status="PASS" name="initTest" is-config="true"> </test-method>
<test-method status="SKIP" name="DEF"> </test-method>
<test-method status="PASS" name="initTest" is-config="true"> </test-method>
<test-method status="FAIL" name="DEF"> </test-method>
</class>
</test>
</suite>
</testng-results>
My Current XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:str="http://exslt.org/strings" extension-element-prefixes="str" version="1.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:key name="test-by-name" match="test-method[not(@is-config)]" use="@name" />
<xsl:template match="/">
<Suite>
<xsl:for-each select="testng-results/suite/test/class">
<xsl:for-each select="test-method[not(@is-config)][count(. | key('test-by-name', @name)[last()]) = 1]">
<Test>
<Class_Name>
<xsl:value-of select="../@name"/>
</Class_Name>
<Method_Name>
<xsl:value-of select="@name"/>
</Method_Name>
<Status>
<xsl:value-of select="@status"/>
</Status>
</Test>
</xsl:for-each>
</xsl:for-each>
</Suite>
</xsl:template>
</xsl:stylesheet>
Примечание: я не могу изменить способ выполнения вложенного соответствия(для каждого класса, а затем для каждого метода тестирования, так как мне нужно быть таким по другим причинам)
Current Output.xml (проблема заключается в том, что двуличность проверяется по классам вместо того,класс):
<?xml version="1.0" encoding="UTF-8"?>
<Suite>
<Test>
<Class_Name>system.apps.CreateTerritory</Class_Name>
<Method_Name>ABC</Method_Name>
<Status>FAIL</Status>
</Test>
<Test>
<Class_Name>system.apps.CreateProposal</Class_Name>
<Method_Name>DEF</Method_Name>
<Status>FAIL</Status>
</Test>
</Suite>
Ожидаемый файл Output.xml (выводится только последний узел для каждого дублирующего метода тестирования В ЭТОМ КЛАССЕ):
<?xml version="1.0" encoding="UTF-8"?>
<Suite>
<Test>
<Class_Name>system.apps.CreateTerritory</Class_Name>
<Method_Name>ABC</Method_Name>
<Status>FAIL</Status>
</Test>
<Test>
<Class_Name>system.apps.CreateAccount</Class_Name>
<Method_Name>DEF</Method_Name>
<Status>FAIL</Status>
</Test>
<Test>
<Class_Name>system.apps.CreateProposal</Class_Name>
<Method_Name>DEF</Method_Name>
<Status>FAIL</Status>
</Test>
</Suite>