-
Notifications
You must be signed in to change notification settings - Fork 37
/
test_report.py
350 lines (293 loc) · 11.3 KB
/
test_report.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#******************************************************************************
# * Copyright (c) 2019, XtremeDV. All rights reserved.
# *
# * Licensed under the Apache License, Version 2.0 (the "License");
# * you may not use this file except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *
# * Author: Jude Zhang, Email: zhajio.1988@gmail.com
# *******************************************************************************
# Copyright (c) 2014-2018, Lars Asplund lars.anders.asplund@gmail.com
"""
Provide test reporting functionality
"""
from xml.etree import ElementTree
from sys import version_info
import os
import socket
import re
from color_printer import COLOR_PRINTER
from ostools import read_file
class TestReport(object):
"""
Collect reports from running testcases
"""
def __init__(self, printer=COLOR_PRINTER, filePath="./"):
self._test_results = {}
self._test_names_in_order = []
self._printer = printer
self._filePath = filePath
self._real_total_time = 0.0
self._expected_num_tests = 0
self.fp = open(os.path.join(self._filePath, "test_status.hud"), "w+", encoding="utf-8")
self.fp.write("HVP metric = test\n")
def set_real_total_time(self, real_total_time):
"""
Set the real total execution time
"""
self._real_total_time = real_total_time
def set_expected_num_tests(self, expected_num_tests):
"""
Set the number of tests that we expect to run
"""
self._expected_num_tests = expected_num_tests
def num_tests(self):
"""
Return the number of tests in the report
"""
return len(self._test_results)
def add_result(self, *args, **kwargs):
"""
Add a a test result
"""
result = TestResult(*args, **kwargs)
self._test_results[result.name] = result
self._test_names_in_order.append(result.name)
def _last_test_result(self):
"""
Return the latest test result or fail
"""
return self._test_results[self._test_names_in_order[-1]]
def _test_results_in_order(self):
"""
Return the test results in the order they were added
"""
for name in self._test_names_in_order:
yield self.result_of(name)
def print_latest_status(self, total_tests):
"""
Print the latest status including the last test run and the
total number of passed, failed and warned tests
"""
result = self._last_test_result()
passed, failed, warned = self._split()
if result.passed:
self._printer.write("pass", fg='gi')
self.fp.write("%s = pass\n" % result.name)
elif result.failed:
self._printer.write("fail", fg='ri')
self.fp.write("%s = fail\n" % result.name)
elif result.warned:
self._printer.write("warn", fg='rgi')
self.fp.write("%s = warn\n" % result.name)
else:
self.fp.write("%s = unknown\n" % result.name)
assert False
args = []
args.append("P=%i" % len(passed))
args.append("W=%i" % len(warned))
args.append("F=%i" % len(failed))
args.append("T=%i" % total_tests)
if result.fail_message != '':
self._printer.write(" (%s) %s (%.1f seconds)\n FailMsg: %s\n LogFile: %s" %
(" ".join(args), result.name, result.time, result.fail_message, result.log_file))
else:
self._printer.write(" (%s) %s (%.1f seconds)\n LogFile: %s" %
(" ".join(args), result.name, result.time, result.log_file))
def all_ok(self):
"""
Return true if all test passed
"""
return all(test_result.passed for test_result in self._test_results.values())
def has_test(self, test_name):
return test_name in self._test_results
def result_of(self, test_name):
return self._test_results[test_name]
def print_str(self):
"""
Print the report as a colored string
"""
passed, failures, warned = self._split()
all_tests = passed + warned + failures
if not all_tests:
self._printer.write("No tests were run!", fg="rgi")
self._printer.write("\n")
return
prefix = "==== Summary "
max_len = max(len(test.name) for test in all_tests)
self._printer.write("%s%s\n" % (prefix, "=" * (max(max_len - len(prefix) + 25, 0))))
for test_result in all_tests:
test_result.print_status(self._printer, padding=max_len)
self._printer.write("%s\n" % ("=" * (max(max_len + 25, 0))))
n_failed = len(failures)
n_warned = len(warned)
n_passed = len(passed)
total = len(all_tests)
self._printer.write("pass", fg='gi')
self._printer.write(" %i of %i\n" % (n_passed, total))
if n_warned > 0:
self._printer.write("warn", fg='rgi')
self._printer.write(" %i of %i\n" % (n_warned, total))
if n_failed > 0:
self._printer.write("fail", fg='ri')
self._printer.write(" %i of %i\n" % (n_failed, total))
self._printer.write("%s\n" % ("=" * (max(max_len + 25, 0))))
total_time = sum((result.time for result in self._test_results.values()))
self._printer.write("Total time was %.1f seconds\n" % total_time)
self._printer.write("Elapsed time was %.1f seconds\n" % self._real_total_time)
self._printer.write("%s\n" % ("=" * (max(max_len + 25, 0))))
if n_failed > 0:
self._printer.write("Some failed!", fg='ri')
elif n_warned > 0:
self._printer.write("Some warned!", fg='rgxi')
else:
self._printer.write("All passed!", fg='gi')
self._printer.write("\n")
self.fp.close();
assert len(all_tests) <= self._expected_num_tests
if len(all_tests) < self._expected_num_tests:
self._printer.write("WARNING: Test execution aborted after running %d out of %d tests"
% (len(all_tests), self._expected_num_tests), fg='rgi')
self._printer.write("\n")
def _split(self):
"""
Split the test cases into passed and failures
"""
failures = []
passed = []
warned = []
for result in self._test_results_in_order():
if result.passed:
passed.append(result)
elif result.failed:
failures.append(result)
elif result.warned:
warned.append(result)
return passed, failures, warned
def to_junit_xml_str(self, xunit_xml_format='jenkins'):
"""
Convert test report to a junit xml string
"""
_, failures, warned = self._split()
root = ElementTree.Element("testsuite")
root.attrib["name"] = "testsuite"
root.attrib["errors"] = "0"
root.attrib["failures"] = str(len(failures))
root.attrib["warned"] = str(len(warned))
root.attrib["tests"] = str(len(self._test_results))
root.attrib["hostname"] = socket.gethostname()
for result in self._test_results_in_order():
root.append(result.to_xml(xunit_xml_format))
if version_info >= (3, 0):
# Python 3.x
xml = ElementTree.tostring(root, encoding="unicode")
else:
# Python 2.x
xml = ElementTree.tostring(root, encoding="utf-8")
return xml
class TestStatus(object):
"""
The status of a test
"""
def __init__(self, name):
self._name = name
@property
def name(self):
return self._name
def __eq__(self, other):
return isinstance(other, type(self)) and self.name == other.name
def __repr__(self):
return "TestStatus(%r)" % self._name
PASSED = TestStatus("passed")
WARNED = TestStatus("warned")
FAILED = TestStatus("failed")
class TestResult(object):
"""
Represents the result of a single test case
"""
def __init__(self, name, status, time, output_file_name):
assert status['status'] in (PASSED,
FAILED,
WARNED)
self.name = name
self._status = status
self.time = time
self._output_file_name = output_file_name
@property
def output(self):
"""
Return test output
"""
file_exists = os.path.isfile(self._output_file_name)
is_readable = os.access(self._output_file_name, os.R_OK)
if file_exists and is_readable:
return read_file(self._output_file_name)
return "Failed to read output file: %s" % self._output_file_name
@property
def log_file(self):
if os.path.isfile(self._output_file_name):
return self._output_file_name
else:
return "Error, %s not exists" % self._output_file_name
@property
def fail_message(self):
return self._status['reasonMsg']
@property
def passed(self):
return self._status['status'] == PASSED
@property
def warned(self):
return self._status['status'] == WARNED
@property
def failed(self):
return self._status['status'] == FAILED
def print_status(self, printer, padding=0):
"""
Print the status and runtime of this test result
"""
if self.passed:
printer.write("pass", fg='gi')
printer.write(" ")
elif self.failed:
printer.write("fail", fg='ri')
printer.write(" ")
elif self.warned:
printer.write("warn", fg='rgi')
printer.write(" ")
my_padding = max(padding - len(self.name), 0)
printer.write("%s (%.1f seconds)\n" % (self.name + (" " * my_padding), self.time))
def to_xml(self, xunit_xml_format):
"""
Convert the test result to ElementTree XML object
"""
test = ElementTree.Element("testcase")
match = re.search(r"(.+)\.([^.]+)$", self.name)
if match:
test.attrib["classname"] = match.group(1)
test.attrib["name"] = match.group(2)
else:
test.attrib["name"] = self.name
test.attrib["time"] = "%.1f" % self.time
# By default the output is stored in system-out
system_out = ElementTree.SubElement(test, "system-out")
#system_out.text = self.output
system_out.text = self.log_file
if self.failed:
failure = ElementTree.SubElement(test, "failure")
failure.attrib["message"] = self.fail_message
# Store output under <failure> if the 'bamboo' format is specified
if xunit_xml_format == 'bamboo':
failure.text = system_out.text
system_out.text = ''
elif self.warned:
warned = ElementTree.SubElement(test, "warning")
warned.attrib["message"] = self.fail_message
return test