blob: b3d44b5567255ce2d1a9464b8111b7212e3b7b9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#!/usr/bin/env python3
#
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
#
# SPDX-License-Identifier: MPL-2.0
#
# Convert JUnit pytest output to automake .trs files
import argparse
import sys
from xml.etree import ElementTree
def junit_to_trs(junit_xml):
root = ElementTree.fromstring(junit_xml)
testcases = root.findall("./testsuite/testcase")
if len(testcases) < 1:
print(":test-result: ERROR convert-junit-to-trs.py")
return 99
has_fail = False
has_error = False
has_skipped = False
for testcase in testcases:
filename = f"{testcase.attrib['classname'].replace('.', '/')}.py"
name = f"{filename}::{testcase.attrib['name']}"
res = "PASS"
for node in testcase:
if node.tag == "failure":
res = "FAIL"
has_fail = True
elif node.tag == "error":
res = "ERROR"
has_error = True
elif node.tag == "skipped":
if node.attrib.get("type") == "pytest.xfail":
res = "XFAIL"
else:
res = "SKIP"
has_skipped = True
print(f":test-result: {res} {name}")
if has_error:
return 99
if has_fail:
return 1
if has_skipped:
return 77
return 0
def main():
parser = argparse.ArgumentParser(
description="Convert JUnit XML to Automake TRS and exit with "
"the appropriate Automake-compatible exit code."
)
parser.add_argument(
"junit_file",
type=argparse.FileType("r", encoding="utf-8"),
help="junit xml result file",
)
args = parser.parse_args()
junit_xml = args.junit_file.read()
sys.exit(junit_to_trs(junit_xml))
if __name__ == "__main__":
main()
|