У меня есть Hudson как непрерывный сервер интеграции, и я хочу использовать опцию "Опубликовать отчет о результатах теста JUnit". Но я не использую инструменты xUnit для тестирования, вместо этого у меня есть сценарии оболочки, которые запускают тесты и возвращают результаты в простом формате. Я собираюсь сделать script, который преобразует эти результаты в формат JUnit. Итак, мне интересно, как должен выглядеть файл JUnit?
Какова спецификация формата JUnit XML, поддерживаемая Hudson?
Ответ 1
Я сделал аналогичную вещь несколько месяцев назад, и оказалось, что этого простого формата было достаточно, чтобы Хадсон принял его в качестве тестового протокола:
<testsuite tests="3">
<testcase classname="foo1" name="ASuccessfulTest"/>
<testcase classname="foo2" name="AnotherSuccessfulTest"/>
<testcase classname="foo3" name="AFailingTest">
<failure type="NotEnoughFoo"> details about failure </failure>
</testcase>
</testsuite>
У этого вопроса есть ответы с более подробной информацией: Spec. для JUnit XML Output
Ответ 2
Я просто схватил junit-4.xsd, с которыми другие привязали и использовали инструмент с именем XMLSpear, чтобы преобразовать схему в пустой XML файл с параметрами, показанными ниже. Это результат (слегка очищенный):
<?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=""/>
</properties>
<testcase assertions="" classname="" name="" status="" time="">
<skipped/>
<error message="" type=""/>
<failure message="" type=""/>
<system-out/>
<system-err/>
</testcase>
<system-out/>
<system-err/>
</testsuite>
</testsuites>
Некоторые из этих элементов могут возникать несколько раз:
- Может быть только один элемент
testsuites
, так как это как работает XML, но в элементеtestsuites
может быть несколько элементовtestsuite
. - Каждый элемент
properties
может иметь несколько дочерних элементовproperty
. - Каждый элемент
testsuite
может иметь несколько дочерних элементовtestcase
. - Каждый элемент
testcase
может иметь несколько дочерних элементовerror
,failure
,system-out
илиsystem-err
.
Ответ 3
главный ответ вопроса Андерс Линдал ссылается на xsd file.
Лично я нашел этот xsd файл также очень полезен (я не помню, как я нашел этот). Это выглядит немного менее устрашающе, и, насколько я использовал его, все элементы и атрибуты, по-видимому, распознаются Дженкинсом (v1.451)
Одна вещь: при добавлении нескольких элементов <failure ...
только один был сохранен в Дженкинсе. При создании xml файла я теперь объединяю все отказы в одном.
Обновление 2016-11 Теперь ссылка нарушена. Лучшей альтернативой является эта страница из кубика: JUnit XML-формат файла отчетов, где были предприняты большие усилия, чтобы обеспечить разумный документированный пример. Пример и xsd копируются ниже, но их страница выглядит лучше.
образец файла JUnit XML
<?xml version="1.0" encoding="UTF-8"?>
<!-- a description of the JUnit XML format and how Jenkins parses it. See also junit.xsd -->
<!-- if only a single testsuite element is present, the testsuites
element can be omitted. All attributes are optional. -->
<testsuites disabled="" <!-- total number of disabled tests from all testsuites. -->
errors="" <!-- total number of tests with error result from all testsuites. -->
failures="" <!-- total number of failed tests from all testsuites. -->
name=""
tests="" <!-- total number of successful tests from all testsuites. -->
time="" <!-- time in seconds to execute all test suites. -->
>
<!-- testsuite can appear multiple times, if contained in a testsuites element.
It can also be the root element. -->
<testsuite name="" <!-- Full (class) name of the test for non-aggregated testsuite documents.
Class name without the package for aggregated testsuites documents. Required -->
tests="" <!-- The total number of tests in the suite, required. -->
disabled="" <!-- the total number of disabled tests in the suite. optional -->
errors="" <!-- The total number of tests in the suite that errored. An errored test is one that had an unanticipated problem,
for example an unchecked throwable; or a problem with the implementation of the test. optional -->
failures="" <!-- The total number of tests in the suite that failed. A failure is a test which the code has explicitly failed
by using the mechanisms for that purpose. e.g., via an assertEquals. optional -->
hostname="" <!-- Host on which the tests were executed. 'localhost' should be used if the hostname cannot be determined. optional -->
id="" <!-- Starts at 0 for the first testsuite and is incremented by 1 for each following testsuite -->
package="" <!-- Derived from testsuite/@name in the non-aggregated documents. optional -->
skipped="" <!-- The total number of skipped tests. optional -->
time="" <!-- Time taken (in seconds) to execute the tests in the suite. optional -->
timestamp="" <!-- when the test was executed in ISO 8601 format (2014-01-21T16:17:18). Timezone may not be specified. optional -->
>
<!-- Properties (e.g., environment settings) set during test
execution. The properties element can appear 0 or once. -->
<properties>
<!-- property can appear multiple times. The name and value attributres are required. -->
<property name="" value=""/>
</properties>
<!-- testcase can appear multiple times, see /testsuites/[email protected] -->
<testcase name="" <!-- Name of the test method, required. -->
assertions="" <!-- number of assertions in the test case. optional -->
classname="" <!-- Full class name for the class the test method is in. required -->
status=""
time="" <!-- Time taken (in seconds) to execute the test. optional -->
>
<!-- If the test was not executed or failed, you can specify one
the skipped, error or failure elements. -->
<!-- skipped can appear 0 or once. optional -->
<skipped/>
<!-- Indicates that the test errored. An errored test is one
that had an unanticipated problem. For example an unchecked
throwable or a problem with the implementation of the
test. Contains as a text node relevant data for the error,
for example a stack trace. optional -->
<error message="" <!-- The error message. e.g., if a java exception is thrown, the return value of getMessage() -->
type="" <!-- The type of error that occured. e.g., if a java execption is thrown the full class name of the exception. -->
></error>
<!-- Indicates that the test failed. A failure is a test which
the code has explicitly failed by using the mechanisms for
that purpose. For example via an assertEquals. Contains as
a text node relevant data for the failure, e.g., a stack
trace. optional -->
<failure message="" <!-- The message specified in the assert. -->
type="" <!-- The type of the assert. -->
></failure>
<!-- Data that was written to standard out while the test was executed. optional -->
<system-out></system-out>
<!-- Data that was written to standard error while the test was executed. optional -->
<system-err></system-err>
</testcase>
<!-- Data that was written to standard out while the test suite was executed. optional -->
<system-out></system-out>
<!-- Data that was written to standard error while the test suite was executed. optional -->
<system-err></system-err>
</testsuite>
</testsuites>
Файл JUnit XSD
<?xml version="1.0" encoding="UTF-8" ?>
<!-- from https://svn.jenkins-ci.org/trunk/hudson/dtkit/dtkit-format/dtkit-junit-model/src/main/resources/com/thalesgroup/dtkit/junit/model/xsd/junit-4.xsd -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="failure">
<xs:complexType mixed="true">
<xs:attribute name="type" type="xs:string" use="optional"/>
<xs:attribute name="message" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="error">
<xs:complexType mixed="true">
<xs:attribute name="type" type="xs:string" use="optional"/>
<xs:attribute name="message" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="properties">
<xs:complexType>
<xs:sequence>
<xs:element ref="property" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="property">
<xs:complexType>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="value" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="skipped" type="xs:string"/>
<xs:element name="system-err" type="xs:string"/>
<xs:element name="system-out" type="xs:string"/>
<xs:element name="testcase">
<xs:complexType>
<xs:sequence>
<xs:element ref="skipped" minOccurs="0" maxOccurs="1"/>
<xs:element ref="error" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="failure" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="system-out" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="system-err" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="assertions" type="xs:string" use="optional"/>
<xs:attribute name="time" type="xs:string" use="optional"/>
<xs:attribute name="classname" type="xs:string" use="optional"/>
<xs:attribute name="status" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="testsuite">
<xs:complexType>
<xs:sequence>
<xs:element ref="properties" minOccurs="0" maxOccurs="1"/>
<xs:element ref="testcase" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="system-out" minOccurs="0" maxOccurs="1"/>
<xs:element ref="system-err" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="tests" type="xs:string" use="required"/>
<xs:attribute name="failures" type="xs:string" use="optional"/>
<xs:attribute name="errors" type="xs:string" use="optional"/>
<xs:attribute name="time" type="xs:string" use="optional"/>
<xs:attribute name="disabled" type="xs:string" use="optional"/>
<xs:attribute name="skipped" type="xs:string" use="optional"/>
<xs:attribute name="timestamp" type="xs:string" use="optional"/>
<xs:attribute name="hostname" type="xs:string" use="optional"/>
<xs:attribute name="id" type="xs:string" use="optional"/>
<xs:attribute name="package" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="testsuites">
<xs:complexType>
<xs:sequence>
<xs:element ref="testsuite" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="optional"/>
<xs:attribute name="time" type="xs:string" use="optional"/>
<xs:attribute name="tests" type="xs:string" use="optional"/>
<xs:attribute name="failures" type="xs:string" use="optional"/>
<xs:attribute name="disabled" type="xs:string" use="optional"/>
<xs:attribute name="errors" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
</xs:schema>
Ответ 4
Я не мог найти никакой хорошей информации об этом, поэтому я сделал несколько проб и ошибок. Следующие атрибуты и поля (и только они) распознаются Дженкинсом (v1.585).
<?xml version="1.0" encoding="UTF-8"?>
<testsuite>
<!-- if your classname does not include a dot, the package defaults to "(root)" -->
<testcase name="my testcase" classname="my package.my classname" time="29">
<!-- If the test didn't pass, specify ONE of the following 3 cases -->
<!-- option 1 --> <skipped />
<!-- option 2 --> <failure message="my failure message">my stack trace</failure>
<!-- option 3 --> <error message="my error message">my crash report</error>
<system-out>my STDOUT dump</system-out>
<system-err>my STDERR dump</system-err>
</testcase>
</testsuite>
(Я начал с этот образец XML-документа и работал оттуда оттуда.)
Ответ 5
Существует несколько схем для результатов "JUnit" и "xUnit" .
- XSD для Apache Ant Выход JUnit можно найти по адресу: https://github.com/windyroad/JUnit-Schema (кредит относится к этому ответу: fooobar.com/questions/41606/...)
- XSD из Jenkins xunit-plugin можно найти по адресу: https://github.com/jenkinsci/xunit-plugin/tree/master/src/main/resources/org/jenkinsci/plugins/xunit/types (под
model/xsd
)
Обратите внимание, что существует несколько версий схемы, используемой Junkins xunit-plugin (текущая последняя версия junit-10.xsd
, которая добавляет поддержку формата Erlang/OTP Junit).
Некоторые тестовые среды, а также плагины отчетов "xUnit" также используют свой собственный секретный соус для генерации отчетов "xUnit" , которые могут не использовать определенную схему (пожалуйста, прочитайте: они пытаются, но инструменты могут не работать проверять на какую-либо одну схему). Утилиты Python в Jenkins? дает быстрое сравнение нескольких из этих библиотек и небольшие различия между генерируемыми отчетами xml.
Ответ 6
Основная структура Вот пример выходного файла JUnit, показывающий пропущенный и неудачный результат, а также один полученный результат.
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="JUnitXmlReporter" errors="0" tests="0" failures="0" time="0" timestamp="2013-05-24T10:23:58" />
<testsuite name="JUnitXmlReporter.constructor" errors="0" skipped="1" tests="3" failures="1" time="0.006" timestamp="2013-05-24T10:23:58">
<properties>
<property name="java.vendor" value="Sun Microsystems Inc." />
<property name="compiler.debug" value="on" />
<property name="project.jdk.classpath" value="jdk.classpath.1.6" />
</properties>
<testcase classname="JUnitXmlReporter.constructor" name="should default path to an empty string" time="0.006">
<failure message="test failure">Assertion failed</failure>
</testcase>
<testcase classname="JUnitXmlReporter.constructor" name="should default consolidate to true" time="0">
<skipped />
</testcase>
<testcase classname="JUnitXmlReporter.constructor" name="should default useDotNotation to true" time="0" />
</testsuite>
</testsuites>
Ниже приведена документальная структура типичного отчета XML JUnit. Обратите внимание, что отчет может содержать 1 или более тестовых наборов. Каждый набор тестов имеет набор свойств (информация об окружающей среде записи). Каждый тестовый набор также содержит 1 или более тестовых примеров, и каждый тестовый пример будет либо содержать пропущенную, неудачную, либо ошибку node, если тест не прошел. Если тестовый пример прошел, то он не будет содержать никаких узлов. Для получения дополнительной информации о том, какие атрибуты действительны для каждого node, обратитесь к следующему разделу "Схема".
<testsuites> => the aggregated result of all junit testfiles
<testsuite> => the output from a single TestSuite
<properties> => the defined properties at test execution
<property> => name/value pair for a single property
...
</properties>
<error></error> => optional information, in place of a test case - normally if the tests in the suite could not be found etc.
<testcase> => the results from executing a test method
<system-out> => data written to System.out during the test run
<system-err> => data written to System.err during the test run
<skipped/> => test was skipped
<failure> => test failed
<error> => test encountered an error
</testcase>
...
</testsuite>
...
</testsuites>
Ответ 7
Я решил опубликовать новый ответ, потому что некоторые существующие ответы устарели или неполны.
Прежде всего: нет ничего подобного JUnit XML Format Specification
, просто потому, что JUnit не создает какой-либо отчет XML или HTML.
Само создание отчета XML происходит из Ant JUnit task/Maven Surefire Plugin/Gradle (в зависимости от того, что вы используете для запуска ваших тестов). Формат отчета XML был впервые представлен Ant, а затем адаптирован Maven (и Gradle).
Если кому-то просто нужен официальный формат XML, то:
- Существует схема для XML-отчета, полученного с помощью maven surefire, и его можно найти здесь: surefire-test-report.xsd.
- Для ant -генерированного XML существует сторонняя схема, доступная здесь (но может быть немного устаревшей).
Надеюсь, это поможет кому-то.
Ответ 8
Хорошие ответы здесь на использование python: (есть много способов сделать это) Уроки Python в Дженкинсе?
IMHO лучшим способом является писать тесты python unittest и установить pytest (что-то вроде "yum install pytest" ), чтобы установить py.test. Затем выполните такие тесты: "py.test --junitxml results.xml test.py" . Вы можете запустить любой unittest python script и получить jUnit xml results.
https://docs.python.org/2.7/library/unittest.html
В конфигурации сборки jenkins Действия после сборки Добавьте отчет "Опубликовать отчет о результатах теста JUnit" с помощью result.xml и больше файлов результатов тестирования, которые вы создаете.