blob: 692dd7a851b9cd1b38b942974251f9ffd22b5e34 [file] [log] [blame]
Brad Bishop40320b12019-03-26 16:08:25 -04001# test result tool - report text based test results
2#
3# Copyright (c) 2019, Intel Corporation.
4# Copyright (c) 2019, Linux Foundation
5#
Brad Bishopc342db32019-05-15 21:57:59 -04006# SPDX-License-Identifier: GPL-2.0-only
Brad Bishop40320b12019-03-26 16:08:25 -04007#
Brad Bishopc342db32019-05-15 21:57:59 -04008
Brad Bishop40320b12019-03-26 16:08:25 -04009import os
10import glob
11import json
12import resulttool.resultutils as resultutils
13from oeqa.utils.git import GitRepo
14import oeqa.utils.gitarchive as gitarchive
15
16
17class ResultsTextReport(object):
18 def __init__(self):
19 self.ptests = {}
Brad Bishopc342db32019-05-15 21:57:59 -040020 self.ltptests = {}
21 self.ltpposixtests = {}
Brad Bishop79641f22019-09-10 07:20:22 -040022 self.result_types = {'passed': ['PASSED', 'passed', 'PASS', 'XFAIL'],
23 'failed': ['FAILED', 'failed', 'FAIL', 'ERROR', 'error', 'UNKNOWN', 'XPASS'],
24 'skipped': ['SKIPPED', 'skipped', 'UNSUPPORTED', 'UNTESTED', 'UNRESOLVED']}
Brad Bishop40320b12019-03-26 16:08:25 -040025
26
Brad Bishop15ae2502019-06-18 21:44:24 -040027 def handle_ptest_result(self, k, status, result, machine):
28 if machine not in self.ptests:
29 self.ptests[machine] = {}
30
Brad Bishop40320b12019-03-26 16:08:25 -040031 if k == 'ptestresult.sections':
32 # Ensure tests without any test results still show up on the report
33 for suite in result['ptestresult.sections']:
Brad Bishop15ae2502019-06-18 21:44:24 -040034 if suite not in self.ptests[machine]:
Brad Bishopa34c0302019-09-23 22:34:48 -040035 self.ptests[machine][suite] = {
36 'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-',
37 'failed_testcases': [], "testcases": set(),
38 }
Brad Bishop40320b12019-03-26 16:08:25 -040039 if 'duration' in result['ptestresult.sections'][suite]:
Brad Bishop15ae2502019-06-18 21:44:24 -040040 self.ptests[machine][suite]['duration'] = result['ptestresult.sections'][suite]['duration']
Brad Bishop40320b12019-03-26 16:08:25 -040041 if 'timeout' in result['ptestresult.sections'][suite]:
Brad Bishop15ae2502019-06-18 21:44:24 -040042 self.ptests[machine][suite]['duration'] += " T"
Brad Bishopa34c0302019-09-23 22:34:48 -040043 return True
44
45 # process test result
Brad Bishop40320b12019-03-26 16:08:25 -040046 try:
47 _, suite, test = k.split(".", 2)
48 except ValueError:
Brad Bishopa34c0302019-09-23 22:34:48 -040049 return True
50
Brad Bishop40320b12019-03-26 16:08:25 -040051 # Handle 'glib-2.0'
52 if 'ptestresult.sections' in result and suite not in result['ptestresult.sections']:
53 try:
54 _, suite, suite1, test = k.split(".", 3)
55 if suite + "." + suite1 in result['ptestresult.sections']:
56 suite = suite + "." + suite1
57 except ValueError:
58 pass
Brad Bishopa34c0302019-09-23 22:34:48 -040059
Brad Bishop15ae2502019-06-18 21:44:24 -040060 if suite not in self.ptests[machine]:
Brad Bishopa34c0302019-09-23 22:34:48 -040061 self.ptests[machine][suite] = {
62 'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-',
63 'failed_testcases': [], "testcases": set(),
64 }
65
66 # do not process duplicate results
67 if test in self.ptests[machine][suite]["testcases"]:
68 print("Warning duplicate ptest result '{}.{}' for {}".format(suite, test, machine))
69 return False
70
Brad Bishop40320b12019-03-26 16:08:25 -040071 for tk in self.result_types:
72 if status in self.result_types[tk]:
Brad Bishop15ae2502019-06-18 21:44:24 -040073 self.ptests[machine][suite][tk] += 1
Brad Bishopa34c0302019-09-23 22:34:48 -040074 self.ptests[machine][suite]["testcases"].add(test)
75 return True
Brad Bishop40320b12019-03-26 16:08:25 -040076
Brad Bishop15ae2502019-06-18 21:44:24 -040077 def handle_ltptest_result(self, k, status, result, machine):
78 if machine not in self.ltptests:
79 self.ltptests[machine] = {}
80
Brad Bishopc342db32019-05-15 21:57:59 -040081 if k == 'ltpresult.sections':
82 # Ensure tests without any test results still show up on the report
83 for suite in result['ltpresult.sections']:
Brad Bishop15ae2502019-06-18 21:44:24 -040084 if suite not in self.ltptests[machine]:
85 self.ltptests[machine][suite] = {'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-', 'failed_testcases': []}
Brad Bishopc342db32019-05-15 21:57:59 -040086 if 'duration' in result['ltpresult.sections'][suite]:
Brad Bishop15ae2502019-06-18 21:44:24 -040087 self.ltptests[machine][suite]['duration'] = result['ltpresult.sections'][suite]['duration']
Brad Bishopc342db32019-05-15 21:57:59 -040088 if 'timeout' in result['ltpresult.sections'][suite]:
Brad Bishop15ae2502019-06-18 21:44:24 -040089 self.ltptests[machine][suite]['duration'] += " T"
Brad Bishopc342db32019-05-15 21:57:59 -040090 return
91 try:
92 _, suite, test = k.split(".", 2)
93 except ValueError:
94 return
95 # Handle 'glib-2.0'
96 if 'ltpresult.sections' in result and suite not in result['ltpresult.sections']:
97 try:
98 _, suite, suite1, test = k.split(".", 3)
99 print("split2: %s %s %s" % (suite, suite1, test))
100 if suite + "." + suite1 in result['ltpresult.sections']:
101 suite = suite + "." + suite1
102 except ValueError:
103 pass
Brad Bishop15ae2502019-06-18 21:44:24 -0400104 if suite not in self.ltptests[machine]:
105 self.ltptests[machine][suite] = {'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-', 'failed_testcases': []}
Brad Bishopc342db32019-05-15 21:57:59 -0400106 for tk in self.result_types:
107 if status in self.result_types[tk]:
Brad Bishop15ae2502019-06-18 21:44:24 -0400108 self.ltptests[machine][suite][tk] += 1
Brad Bishopc342db32019-05-15 21:57:59 -0400109
Brad Bishop15ae2502019-06-18 21:44:24 -0400110 def handle_ltpposixtest_result(self, k, status, result, machine):
111 if machine not in self.ltpposixtests:
112 self.ltpposixtests[machine] = {}
113
Brad Bishopc342db32019-05-15 21:57:59 -0400114 if k == 'ltpposixresult.sections':
115 # Ensure tests without any test results still show up on the report
116 for suite in result['ltpposixresult.sections']:
Brad Bishop15ae2502019-06-18 21:44:24 -0400117 if suite not in self.ltpposixtests[machine]:
118 self.ltpposixtests[machine][suite] = {'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-', 'failed_testcases': []}
Brad Bishopc342db32019-05-15 21:57:59 -0400119 if 'duration' in result['ltpposixresult.sections'][suite]:
Brad Bishop15ae2502019-06-18 21:44:24 -0400120 self.ltpposixtests[machine][suite]['duration'] = result['ltpposixresult.sections'][suite]['duration']
Brad Bishopc342db32019-05-15 21:57:59 -0400121 return
122 try:
123 _, suite, test = k.split(".", 2)
124 except ValueError:
125 return
126 # Handle 'glib-2.0'
127 if 'ltpposixresult.sections' in result and suite not in result['ltpposixresult.sections']:
128 try:
129 _, suite, suite1, test = k.split(".", 3)
130 if suite + "." + suite1 in result['ltpposixresult.sections']:
131 suite = suite + "." + suite1
132 except ValueError:
133 pass
Brad Bishop15ae2502019-06-18 21:44:24 -0400134 if suite not in self.ltpposixtests[machine]:
135 self.ltpposixtests[machine][suite] = {'passed': 0, 'failed': 0, 'skipped': 0, 'duration' : '-', 'failed_testcases': []}
Brad Bishopc342db32019-05-15 21:57:59 -0400136 for tk in self.result_types:
137 if status in self.result_types[tk]:
Brad Bishop15ae2502019-06-18 21:44:24 -0400138 self.ltpposixtests[machine][suite][tk] += 1
Brad Bishopc342db32019-05-15 21:57:59 -0400139
Brad Bishop15ae2502019-06-18 21:44:24 -0400140 def get_aggregated_test_result(self, logger, testresult, machine):
Brad Bishop40320b12019-03-26 16:08:25 -0400141 test_count_report = {'passed': 0, 'failed': 0, 'skipped': 0, 'failed_testcases': []}
142 result = testresult.get('result', [])
143 for k in result:
144 test_status = result[k].get('status', [])
Brad Bishopa34c0302019-09-23 22:34:48 -0400145 if k.startswith("ptestresult."):
146 if not self.handle_ptest_result(k, test_status, result, machine):
147 continue
148 elif k.startswith("ltpresult."):
149 self.handle_ltptest_result(k, test_status, result, machine)
150 elif k.startswith("ltpposixresult."):
151 self.handle_ltpposixtest_result(k, test_status, result, machine)
152
153 # process result if it was not skipped by a handler
Brad Bishop40320b12019-03-26 16:08:25 -0400154 for tk in self.result_types:
155 if test_status in self.result_types[tk]:
156 test_count_report[tk] += 1
157 if test_status in self.result_types['failed']:
158 test_count_report['failed_testcases'].append(k)
Brad Bishop40320b12019-03-26 16:08:25 -0400159 return test_count_report
160
161 def print_test_report(self, template_file_name, test_count_reports):
162 from jinja2 import Environment, FileSystemLoader
163 script_path = os.path.dirname(os.path.realpath(__file__))
164 file_loader = FileSystemLoader(script_path + '/template')
165 env = Environment(loader=file_loader, trim_blocks=True)
166 template = env.get_template(template_file_name)
167 havefailed = False
Brad Bishop40320b12019-03-26 16:08:25 -0400168 reportvalues = []
Brad Bishop15ae2502019-06-18 21:44:24 -0400169 machines = []
Brad Bishop40320b12019-03-26 16:08:25 -0400170 cols = ['passed', 'failed', 'skipped']
Brad Bishopc342db32019-05-15 21:57:59 -0400171 maxlen = {'passed' : 0, 'failed' : 0, 'skipped' : 0, 'result_id': 0, 'testseries' : 0, 'ptest' : 0 ,'ltptest': 0, 'ltpposixtest': 0}
Brad Bishop40320b12019-03-26 16:08:25 -0400172 for line in test_count_reports:
173 total_tested = line['passed'] + line['failed'] + line['skipped']
174 vals = {}
175 vals['result_id'] = line['result_id']
176 vals['testseries'] = line['testseries']
177 vals['sort'] = line['testseries'] + "_" + line['result_id']
178 vals['failed_testcases'] = line['failed_testcases']
179 for k in cols:
180 vals[k] = "%d (%s%%)" % (line[k], format(line[k] / total_tested * 100, '.0f'))
181 for k in maxlen:
182 if k in vals and len(vals[k]) > maxlen[k]:
183 maxlen[k] = len(vals[k])
184 reportvalues.append(vals)
185 if line['failed_testcases']:
186 havefailed = True
Brad Bishop15ae2502019-06-18 21:44:24 -0400187 if line['machine'] not in machines:
188 machines.append(line['machine'])
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500189 reporttotalvalues = {}
190 for k in cols:
191 reporttotalvalues[k] = '%s' % sum([line[k] for line in test_count_reports])
192 reporttotalvalues['count'] = '%s' % len(test_count_reports)
Brad Bishop15ae2502019-06-18 21:44:24 -0400193 for (machine, report) in self.ptests.items():
194 for ptest in self.ptests[machine]:
195 if len(ptest) > maxlen['ptest']:
196 maxlen['ptest'] = len(ptest)
197 for (machine, report) in self.ltptests.items():
198 for ltptest in self.ltptests[machine]:
199 if len(ltptest) > maxlen['ltptest']:
200 maxlen['ltptest'] = len(ltptest)
201 for (machine, report) in self.ltpposixtests.items():
202 for ltpposixtest in self.ltpposixtests[machine]:
203 if len(ltpposixtest) > maxlen['ltpposixtest']:
204 maxlen['ltpposixtest'] = len(ltpposixtest)
Brad Bishop40320b12019-03-26 16:08:25 -0400205 output = template.render(reportvalues=reportvalues,
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500206 reporttotalvalues=reporttotalvalues,
Brad Bishop40320b12019-03-26 16:08:25 -0400207 havefailed=havefailed,
Brad Bishop15ae2502019-06-18 21:44:24 -0400208 machines=machines,
Brad Bishop40320b12019-03-26 16:08:25 -0400209 ptests=self.ptests,
Brad Bishopc342db32019-05-15 21:57:59 -0400210 ltptests=self.ltptests,
211 ltpposixtests=self.ltpposixtests,
Brad Bishop40320b12019-03-26 16:08:25 -0400212 maxlen=maxlen)
213 print(output)
214
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500215 def view_test_report(self, logger, source_dir, branch, commit, tag, use_regression_map, raw_test):
Brad Bishop40320b12019-03-26 16:08:25 -0400216 test_count_reports = []
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500217 configmap = resultutils.store_map
218 if use_regression_map:
219 configmap = resultutils.regression_map
Brad Bishop40320b12019-03-26 16:08:25 -0400220 if commit:
221 if tag:
222 logger.warning("Ignoring --tag as --commit was specified")
223 tag_name = "{branch}/{commit_number}-g{commit}/{tag_number}"
224 repo = GitRepo(source_dir)
225 revs = gitarchive.get_test_revs(logger, repo, tag_name, branch=branch)
226 rev_index = gitarchive.rev_find(revs, 'commit', commit)
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500227 testresults = resultutils.git_get_result(repo, revs[rev_index][2], configmap=configmap)
Brad Bishop40320b12019-03-26 16:08:25 -0400228 elif tag:
229 repo = GitRepo(source_dir)
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500230 testresults = resultutils.git_get_result(repo, [tag], configmap=configmap)
Brad Bishop40320b12019-03-26 16:08:25 -0400231 else:
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500232 testresults = resultutils.load_resultsdata(source_dir, configmap=configmap)
233 if raw_test:
234 raw_results = {}
235 for testsuite in testresults:
236 result = testresults[testsuite].get(raw_test, {})
237 if result:
238 raw_results[testsuite] = result
239 if raw_results:
240 print(json.dumps(raw_results, sort_keys=True, indent=4))
241 else:
242 print('Could not find raw test result for %s' % raw_test)
243 return 0
Brad Bishop40320b12019-03-26 16:08:25 -0400244 for testsuite in testresults:
245 for resultid in testresults[testsuite]:
Brad Bishopc68388fc2019-08-26 01:33:31 -0400246 skip = False
Brad Bishop40320b12019-03-26 16:08:25 -0400247 result = testresults[testsuite][resultid]
Brad Bishop15ae2502019-06-18 21:44:24 -0400248 machine = result['configuration']['MACHINE']
Brad Bishopc68388fc2019-08-26 01:33:31 -0400249
250 # Check to see if there is already results for these kinds of tests for the machine
251 for key in result['result'].keys():
252 testtype = str(key).split('.')[0]
Brad Bishopa34c0302019-09-23 22:34:48 -0400253 if ((machine in self.ltptests and testtype == "ltpiresult" and self.ltptests[machine]) or
Brad Bishopc68388fc2019-08-26 01:33:31 -0400254 (machine in self.ltpposixtests and testtype == "ltpposixresult" and self.ltpposixtests[machine])):
255 print("Already have test results for %s on %s, skipping %s" %(str(key).split('.')[0], machine, resultid))
256 skip = True
257 break
258 if skip:
259 break
260
Brad Bishop15ae2502019-06-18 21:44:24 -0400261 test_count_report = self.get_aggregated_test_result(logger, result, machine)
262 test_count_report['machine'] = machine
Brad Bishop40320b12019-03-26 16:08:25 -0400263 test_count_report['testseries'] = result['configuration']['TESTSERIES']
264 test_count_report['result_id'] = resultid
265 test_count_reports.append(test_count_report)
266 self.print_test_report('test_report_full_text.txt', test_count_reports)
267
268def report(args, logger):
269 report = ResultsTextReport()
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500270 report.view_test_report(logger, args.source_dir, args.branch, args.commit, args.tag, args.use_regression_map,
271 args.raw_test_only)
Brad Bishop40320b12019-03-26 16:08:25 -0400272 return 0
273
274def register_commands(subparsers):
275 """Register subcommands from this plugin"""
276 parser_build = subparsers.add_parser('report', help='summarise test results',
277 description='print a text-based summary of the test results',
278 group='analysis')
279 parser_build.set_defaults(func=report)
280 parser_build.add_argument('source_dir',
Brad Bishopc342db32019-05-15 21:57:59 -0400281 help='source file/directory/URL that contain the test result files to summarise')
Brad Bishop40320b12019-03-26 16:08:25 -0400282 parser_build.add_argument('--branch', '-B', default='master', help="Branch to find commit in")
283 parser_build.add_argument('--commit', help="Revision to report")
284 parser_build.add_argument('-t', '--tag', default='',
285 help='source_dir is a git repository, report on the tag specified from that repository')
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500286 parser_build.add_argument('-m', '--use_regression_map', action='store_true',
287 help='instead of the default "store_map", use the "regression_map" for report')
288 parser_build.add_argument('-r', '--raw_test_only', default='',
289 help='output raw test result only for the user provided test result id')
290