blob: 0337dbe58ab10abc041de9a3f6825792e6f79e0d [file] [log] [blame]
Fathi Boudra422bf772019-12-02 11:10:16 +02001#!/usr/bin/env python3
2#
Leonardo Sandoval579c7372020-10-23 15:23:32 -05003# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
Fathi Boudra422bf772019-12-02 11:10:16 +02004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8# Generate a test report from data inferred from Jenkins environment. The
9# generated HTML file is meant for inclusion in the report status page,
10# therefore isn't standalone, fully-formed, HTML.
11
12import argparse
13import collections
14import json
15import io
16import os
17import re
18import shutil
19import sys
20import urllib.request
21
22PAGE_HEADER = """\
23<div id="tf-report-main">
24<table>
25"""
26
27PAGE_FOOTER = """\
28</tbody>
29</table>
30</div> <!-- tf-report-main -->
31
32<table id="tf-rebuild-table"><tbody>
33<tr><td colspan="2" class="select-row">
34 Select tests by result:
35 <span class="select-all">None</span>
36 &nbsp;|&nbsp;
37 <span class="select-all success">SUCCESS</span>
38 &nbsp;|&nbsp;
39 <span class="select-all unstable">UNSTABLE</span>
40 &nbsp;|&nbsp;
41 <span class="select-all failure">FAILURE</span>
42</td></tr>
43<tr>
44 <td class="desc-col">
45 Select build configurations, and click the button to re-trigger builds.
46 <br />
47 Use <b>Shift+Click</b> to alter parameters when re-triggering.
48 </td>
49 <td class="button-col">
50 <input id="tf-rebuild-button" type="button" value="Rebuild selected configs"
51 disabled count="0"/>
52 <input id="tf-rebuild-all-button" type="button" value="Rebuild this job"/>
53 </td>
54</tr>
55</tbody></table>
56
57<div class="tf-label-container">
58<div class="tf-label-label">&nbsp;Local commands&nbsp;</div>
59<pre class="tf-label-cotent" id="tf-selected-commands">
60<i>Hover over test results to display equivalent local commands.</i>
61</pre>
62</div> <!-- tf-label-container -->
63
64<iframe id="tf-rebuild-frame" style="display: none"></iframe>
65"""
66
67TEST_SUFFIX = ".test"
68REPORT = "report.html"
69REPORT_JSON = "report.json"
70
71# Maximum depth for the tree of results, excluding status
Tomás Gonzálezdacbed82025-07-23 17:15:04 +010072MAX_RESULTS_DEPTH = 9
Fathi Boudra422bf772019-12-02 11:10:16 +020073
74# We'd have a minimum of 3: group, a build config, a run config.
75MIN_RESULTS_DEPTH = 3
76
77# Table header corresponding to each level, starting from group. Note that
78# the result is held in the leaf node itself, and has to appear in a column of
79# its own.
80LEVEL_HEADERS = [
81 "Test Group",
82 "TF Build Config",
83 "TFTF Build Config",
84 "SCP Build Config",
Manish Pandeyc4a9b4d2021-02-10 18:32:33 +000085 "SCP tools Config",
86 "SPM Build Config",
Manish V Badarkhe3b7722c2025-04-10 15:50:11 +010087 "RMM Build Config",
Tomás Gonzálezdacbed82025-07-23 17:15:04 +010088 "RF-A Build Config",
Fathi Boudra422bf772019-12-02 11:10:16 +020089 "Run Config",
90 "Status"
91]
92
93Jenkins = None
94Dimmed_hypen = None
95Build_job = None
96Job = None
97
98# Indicates whether a level of table has no entries. Assume all levels are empty
99# to start; and flip that around as and when we see otherwise.
100Level_empty = [True] * MAX_RESULTS_DEPTH
101assert len(LEVEL_HEADERS) == (MAX_RESULTS_DEPTH + 1)
102
103# A column is deemed empty if it's content is empty or is the string "nil"
104is_empty = lambda key: key in ("", "nil")
105
106# A tree of ResultNodes are used to group test results by config. The tree is
107# MAX_RESULTS_DEPTH levels deep. Levels above MAX_RESULTS_DEPTH groups results,
108# where as those at MAX_RESULTS_DEPTH (leaves) hold test result and other meta
109# data.
110class ResultNode:
111 def __init__(self, depth=0):
112 self.depth = depth
113 self.printed = False
114 if depth == MAX_RESULTS_DEPTH:
115 self.result = None
116 self.build_number = None
117 self.desc = None
118 else:
119 self.num_children = 0
120 self.children = collections.OrderedDict()
121
122 # For a grouping node, set child by key.
123 def set_child(self, key):
124 assert self.depth < MAX_RESULTS_DEPTH
125
126 self.num_children += 1
127 if not is_empty(key):
128 Level_empty[self.depth] = False
129 return self.children.setdefault(key, ResultNode(self.depth + 1))
130
131 # For a leaf node, set result and other meta data.
132 def set_result(self, result, build_number):
133 assert self.depth == MAX_RESULTS_DEPTH
134
135 self.result = result
136 self.build_number = build_number
137
138 def set_desc(self, desc):
139 self.desc = desc
140
141 def get_desc(self):
142 return self.desc
143
144 # For a grouping node, return dictionary iterator.
145 def items(self):
146 assert self.depth < MAX_RESULTS_DEPTH
147
148 return self.children.items()
149
150 # Generator function that walks through test results. The output of
151 # iteration is reflected in the stack argument, which ought to be a deque.
152 def iterator(self, key, stack):
153 stack.append((key, self))
154 if self.depth < MAX_RESULTS_DEPTH:
155 for child_key, child in self.items():
156 yield from child.iterator(child_key, stack)
157 else:
158 yield
159 stack.pop()
160
161 # Convenient child access during debugging.
162 def __getitem__(self, key):
163 assert self.depth < MAX_RESULTS_DEPTH
164
165 return self.children[key]
166
167 # Print convenient representation for debugging.
168 def __repr__(self):
169 if self.depth < MAX_RESULTS_DEPTH:
170 return "node(depth={}, nc={}, {})".format(self.depth,
171 self.num_children,
172 ("None" if self.children is None else
173 list(self.children.keys())))
174 else:
175 return ("result(" +
176 ("None" if self.result is None else str(self.result)) + ")")
177
178
179# Open an HTML element, given its name, content, and a dictionary of attributes:
180# <name foo="bar"...>
181def open_element(name, attrs=None):
182 # If there are no attributes, return the element right away
183 if attrs is None:
184 return "<" + name + ">"
185
186 el_list = ["<" + name]
187
188 # 'class', being a Python keyword, can't be passed as a keyword argument, so
189 # is passed as 'class_' instead.
190 if "class_" in attrs:
191 attrs["class"] = attrs["class_"]
192 del attrs["class_"]
193
194 for key, val in attrs.items():
195 if val is not None:
196 el_list.append(' {}="{}"'.format(key, val))
197
198 el_list.append(">")
199
200 return "".join(el_list)
201
202
203# Close an HTML element
204def close_element(name):
205 return "</" + name + ">"
206
207
208# Make an HTML element, given its name, content, and a dictionary of attributes:
209# <name foo="bar"...>content</name>
210def make_element(name, content="", **attrs):
211 assert type(content) is str
212
213 return "".join([open_element(name, attrs), content, close_element(name)])
214
215
216# Wrap link in a hyperlink:
217# <a href="link" foo="bar"... target="_blank">content</a>
218def wrap_link(content, link, **attrs):
219 return make_element("a", content, href=link, target="_blank", **attrs)
220
221
222def jenkins_job_link(job, build_number):
223 return "/".join([Jenkins, "job", job, build_number, ""])
224
225
226# Begin table by emitting table headers for all levels that aren't empty, and
227# results column. Finish by opening a tbody element for rest of the table
228# content.
229def begin_table(results, fd):
230 # Iterate and filter out empty levels
231 table_headers = []
232 for level, empty in enumerate(Level_empty):
233 if empty:
234 continue
235 table_headers.append(make_element("th", LEVEL_HEADERS[level]))
236
237 # Result
238 table_headers.append(make_element("th", LEVEL_HEADERS[level + 1]))
239
240 row = make_element("tr", "\n".join(table_headers))
241 print(make_element("thead", row), file=fd)
242 print(open_element("tbody"), file=fd)
243
244
Fathi Boudra422bf772019-12-02 11:10:16 +0200245# Given the node stack, reconstruct the original config name
246def reconstruct_config(node_stack):
247 group = node_stack[0][0]
248 run_config, run_node = node_stack[-1]
249
250 desc = run_node.get_desc()
251 try:
252 with open(desc) as fd:
253 test_config = fd.read().strip()
254 except FileNotFoundError:
255 print("warning: descriptor {} couldn't be opened.".format(desc),
256 file=sys.stderr);
257 return ""
258
259 if group != "GENERATED":
260 return os.path.join(group, test_config)
261 else:
262 return test_config
263
264
265# While iterating results, obtain a trail to the current result. node_stack is
266# iterated to identify the nodes contributing to one result.
267def result_to_html(node_stack):
268 global Dimmed_hypen
269
270 crumbs = []
271 for key, child_node in node_stack:
272 if child_node.printed:
273 continue
274
275 child_node.printed = True
276
277 # If the level is empty, skip emitting this column
278 if not Level_empty[child_node.depth - 1]:
279 # - TF config might be "nil" for TFTF-only build configs;
280 # - TFTF config might not be present for non-TFTF runs;
281 # - SCP config might not be present for non-SCP builds;
282 # - All build-only configs have runconfig as "nil";
283 #
284 # Make nil cells empty, and grey empty cells out.
285 if is_empty(key):
286 key = ""
287 td_class = "emptycell"
288 else:
289 td_class = None
290
291 rowspan = None
292 if (child_node.depth < MAX_RESULTS_DEPTH
293 and child_node.num_children > 1):
294 rowspan = child_node.num_children
295
296 # Keys are hyphen-separated strings. For better readability, dim
297 # hyphens so that text around the hyphens stand out.
298 if not Dimmed_hypen:
299 Dimmed_hypen = make_element("span", "-", class_="dim")
300 dimmed_key = Dimmed_hypen.join(key.split("-"))
301
302 crumbs.append(make_element("td", dimmed_key, rowspan=rowspan,
303 class_=td_class))
304
305 # For the last node, print result as well.
306 if child_node.depth == MAX_RESULTS_DEPTH:
307 # Make test result as a link to the job console
308 result_class = child_node.result.lower()
309 job_link = jenkins_job_link(Job, child_node.build_number)
310 result_link = wrap_link(child_node.result, job_link,
311 class_="result")
Leonardo Sandovald6c19d22021-01-21 14:00:55 -0600312 build_job_console_link = job_link + "console"
Fathi Boudra422bf772019-12-02 11:10:16 +0200313
314 # Add selection checkbox
315 selection = make_element("input", type="checkbox")
316
317 # Add link to build console if applicable
318 if build_job_console_link:
319 build_console = wrap_link("", build_job_console_link,
320 class_="buildlink", title="Click to visit build job console")
321 else:
322 build_console = ""
323
324 config_name = reconstruct_config(node_stack)
325
326 crumbs.append(make_element("td", (result_link + selection +
327 build_console), class_=result_class, title=config_name))
328
329 # Return result as string
330 return "".join(crumbs)
331
Harrison Mutai4126dc72021-11-23 11:34:41 +0000332# Emit style sheet, and script elements.
333def emit_header(fd):
334 stem = os.path.splitext(os.path.abspath(__file__))[0]
335 for tag, ext in [("style", "css"), ("script", "js")]:
336 print(open_element(tag), file=fd)
337 with open(os.extsep.join([stem, ext])) as ext_fd:
338 shutil.copyfileobj(ext_fd, fd)
339 print(close_element(tag), file=fd)
340
341def print_error_message(fd):
342 # Upon error, create a static HTML reporting the error, and then raise
343 # the latent exception again.
344 fd.seek(0, io.SEEK_SET)
345
346 # Provide inline style as there won't be a page header for us.
347 err_style = (
348 "border: 1px solid red;",
349 "color: red;",
350 "font-size: 30px;",
351 "padding: 15px;"
352 )
353
354 print(make_element("div",
355 "HTML report couldn't be prepared! Check job console.",
356 style=" ".join(err_style)), file=fd)
357
358 # Truncate file as we're disarding whatever there generated before.
359 fd.truncate()
Fathi Boudra422bf772019-12-02 11:10:16 +0200360
361def main(fd):
362 global Build_job, Jenkins, Job
363
364 parser = argparse.ArgumentParser()
365
366 # Add arguments
367 parser.add_argument("--build-job", default=None, help="Name of build job")
368 parser.add_argument("--from-json", "-j", default=None,
369 help="Generate results from JSON input rather than from Jenkins run")
370 parser.add_argument("--job", default=None, help="Name of immediate child job")
371 parser.add_argument("--meta-data", action="append", default=[],
372 help=("Meta data to read from file and include in report "
373 "(file allowed be absent). "
374 "Optionally prefix with 'text:' (default) or "
375 "'html:' to indicate type."))
376
377 opts = parser.parse_args()
378
379 workspace = os.environ["WORKSPACE"]
Harrison Mutai4126dc72021-11-23 11:34:41 +0000380
381 emit_header(fd)
382
Fathi Boudra422bf772019-12-02 11:10:16 +0200383 if not opts.from_json:
384 json_obj = {}
385
386 if not opts.job:
387 raise Exception("Must specify the name of Jenkins job with --job")
388 else:
389 Job = opts.job
390 json_obj["job"] = Job
391
392 if not opts.build_job:
393 raise Exception("Must specify the name of Jenkins build job with --build-job")
394 else:
395 Build_job = opts.build_job
396 json_obj["build_job"] = Build_job
397
Arthur Shea813bdf2025-02-03 21:39:57 -0800398 Jenkins = os.environ["JENKINS_PUBLIC_URL"].strip().rstrip("/")
Fathi Boudra422bf772019-12-02 11:10:16 +0200399
400 # Replace non-alphabetical characters in the job name with underscores. This is
401 # how Jenkins does it too.
402 job_var = re.sub(r"[^a-zA-Z0-9]", "_", opts.job)
403
404 # Build numbers are comma-separated list
405 child_build_numbers = (os.environ["TRIGGERED_BUILD_NUMBERS_" +
406 job_var]).split(",")
407
408 # Walk the $WORKSPACE directory, and fetch file names that ends with
409 # TEST_SUFFIX
410 _, _, files = next(os.walk(workspace))
411 test_files = sorted(filter(lambda f: f.endswith(TEST_SUFFIX), files))
412
413 # Store information in JSON object
414 json_obj["job"] = Job
415 json_obj["build_job"] = Build_job
416 json_obj["jenkins_url"] = Jenkins
417
418 json_obj["child_build_numbers"] = child_build_numbers
419 json_obj["test_files"] = test_files
420 json_obj["test_results"] = {}
421 else:
422 # Load JSON
423 with open(opts.from_json) as json_fd:
424 json_obj = json.load(json_fd)
425
426 Job = json_obj["job"]
427 Build_job = json_obj["build_job"]
428 Jenkins = json_obj["jenkins_url"]
429
430 child_build_numbers = json_obj["child_build_numbers"]
431 test_files = json_obj["test_files"]
432
433 # This iteration is in the assumption that Jenkins visits the files in the same
434 # order and spawns children, which is ture as of this writing. The test files
435 # are named in sequence, so it's reasonable to expect that'll remain the case.
436 # Just sayin...
437 results = ResultNode(0)
438 for i, f in enumerate(test_files):
439 # Test description is generated in the following format:
440 # seq%group%build_config:run_config.test
441 _, group, desc = f.split("%")
442 test_config = desc[:-len(TEST_SUFFIX)]
443 build_config, run_config = test_config.split(":")
444 spare_commas = "," * (MAX_RESULTS_DEPTH - MIN_RESULTS_DEPTH)
Tomás Gonzálezdacbed82025-07-23 17:15:04 +0100445 tf_config, tftf_config, scp_config, scp_tools, spm_config, rmm_config, rfa_config, *_ = (build_config +
Fathi Boudra422bf772019-12-02 11:10:16 +0200446 spare_commas).split(",")
447
448 build_number = child_build_numbers[i]
449 if not opts.from_json:
450 var_name = "TRIGGERED_BUILD_RESULT_" + job_var + "_RUN_" + build_number
451 test_result = os.environ[var_name]
452 json_obj["test_results"][build_number] = test_result
453 else:
454 test_result = json_obj["test_results"][build_number]
455
456 # Build result tree
457 group_node = results.set_child(group)
458 tf_node = group_node.set_child(tf_config)
459 tftf_node = tf_node.set_child(tftf_config)
460 scp_node = tftf_node.set_child(scp_config)
Manish Pandeyc4a9b4d2021-02-10 18:32:33 +0000461 scp_tools_node = scp_node.set_child(scp_tools)
462 spm_node = scp_tools_node.set_child(spm_config)
Manish V Badarkhe3b7722c2025-04-10 15:50:11 +0100463 rmm_node = spm_node.set_child(rmm_config)
Tomás Gonzálezdacbed82025-07-23 17:15:04 +0100464 rfa_node = rmm_node.set_child(rfa_config)
465 run_node = rfa_node.set_child(run_config)
Fathi Boudra422bf772019-12-02 11:10:16 +0200466 run_node.set_result(test_result, build_number)
467 run_node.set_desc(os.path.join(workspace, f))
468
Harrison Mutai4126dc72021-11-23 11:34:41 +0000469 # Emit page header element
Fathi Boudra422bf772019-12-02 11:10:16 +0200470 print(PAGE_HEADER, file=fd)
471 begin_table(results, fd)
472
473 # Generate HTML results for each group
474 node_stack = collections.deque()
475 for group, group_results in results.items():
476 node_stack.clear()
477
478 # For each result, make a table row
479 for _ in group_results.iterator(group, node_stack):
480 result_html = result_to_html(node_stack)
481 row = make_element("tr", result_html)
482 print(row, file=fd)
483
484 print(PAGE_FOOTER, file=fd)
485
486 # Insert meta data into report. Since meta data files aren't critical for
487 # the test report, and that other scripts may not generate all the time,
488 # ignore if the specified file doesn't exist.
489 type_to_el = dict(text="pre", html="div")
490 for data_file in opts.meta_data:
491 *prefix, filename = data_file.split(":")
492 file_type = prefix[0] if prefix else "text"
493 assert file_type in type_to_el.keys()
494
495 # Ignore if file doens't exist, or it's empty.
496 if not os.path.isfile(filename) or os.stat(filename).st_size == 0:
497 continue
498
499 with open(filename) as md_fd:
500 md_name = make_element("div", "&nbsp;" + filename + ":&nbsp;",
501 class_="tf-label-label")
502 md_content = make_element(type_to_el[file_type],
503 md_fd.read().strip("\n"), class_="tf-label-content")
504 md_container = make_element("div", md_name + md_content,
505 class_="tf-label-container")
506 print(md_container, file=fd)
507
508 # Dump JSON file unless we're reading from it.
509 if not opts.from_json:
510 with open(REPORT_JSON, "wt") as json_fd:
511 json.dump(json_obj, json_fd, indent=2)
512
Harrison Mutai4126dc72021-11-23 11:34:41 +0000513if __name__ == "__main__":
514 with open(REPORT, "wt") as fd:
515 try:
516 main(fd)
517 except:
518 print_error_message(fd)
519 raise