I have Hudson as continuous integration server and I want to use option 'Publish JUnit test result report'. But I don't use xUnit tools for testing, instead of that i have shell scripts which run tests and return results in simple format. I thinking to make script which transforms these results to JUnit format. So i'm interesting how JUnit file must looks?

link|improve this question

38% accept rate
Any reason to not use JUnit? These tests can be automated in a variety of fashions via a variety of tools cmd, UI, etc... – Aaron McIver Feb 7 '11 at 15:16
@AaronMcIver: Shell scripts are pretty good at running tests on (language that is not Java). How would you use JUnit for that? – Ben Voigt Nov 8 '11 at 19:29
@BenVoigt I had initially assumed the OP had Java involved and was looking to bypass JUnit as the testing harness. This is most likely not the case after reviewing the question. It appears that code.google.com/p/shell2junit may provide some use to the OP after a second look. – Aaron McIver Nov 8 '11 at 19:49
feedback

3 Answers

I did a similar thing a few months ago, and it turned out this simple format was enough for Hudson to accept it as a test protocol:

<testsuite>
     <testcase classname="foo" name="ASuccessfulTest"/>
     <testcase classname="foo" name="AnotherSuccessfulTest"/>
     <testcase classname="foo" name="AFailingTest">
          <failure type="NotEnoughFoo"> details about failure </failure>
     </testcase>
 </testsuite>

This question has answers with more details: Spec. for JUnit XML Output

link|improve this answer
Please make a correction to this answer, because xunit plugin rejects the 'classname' attribute and accepts just 'class' – andho Nov 5 '11 at 7:45
1  
i had the opposite issue. class was rejected and only classname worked. – ryanbrainard Feb 9 at 18:35
feedback

I just grabbed the junit-4.xsd that others have linked to and used a tool named XMLSpear to convert the schema to a blank XML file with these options. This was the result:

<?xml version="1.0" encoding="UTF-8"?>
<testsuites disabled="" errors="" failures="" name="" tests="" time="">
    <testsuite disabled="" errors="" failures="" hostname="" id=""
        name="" package="" skipped="" tests="" time="" timestamp="">
        <properties>
            <property name="" value=""/>
            <property name="" value=""/>
        </properties>
        <testcase assertions="" classname="" name="" status="" time="">
            <skipped/>
            <error message="" type=""/>
            <error message="" type=""/>
            <failure message="" type=""/>
            <failure message="" type=""/>
            <system-out/>
            <system-out/>
            <system-err/>
            <system-err/>
        </testcase>
        <testcase assertions="" classname="" name="" status="" time="">
            <skipped/>
            <error message="" type=""/>
            <error message="" type=""/>
            <failure message="" type=""/>
            <failure message="" type=""/>
            <system-out/>
            <system-out/>
            <system-err/>
            <system-err/>
        </testcase>
        <system-out/>
        <system-err/>
    </testsuite>
    <testsuite disabled="" errors="" failures="" hostname="" id=""
        name="" package="" skipped="" tests="" time="" timestamp="">
        <properties>
            <property name="" value=""/>
            <property name="" value=""/>
        </properties>
        <testcase assertions="" classname="" name="" status="" time="">
            <skipped/>
            <error message="" type=""/>
            <error message="" type=""/>
            <failure message="" type=""/>
            <failure message="" type=""/>
            <system-out/>
            <system-out/>
            <system-err/>
            <system-err/>
        </testcase>
        <testcase assertions="" classname="" name="" status="" time="">
            <skipped/>
            <error message="" type=""/>
            <error message="" type=""/>
            <failure message="" type=""/>
            <failure message="" type=""/>
            <system-out/>
            <system-out/>
            <system-err/>
            <system-err/>
        </testcase>
        <system-out/>
        <system-err/>
    </testsuite>
</testsuites>
link|improve this answer
feedback

The top answer of the question Anders Lindahl refers to an xsd file. Personally I found this xsd file also very useful (I don't remember how I found that one). It looks a bit less intimidating, and as far as I used it, all the elements and attributes seem to be recognized by Jenkins (v1.451)

One thing though: when adding multiple <failure ... elements, only one was retained in Jenkins. When creating the xml file, I now concatenate all the failures in one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.