blob: 177fb25f933b6aa0a360ce16c5473b3d6363a1c1 [file] [log] [blame]
Brad Bishop40320b12019-03-26 16:08:25 -04001# resulttool - common library/utility functions
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
Brad Bishopa34c0302019-09-23 22:34:48 -040010import base64
11import zlib
Brad Bishop40320b12019-03-26 16:08:25 -040012import json
13import scriptpath
Brad Bishop19323692019-04-05 15:28:33 -040014import copy
Brad Bishopc342db32019-05-15 21:57:59 -040015import urllib.request
16import posixpath
Brad Bishop40320b12019-03-26 16:08:25 -040017scriptpath.add_oe_lib_path()
18
19flatten_map = {
20 "oeselftest": [],
21 "runtime": [],
22 "sdk": [],
23 "sdkext": [],
24 "manual": []
25}
26regression_map = {
27 "oeselftest": ['TEST_TYPE', 'MACHINE'],
28 "runtime": ['TESTSERIES', 'TEST_TYPE', 'IMAGE_BASENAME', 'MACHINE', 'IMAGE_PKGTYPE', 'DISTRO'],
29 "sdk": ['TESTSERIES', 'TEST_TYPE', 'IMAGE_BASENAME', 'MACHINE', 'SDKMACHINE'],
30 "sdkext": ['TESTSERIES', 'TEST_TYPE', 'IMAGE_BASENAME', 'MACHINE', 'SDKMACHINE'],
31 "manual": ['TEST_TYPE', 'TEST_MODULE', 'IMAGE_BASENAME', 'MACHINE']
32}
33store_map = {
34 "oeselftest": ['TEST_TYPE'],
35 "runtime": ['TEST_TYPE', 'DISTRO', 'MACHINE', 'IMAGE_BASENAME'],
36 "sdk": ['TEST_TYPE', 'MACHINE', 'SDKMACHINE', 'IMAGE_BASENAME'],
37 "sdkext": ['TEST_TYPE', 'MACHINE', 'SDKMACHINE', 'IMAGE_BASENAME'],
38 "manual": ['TEST_TYPE', 'TEST_MODULE', 'MACHINE', 'IMAGE_BASENAME']
39}
40
Brad Bishopc342db32019-05-15 21:57:59 -040041def is_url(p):
42 """
43 Helper for determining if the given path is a URL
44 """
45 return p.startswith('http://') or p.startswith('https://')
46
Brad Bishop15ae2502019-06-18 21:44:24 -040047extra_configvars = {'TESTSERIES': ''}
48
Brad Bishop40320b12019-03-26 16:08:25 -040049#
50# Load the json file and append the results data into the provided results dict
51#
Brad Bishop15ae2502019-06-18 21:44:24 -040052def append_resultsdata(results, f, configmap=store_map, configvars=extra_configvars):
Brad Bishop40320b12019-03-26 16:08:25 -040053 if type(f) is str:
Brad Bishopc342db32019-05-15 21:57:59 -040054 if is_url(f):
55 with urllib.request.urlopen(f) as response:
56 data = json.loads(response.read().decode('utf-8'))
57 url = urllib.parse.urlparse(f)
58 testseries = posixpath.basename(posixpath.dirname(url.path))
59 else:
60 with open(f, "r") as filedata:
61 data = json.load(filedata)
62 testseries = os.path.basename(os.path.dirname(f))
Brad Bishop40320b12019-03-26 16:08:25 -040063 else:
64 data = f
65 for res in data:
66 if "configuration" not in data[res] or "result" not in data[res]:
67 raise ValueError("Test results data without configuration or result section?")
Brad Bishop15ae2502019-06-18 21:44:24 -040068 for config in configvars:
69 if config == "TESTSERIES" and "TESTSERIES" not in data[res]["configuration"]:
70 data[res]["configuration"]["TESTSERIES"] = testseries
71 continue
72 if config not in data[res]["configuration"]:
73 data[res]["configuration"][config] = configvars[config]
Brad Bishop40320b12019-03-26 16:08:25 -040074 testtype = data[res]["configuration"].get("TEST_TYPE")
75 if testtype not in configmap:
76 raise ValueError("Unknown test type %s" % testtype)
Brad Bishop40320b12019-03-26 16:08:25 -040077 testpath = "/".join(data[res]["configuration"].get(i) for i in configmap[testtype])
78 if testpath not in results:
79 results[testpath] = {}
Brad Bishop40320b12019-03-26 16:08:25 -040080 results[testpath][res] = data[res]
81
82#
83# Walk a directory and find/load results data
84# or load directly from a file
85#
Brad Bishop15ae2502019-06-18 21:44:24 -040086def load_resultsdata(source, configmap=store_map, configvars=extra_configvars):
Brad Bishop40320b12019-03-26 16:08:25 -040087 results = {}
Brad Bishopc342db32019-05-15 21:57:59 -040088 if is_url(source) or os.path.isfile(source):
Brad Bishop15ae2502019-06-18 21:44:24 -040089 append_resultsdata(results, source, configmap, configvars)
Brad Bishop40320b12019-03-26 16:08:25 -040090 return results
91 for root, dirs, files in os.walk(source):
92 for name in files:
93 f = os.path.join(root, name)
94 if name == "testresults.json":
Brad Bishop15ae2502019-06-18 21:44:24 -040095 append_resultsdata(results, f, configmap, configvars)
Brad Bishop40320b12019-03-26 16:08:25 -040096 return results
97
98def filter_resultsdata(results, resultid):
99 newresults = {}
100 for r in results:
101 for i in results[r]:
102 if i == resultsid:
103 newresults[r] = {}
104 newresults[r][i] = results[r][i]
105 return newresults
106
Brad Bishop19323692019-04-05 15:28:33 -0400107def strip_ptestresults(results):
108 newresults = copy.deepcopy(results)
109 #for a in newresults2:
110 # newresults = newresults2[a]
111 for res in newresults:
112 if 'result' not in newresults[res]:
113 continue
114 if 'ptestresult.rawlogs' in newresults[res]['result']:
115 del newresults[res]['result']['ptestresult.rawlogs']
116 if 'ptestresult.sections' in newresults[res]['result']:
117 for i in newresults[res]['result']['ptestresult.sections']:
118 if 'log' in newresults[res]['result']['ptestresult.sections'][i]:
119 del newresults[res]['result']['ptestresult.sections'][i]['log']
120 return newresults
121
Brad Bishopa34c0302019-09-23 22:34:48 -0400122def decode_log(logdata):
123 if isinstance(logdata, str):
124 return logdata
125 elif isinstance(logdata, dict):
126 if "compressed" in logdata:
127 data = logdata.get("compressed")
128 data = base64.b64decode(data.encode("utf-8"))
129 return zlib.decompress(data).decode("utf-8")
130 return None
131
132def ptestresult_get_log(results, section):
133 if 'ptestresult.sections' not in results:
134 return None
135 if section not in results['ptestresult.sections']:
136 return None
137
138 ptest = results['ptestresult.sections'][section]
139 if 'log' not in ptest:
140 return None
141 return decode_log(ptest['log'])
142
143def ptestresult_get_rawlogs(results):
144 if 'ptestresult.rawlogs' not in results:
145 return None
146 if 'log' not in results['ptestresult.rawlogs']:
147 return None
148 return decode_log(results['ptestresult.rawlogs']['log'])
149
Brad Bishop19323692019-04-05 15:28:33 -0400150def save_resultsdata(results, destdir, fn="testresults.json", ptestjson=False, ptestlogs=False):
Brad Bishop40320b12019-03-26 16:08:25 -0400151 for res in results:
152 if res:
153 dst = destdir + "/" + res + "/" + fn
154 else:
155 dst = destdir + "/" + fn
156 os.makedirs(os.path.dirname(dst), exist_ok=True)
Brad Bishop19323692019-04-05 15:28:33 -0400157 resultsout = results[res]
158 if not ptestjson:
159 resultsout = strip_ptestresults(results[res])
Brad Bishop40320b12019-03-26 16:08:25 -0400160 with open(dst, 'w') as f:
Brad Bishop19323692019-04-05 15:28:33 -0400161 f.write(json.dumps(resultsout, sort_keys=True, indent=4))
162 for res2 in results[res]:
163 if ptestlogs and 'result' in results[res][res2]:
Brad Bishopa34c0302019-09-23 22:34:48 -0400164 seriesresults = results[res][res2]['result']
165 rawlogs = ptestresult_get_rawlogs(seriesresults)
166 if rawlogs is not None:
Brad Bishop19323692019-04-05 15:28:33 -0400167 with open(dst.replace(fn, "ptest-raw.log"), "w+") as f:
Brad Bishopa34c0302019-09-23 22:34:48 -0400168 f.write(rawlogs)
169 if 'ptestresult.sections' in seriesresults:
170 for i in seriesresults['ptestresult.sections']:
171 sectionlog = ptestresult_get_log(seriesresults, i)
172 if sectionlog is not None:
Brad Bishop19323692019-04-05 15:28:33 -0400173 with open(dst.replace(fn, "ptest-%s.log" % i), "w+") as f:
Brad Bishopa34c0302019-09-23 22:34:48 -0400174 f.write(sectionlog)
Brad Bishop40320b12019-03-26 16:08:25 -0400175
176def git_get_result(repo, tags):
177 git_objs = []
178 for tag in tags:
179 files = repo.run_cmd(['ls-tree', "--name-only", "-r", tag]).splitlines()
180 git_objs.extend([tag + ':' + f for f in files if f.endswith("testresults.json")])
181
182 def parse_json_stream(data):
183 """Parse multiple concatenated JSON objects"""
184 objs = []
185 json_d = ""
186 for line in data.splitlines():
187 if line == '}{':
188 json_d += '}'
189 objs.append(json.loads(json_d))
190 json_d = '{'
191 else:
192 json_d += line
193 objs.append(json.loads(json_d))
194 return objs
195
196 # Optimize by reading all data with one git command
197 results = {}
198 for obj in parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--'])):
199 append_resultsdata(results, obj)
200
201 return results
Brad Bishopc342db32019-05-15 21:57:59 -0400202
203def test_run_results(results):
204 """
205 Convenient generator function that iterates over all test runs that have a
206 result section.
207
208 Generates a tuple of:
209 (result json file path, test run name, test run (dict), test run "results" (dict))
210 for each test run that has a "result" section
211 """
212 for path in results:
213 for run_name, test_run in results[path].items():
214 if not 'result' in test_run:
215 continue
216 yield path, run_name, test_run, test_run['result']
217