5af9256d4f
* Cleaned up JUnit report generation on install The generation of a JUnit report was previously part of the install command. This commit factors the logic into its own module, and uses a template for the generation of the report. It also improves report generation, that now can deal with multiple specs installed at once. Finally, extending the list of supported formats is much easier than before, as it entails just writing a new template. * Polished report generation + added tests for failures and errors The generation of a JUnit report has been polished, so that the stacktrace is correctly displayed with Jenkins JUnit plugin. Standard error is still not used. Added unit tests to cover for installation failures and installation errors.
51 lines
1.4 KiB
XML
51 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
This file has been modeled after the basic
|
|
specifications at this url:
|
|
|
|
http://help.catchsoftware.com/display/ET/JUnit+Format
|
|
-->
|
|
<testsuites>
|
|
{% for suite in test_suites %}
|
|
<testsuite name="{{ suite.name }}"
|
|
errors="{{ suite.nerrors }}"
|
|
tests="{{ suite.ntests }}"
|
|
failures="{{ suite.nfailures }}"
|
|
time="{{ suite.time }}"
|
|
timestamp="{{ suite.timestamp }}" >
|
|
<properties>
|
|
{% for property in suite.properties %}
|
|
<property name="{{ property.name }}" value="{{ property.value }}" />
|
|
{% endfor %}
|
|
</properties>
|
|
{% for test in suite.testcases %}
|
|
<testcase classname="{{ test.name }}"
|
|
name="{{ test.id }}"
|
|
time="{{ test.elapsed_time }}">
|
|
{% if test.result == 'failure' %}
|
|
<failure message="{{ test.message }}">
|
|
{{ test.exception }}
|
|
</failure>
|
|
{% elif test.result == 'error' %}
|
|
<error message="{{ test.message }}">
|
|
{{ test.exception }}
|
|
</error>
|
|
{% elif test.result == 'skipped' %}
|
|
<skipped />
|
|
{% endif %}
|
|
{% if test.stdout %}
|
|
<system-out>
|
|
{{ test.stdout }}
|
|
</system-out>
|
|
{% endif %}
|
|
{% if test.stderr %}
|
|
<system-err>
|
|
{{ test.stderr }}
|
|
</system-err>
|
|
{% endif %}
|
|
</testcase>
|
|
{% endfor %}
|
|
{# Add an error tag? #}
|
|
</testsuite>
|
|
{% endfor %}
|
|
</testsuites>
|