This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

copy from one xml to another


Hello,

We use JunitReport to generate xml testresults. For this case we have one
main class which gets data from a xml file. The output looks like this:

<testsuites>
 <testcase name="testGeneric" time="1.391"></testcase>

 <testcase name="testGeneric" time="0.937"></testcase>
</testsuites>

instead of "testGeneric" should be some data from another file.


The data.xml holds this information:

<Workflow>
<TestCase>

<Action>com.poet.ess.qa.extendedtests.testclasses.company.CreateCompany</Action>
            <UserID>admin</UserID>
            <DataID>CPQ_EMEA</DataID>
</TestCase>
<TestCase>

<Action>com.poet.ess.qa.extendedtests.testclasses.company.CreateUser</Action>
            <UserID>admin</UserID>
            <DataID>EUCO_100</DataID>
</TestCase>
</Workflow>


I need to write a stylesheet which combines the first and the second one:
(eg writes the information from <Action> into  <testcase name="">>


 <testcase name="CreateCompany" time="1.391"></testcase>
 <testcase name="CreateUser" time="1.391"></testcase>

The order is the same.

Any ideas?

Thanks!

erik Stunkat
POET Software


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]