forked from pytest-dev/pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validate xunit2 files against the schema
Fix pytest-dev#5095
- Loading branch information
1 parent
f7e925d
commit c506c81
Showing
4 changed files
with
338 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
XML files of the ``xunit2`` family are now validated against the schema by pytest's own test suite | ||
to avoid future regressions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- | ||
The MIT License (MIT) | ||
Copyright (c) 2014, Gregory Boissinot | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
--> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<xs:simpleType name="SUREFIRE_TIME"> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
|
||
<xs:complexType name="rerunType" mixed="true"> <!-- mixed (XML contains text) to be compatible with version previous than 2.22.1 --> | ||
<xs:sequence> | ||
<xs:element name="stackTrace" type="xs:string" minOccurs="0" /> <!-- optional to be compatible with version previous than 2.22.1 --> | ||
<xs:element name="system-out" type="xs:string" minOccurs="0" /> | ||
<xs:element name="system-err" type="xs:string" minOccurs="0" /> | ||
</xs:sequence> | ||
<xs:attribute name="message" type="xs:string" /> | ||
<xs:attribute name="type" type="xs:string" use="required" /> | ||
</xs:complexType> | ||
|
||
<xs:element name="failure"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="type" type="xs:string"/> | ||
<xs:attribute name="message" type="xs:string"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="error"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="type" type="xs:string"/> | ||
<xs:attribute name="message" type="xs:string"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="skipped"> | ||
<xs:complexType mixed="true"> | ||
<xs:attribute name="type" type="xs:string"/> | ||
<xs:attribute name="message" type="xs:string"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="properties"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:element ref="property" minOccurs="0" 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="system-err" type="xs:string"/> | ||
<xs:element name="system-out" type="xs:string"/> | ||
<xs:element name="rerunFailure" type="rerunType"/> | ||
<xs:element name="rerunError" type="rerunType"/> | ||
<xs:element name="flakyFailure" type="rerunType"/> | ||
<xs:element name="flakyError" type="rerunType"/> | ||
|
||
<xs:element name="testcase"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:choice minOccurs="0" maxOccurs="unbounded"> | ||
<xs:element ref="skipped"/> | ||
<xs:element ref="error"/> | ||
<xs:element ref="failure"/> | ||
<xs:element ref="rerunFailure" minOccurs="0" maxOccurs="unbounded"/> | ||
<xs:element ref="rerunError" minOccurs="0" maxOccurs="unbounded"/> | ||
<xs:element ref="flakyFailure" minOccurs="0" maxOccurs="unbounded"/> | ||
<xs:element ref="flakyError" minOccurs="0" maxOccurs="unbounded"/> | ||
<xs:element ref="system-out"/> | ||
<xs:element ref="system-err"/> | ||
</xs:choice> | ||
</xs:sequence> | ||
<xs:attribute name="name" type="xs:string" use="required"/> | ||
<xs:attribute name="time" type="xs:string"/> | ||
<xs:attribute name="classname" type="xs:string"/> | ||
<xs:attribute name="group" type="xs:string"/> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
<xs:element name="testsuite"> | ||
<xs:complexType> | ||
<xs:choice minOccurs="0" maxOccurs="unbounded"> | ||
<xs:element ref="testsuite"/> | ||
<xs:element ref="properties"/> | ||
<xs:element ref="testcase"/> | ||
<xs:element ref="system-out"/> | ||
<xs:element ref="system-err"/> | ||
</xs:choice> | ||
<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="required"/> | ||
<xs:attribute name="errors" type="xs:string" use="required"/> | ||
<xs:attribute name="group" type="xs:string" /> | ||
<xs:attribute name="time" type="SUREFIRE_TIME"/> | ||
<xs:attribute name="skipped" type="xs:string" /> | ||
<xs:attribute name="timestamp" type="xs:string" /> | ||
<xs:attribute name="hostname" type="xs:string" /> | ||
<xs:attribute name="id" type="xs:string" /> | ||
<xs:attribute name="package" type="xs:string" /> | ||
<xs:attribute name="file" type="xs:string"/> | ||
<xs:attribute name="log" type="xs:string"/> | ||
<xs:attribute name="url" type="xs:string"/> | ||
<xs:attribute name="version" type="xs:string"/> | ||
</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" /> | ||
<xs:attribute name="time" type="SUREFIRE_TIME"/> | ||
<xs:attribute name="tests" type="xs:string" /> | ||
<xs:attribute name="failures" type="xs:string" /> | ||
<xs:attribute name="errors" type="xs:string" /> | ||
</xs:complexType> | ||
</xs:element> | ||
|
||
</xs:schema> |
Oops, something went wrong.