blob: f0ae8ec1c5ca0a4a950f36b0e135495a5496fd3e [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"))
Brad Bishop00e122a2019-10-05 11:10:57 -0400129 data = zlib.decompress(data)
130 try:
131 return data.decode("utf-8")
132 except UnicodeDecodeError:
133 return data
Brad Bishopa34c0302019-09-23 22:34:48 -0400134 return None
135
136def ptestresult_get_log(results, section):
137 if 'ptestresult.sections' not in results:
138 return None
139 if section not in results['ptestresult.sections']:
140 return None
141
142 ptest = results['ptestresult.sections'][section]
143 if 'log' not in ptest:
144 return None
145 return decode_log(ptest['log'])
146
147def ptestresult_get_rawlogs(results):
148 if 'ptestresult.rawlogs' not in results:
149 return None
150 if 'log' not in results['ptestresult.rawlogs']:
151 return None
152 return decode_log(results['ptestresult.rawlogs']['log'])
153
Brad Bishop19323692019-04-05 15:28:33 -0400154def save_resultsdata(results, destdir, fn="testresults.json", ptestjson=False, ptestlogs=False):
Brad Bishop40320b12019-03-26 16:08:25 -0400155 for res in results:
156 if res:
157 dst = destdir + "/" + res + "/" + fn
158 else:
159 dst = destdir + "/" + fn
160 os.makedirs(os.path.dirname(dst), exist_ok=True)
Brad Bishop19323692019-04-05 15:28:33 -0400161 resultsout = results[res]
162 if not ptestjson:
163 resultsout = strip_ptestresults(results[res])
Brad Bishop40320b12019-03-26 16:08:25 -0400164 with open(dst, 'w') as f:
Brad Bishop19323692019-04-05 15:28:33 -0400165 f.write(json.dumps(resultsout, sort_keys=True, indent=4))
166 for res2 in results[res]:
167 if ptestlogs and 'result' in results[res][res2]:
Brad Bishopa34c0302019-09-23 22:34:48 -0400168 seriesresults = results[res][res2]['result']
169 rawlogs = ptestresult_get_rawlogs(seriesresults)
170 if rawlogs is not None:
Brad Bishop19323692019-04-05 15:28:33 -0400171 with open(dst.replace(fn, "ptest-raw.log"), "w+") as f:
Brad Bishopa34c0302019-09-23 22:34:48 -0400172 f.write(rawlogs)
173 if 'ptestresult.sections' in seriesresults:
174 for i in seriesresults['ptestresult.sections']:
175 sectionlog = ptestresult_get_log(seriesresults, i)
176 if sectionlog is not None:
Brad Bishop19323692019-04-05 15:28:33 -0400177 with open(dst.replace(fn, "ptest-%s.log" % i), "w+") as f:
Brad Bishopa34c0302019-09-23 22:34:48 -0400178 f.write(sectionlog)
Brad Bishop40320b12019-03-26 16:08:25 -0400179
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500180def git_get_result(repo, tags, configmap=store_map):
Brad Bishop40320b12019-03-26 16:08:25 -0400181 git_objs = []
182 for tag in tags:
183 files = repo.run_cmd(['ls-tree', "--name-only", "-r", tag]).splitlines()
184 git_objs.extend([tag + ':' + f for f in files if f.endswith("testresults.json")])
185
186 def parse_json_stream(data):
187 """Parse multiple concatenated JSON objects"""
188 objs = []
189 json_d = ""
190 for line in data.splitlines():
191 if line == '}{':
192 json_d += '}'
193 objs.append(json.loads(json_d))
194 json_d = '{'
195 else:
196 json_d += line
197 objs.append(json.loads(json_d))
198 return objs
199
200 # Optimize by reading all data with one git command
201 results = {}
202 for obj in parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--'])):
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500203 append_resultsdata(results, obj, configmap=configmap)
Brad Bishop40320b12019-03-26 16:08:25 -0400204
205 return results
Brad Bishopc342db32019-05-15 21:57:59 -0400206
207def test_run_results(results):
208 """
209 Convenient generator function that iterates over all test runs that have a
210 result section.
211
212 Generates a tuple of:
213 (result json file path, test run name, test run (dict), test run "results" (dict))
214 for each test run that has a "result" section
215 """
216 for path in results:
217 for run_name, test_run in results[path].items():
218 if not 'result' in test_run:
219 continue
220 yield path, run_name, test_run, test_run['result']
221