-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.py
executable file
·119 lines (89 loc) · 4.15 KB
/
main.py
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import argparse
import xml.etree.cElementTree as ET
import xml.dom.minidom as minidom
import re
import sys
import signal
import defusedxml
from .version import __version__
def signal_handler(signal, frame):
exit(0)
# This stops ctrl+c from rendering typical Python stack trace and cleanly exits program.
signal.signal(signal.SIGINT, signal_handler)
def version():
return __version__
def main():
parser = argparse.ArgumentParser(description='Process some integers.')
parser.add_argument(dest="input", action="store", nargs='*',
help="output from 'ansible-lint -p' command.", type=argparse.FileType('r'), default=sys.stdin)
parser.add_argument("-o", "--output", dest="output_file",
default="ansible-lint-junit.xml", action="store", help="print XML to output file")
parser.add_argument("-v", "--verbose", dest="verbose", action="store_true",
help="print XML to console as command output", default=False)
parser.add_argument("-d", "--dummy-test", dest="dummy", action="store_true",
help="Adds single (1) dummy test if there were 0 tests and/or 0 errors", default=False)
parser.add_argument("--version", action="version",
version='%(prog)s {version}'.format(version=version()))
parser.add_argument("-w", "--ignore-warnings", action="store_true", default=False,
help="Ignore ansible-lint warnings")
arguments = parser.parse_args()
defusedxml.defuse_stdlib()
if isinstance(arguments.input, list):
arguments.input = arguments.input[0]
ansible_lint_output = arguments.input.read().split("\n")
testsuites = ET.Element("testsuites")
errors_count = "0"
for line in ansible_lint_output:
if len(line):
# Break ansible_lint_output is empty, I suppose?
break
if arguments.dummy:
testsuite = ET.SubElement(
testsuites, "testsuite", errors=errors_count, failures="0", tests="1", time="0")
ET.SubElement(testsuite, "testcase",
name="dummy_testcase_ansible_lint_junit")
else:
testsuite = ET.SubElement(
testsuites, "testsuite", errors=errors_count, failures="0", tests=errors_count, time="0")
line_regex = re.compile('^(.*?):(\\d+?):\\s(.*)$')
if 0 == len(ansible_lint_output):
ET.SubElement(testsuite, "testcase",
name="dummy_testcase_ansible_lint_junit")
else:
parsed_lines = []
for line in ansible_lint_output:
if 0 < len(line):
line_match = line_regex.match(line)
if not line_match:
continue
if arguments.ignore_warnings and line_match.group(3).endswith(" (warning)"):
continue
line_data = {
"filename": line_match.group(1),
"line": int(line_match.group(2)),
"error": line_match.group(3),
"text": line_match.group(3),
}
parsed_lines.append(line_data)
errors_count = int(errors_count) + 1
testcase = ET.SubElement(
testsuite, "testcase", name="{}-{}".format(line_data['filename'], len(parsed_lines)))
ET.SubElement(
testcase,
"failure",
file=line_data['filename'],
line=str(line_data['line']),
message=line_data['error'],
type="Ansible Lint"
).text = line_data['error']
testsuite.set("errors", str(errors_count))
xml_string = ET.tostring(testsuites, encoding='utf8', method='xml')
xml_nice = minidom.parseString(xml_string)
xml_nice = xml_nice.toprettyxml(indent="\t")
text_file = open(arguments.output_file, "w")
text_file.write(xml_nice)
text_file.close()
if arguments.verbose:
print(xml_nice)
if __name__ == "__main__":
main()