blob: cb3bb6072f96d69cb7c0d1c00c930e3e0a6d8396 [file] [log] [blame]
mblighbcb2a862008-06-06 14:22:41 +00001import os, re, string, sys
2import frontend, reason_qualifier
mblighbfec5222007-09-14 16:58:57 +00003
mblighcfd2d012007-09-19 21:07:34 +00004color_map = {
mbligh1405f4e2007-11-05 19:26:23 +00005 'header' : '#e5e5c0', # greyish yellow
6 'blank' : '#ffffff', # white
7 'plain_text' : '#e5e5c0', # greyish yellow
8 'borders' : '#bbbbbb', # grey
mblighcfd2d012007-09-19 21:07:34 +00009 'white' : '#ffffff', # white
10 'green' : '#66ff66', # green
11 'yellow' : '#fffc00', # yellow
12 'red' : '#ff6666', # red
mbligh439661b2008-02-19 15:57:53 +000013
14 #### additional keys for shaded color of a box
15 #### depending on stats of GOOD/FAIL
mbligh310b59e2008-03-25 23:53:55 +000016 '100pct' : '#80ff80', # green, 94% to 100% of success
17 '95pct' : '#c0ff80', # step twrds yellow, 88% to 94% of success
18 '90pct' : '#ffff80', # yellow, 82% to 88%
19 '85pct' : '#ffc040', # 76% to 82%
20 '75pct' : '#ff4040', # red, 1% to 76%
21 '0pct' : '#d080d0', # violet, <1% of success
mbligh439661b2008-02-19 15:57:53 +000022
mblighcfd2d012007-09-19 21:07:34 +000023}
mblighbfec5222007-09-14 16:58:57 +000024
mbligh5684b032008-06-06 14:25:35 +000025_brief_mode = False
26
27
28def set_brief_mode():
29 global _brief_mode
30 _brief_mode = True
31
32
33def is_brief_mode():
34 return _brief_mode
35
mblighcfd2d012007-09-19 21:07:34 +000036
mbligh439661b2008-02-19 15:57:53 +000037def color_keys_row():
38 """ Returns one row table with samples of 'NNpct' colors
39 defined in the color_map
40 and numbers of corresponding %%
41 """
mbligh5684b032008-06-06 14:25:35 +000042 ### This function does not require maintenance in case of
mbligh439661b2008-02-19 15:57:53 +000043 ### color_map augmenting - as long as
44 ### color keys for box shading have names that end with 'pct'
45 keys = filter(lambda key: key.endswith('pct'), color_map.keys())
46 def num_pct(key):
47 return int(key.replace('pct',''))
48 keys.sort(key=num_pct)
49 html = ''
50 for key in keys:
51 html+= "\t\t\t<td bgcolor =%s>&nbsp;&nbsp;&nbsp;</td>\n"\
52 % color_map[key]
53 hint = key.replace('pct',' %')
54 if hint[0]<>'0': ## anything but 0 %
55 hint = 'to ' + hint
56 html+= "\t\t\t<td> %s </td>\n" % hint
57
58 html = """
59<table width = "500" border="0" cellpadding="2" cellspacing="2">\n
60 <tbody>\n
61 <tr>\n
62%s
63 </tr>\n
64 </tbody>
65</table><br>
66""" % html
67 return html
68
mbligh5684b032008-06-06 14:25:35 +000069
70def calculate_html(link, data, tooltip=None, row_label=None, column_label=None):
71 if not is_brief_mode():
72 hover_text = '%s:%s' % (row_label, column_label)
73 if data: ## cell is not empty
74 hover_text += '<br>%s' % tooltip
75 else:
76 ## avoid "None" printed in empty cells
77 data = '&nbsp;'
78 html = ('<center><a class="info" href="%s">'
79 '%s<span>%s</span></a></center>' %
80 (link, data, hover_text))
81 return html
82 # no hover if embedded into AFE but links shall redirect to new window
83 if data: ## cell is non empty
84 html = '<a href="%s" target=NEW>%s</a>' % (link, data)
85 return html
86 else: ## cell is empty
87 return '&nbsp;'
88
mbligh439661b2008-02-19 15:57:53 +000089
mblighcfd2d012007-09-19 21:07:34 +000090class box:
mbligh439661b2008-02-19 15:57:53 +000091 def __init__(self, data, color_key = None, header = False, link = None,
jadmanskif9fa4272008-05-02 15:43:33 +000092 tooltip = None, row_label = None, column_label = None):
mbligh5684b032008-06-06 14:25:35 +000093
94 ## in brief mode we display grid table only and nothing more
95 ## - mouse hovering feature is stubbed in brief mode
96 ## - any link opens new window or tab
97
98 redirect = ""
99 if is_brief_mode():
100 ## we are acting under AFE
101 ## any link shall open new window
102 redirect = " target=NEW"
103
mbligh835c0e42008-03-11 21:39:54 +0000104 if data:
105 data = "<tt>%s</tt>" % data
mbligh5684b032008-06-06 14:25:35 +0000106
107 if link and not tooltip:
108 ## FlipAxis corner, column and row headers
109 self.data = ('<a href="%s"%s>%s</a>' %
110 (link, redirect, data))
mblighf91b3f52007-10-07 00:47:04 +0000111 else:
mbligh5684b032008-06-06 14:25:35 +0000112 self.data = calculate_html(link, data, tooltip,
113 row_label, column_label)
mbligh439661b2008-02-19 15:57:53 +0000114
mblighcfd2d012007-09-19 21:07:34 +0000115 if color_map.has_key(color_key):
116 self.color = color_map[color_key]
mbligh1405f4e2007-11-05 19:26:23 +0000117 elif header:
118 self.color = color_map['header']
119 elif data:
120 self.color = color_map['plain_text']
mblighcfd2d012007-09-19 21:07:34 +0000121 else:
mbligh1405f4e2007-11-05 19:26:23 +0000122 self.color = color_map['blank']
mblighcfd2d012007-09-19 21:07:34 +0000123 self.header = header
124
125
mbligh38757e72007-09-30 22:32:13 +0000126 def html(self):
mblighcfd2d012007-09-19 21:07:34 +0000127 if self.data:
128 data = self.data
129 else:
130 data = '&nbsp'
131
132 if self.header:
133 box_html = 'th'
134 else:
135 box_html = 'td'
136
mbligh38757e72007-09-30 22:32:13 +0000137 return "<%s bgcolor=%s>%s</%s>" % \
138 (box_html, self.color, data, box_html)
mblighcfd2d012007-09-19 21:07:34 +0000139
140
mbligh439661b2008-02-19 15:57:53 +0000141def grade_from_status(status):
142 # % of goodness
143 # GOOD (6) -> 1
mbligh302482e2008-05-01 20:06:16 +0000144 # TEST_NA (8) is not counted
mbligh1b4780e2008-02-21 16:27:52 +0000145 # ## If the test doesn't PASS, it FAILS
mbligh439661b2008-02-19 15:57:53 +0000146 # else -> 0
mbligh439661b2008-02-19 15:57:53 +0000147
148 if status == 6:
149 return 1.0
mbligh1b4780e2008-02-21 16:27:52 +0000150 else:
mbligh439661b2008-02-19 15:57:53 +0000151 return 0.0
152
153
154def average_grade_from_status_count(status_count):
155 average_grade = 0
156 total_count = 0
157 for key in status_count.keys():
mbligh302482e2008-05-01 20:06:16 +0000158 if key != 8: # TEST_NA status
159 average_grade += (grade_from_status(key)
160 * status_count[key])
161 total_count += status_count[key]
162 if total_count != 0:
163 average_grade = average_grade / total_count
164 else:
165 average_grade = 0.0
mbligh439661b2008-02-19 15:57:53 +0000166 return average_grade
167
168
169def shade_from_status_count(status_count):
170 if not status_count:
171 return None
172
173 ## average_grade defines a shade of the box
174 ## 0 -> violet
175 ## 0.76 -> red
176 ## 0.88-> yellow
177 ## 1.0 -> green
178 average_grade = average_grade_from_status_count(status_count)
179
180 ## find appropiate keyword from color_map
181 if average_grade<0.01:
182 shade = '0pct'
mbligh8e7c78e2008-02-20 21:18:49 +0000183 elif average_grade<0.75:
184 shade = '75pct'
185 elif average_grade<0.85:
186 shade = '85pct'
187 elif average_grade<0.90:
188 shade = '90pct'
189 elif average_grade<0.95:
190 shade = '95pct'
mbligh439661b2008-02-19 15:57:53 +0000191 else:
192 shade = '100pct'
193
194 return shade
195
196
mbligh31260692008-04-16 23:12:12 +0000197def status_html(db, box_data, shade):
mbligha997a342007-10-06 22:35:04 +0000198 """
199 status_count: dict mapping from status (integer key) to count
200 eg. { 'GOOD' : 4, 'FAIL' : 1 }
201 """
mbligh31260692008-04-16 23:12:12 +0000202 status_count = box_data.status_count
mbligh439661b2008-02-19 15:57:53 +0000203 if 6 in status_count.keys():
mbligh8e7c78e2008-02-20 21:18:49 +0000204 html = "%d&nbsp;/&nbsp;%d " \
mbligh439661b2008-02-19 15:57:53 +0000205 %(status_count[6],sum(status_count.values()))
206 else:
mbligh8e7c78e2008-02-20 21:18:49 +0000207 html = "%d&nbsp;/&nbsp;%d " % \
mbligh439661b2008-02-19 15:57:53 +0000208 (0, sum(status_count.values()))
mbligh439661b2008-02-19 15:57:53 +0000209
mbligh31260692008-04-16 23:12:12 +0000210 if box_data.reasons_list:
mblighbcb2a862008-06-06 14:22:41 +0000211 reasons_list = box_data.reasons_list
212 aggregated_reasons_list = \
213 reason_qualifier.aggregate_reason_fields(reasons_list)
214 for reason in aggregated_reasons_list:
215 ## a bit of more postprocessing
216 ## to look nicer in a cell
217 ## in future: to do subtable within the cell
mbligh31260692008-04-16 23:12:12 +0000218 reason = reason.replace('<br>','\n')
219 reason = reason.replace('<','[').replace('>',']')
220 reason = reason.replace('|','\n').replace('&',' AND ')
221 reason = reason.replace('\n','<br>')
222 html += '<br>' + reason
223
224 tooltip = ""
mbligha997a342007-10-06 22:35:04 +0000225 for status in sorted(status_count.keys(), reverse = True):
226 status_word = db.status_word[status]
mbligh439661b2008-02-19 15:57:53 +0000227 tooltip += "%d %s " % (status_count[status], status_word)
228 return (html,tooltip)
mbligha997a342007-10-06 22:35:04 +0000229
230
231def status_count_box(db, tests, link = None):
232 """
mbligh835c0e42008-03-11 21:39:54 +0000233 Display a ratio of total number of GOOD tests
234 to total number of all tests in the group of tests.
235 More info (e.g. 10 GOOD, 2 WARN, 3 FAIL) is in tooltips
mbligha997a342007-10-06 22:35:04 +0000236 """
237 if not tests:
238 return box(None, None)
239
240 status_count = {}
241 for test in tests:
242 count = status_count.get(test.status_num, 0)
243 status_count[test.status_num] = count + 1
mbligh83f63a02007-12-12 19:13:04 +0000244 return status_precounted_box(db, status_count, link)
245
246
jadmanskif9fa4272008-05-02 15:43:33 +0000247def status_precounted_box(db, box_data, link = None,
248 x_label = None, y_label = None):
mbligh83f63a02007-12-12 19:13:04 +0000249 """
mbligh835c0e42008-03-11 21:39:54 +0000250 Display a ratio of total number of GOOD tests
251 to total number of all tests in the group of tests.
252 More info (e.g. 10 GOOD, 2 WARN, 3 FAIL) is in tooltips
mbligh31260692008-04-16 23:12:12 +0000253 """
254 status_count = box_data.status_count
mbligh83f63a02007-12-12 19:13:04 +0000255 if not status_count:
256 return box(None, None)
mbligh439661b2008-02-19 15:57:53 +0000257
258 shade = shade_from_status_count(status_count)
mbligh31260692008-04-16 23:12:12 +0000259 html,tooltip = status_html(db, box_data, shade)
jadmanskif9fa4272008-05-02 15:43:33 +0000260 precounted_box = box(html, shade, False, link, tooltip,
261 x_label, y_label)
mbligh439661b2008-02-19 15:57:53 +0000262 return precounted_box
mbligha997a342007-10-06 22:35:04 +0000263
mbligh31260692008-04-16 23:12:12 +0000264
mblighcfd2d012007-09-19 21:07:34 +0000265def print_table(matrix):
266 """
267 matrix: list of lists of boxes, giving a matrix of data
268 Each of the inner lists is a row, not a column.
269
270 Display the given matrix of data as a table.
271 """
272
mbligh8204f7f2008-06-06 14:23:40 +0000273 print ('<table bgcolor="%s" cellspacing="1" cellpadding="5" '
274 'style="margin-right: 200px;">') % (
275 color_map['borders'])
mblighcfd2d012007-09-19 21:07:34 +0000276 for row in matrix:
277 print '<tr>'
278 for element in row:
mbligh38757e72007-09-30 22:32:13 +0000279 print element.html()
mblighcfd2d012007-09-19 21:07:34 +0000280 print '</tr>'
281 print '</table>'
282
283
mblighcfd2d012007-09-19 21:07:34 +0000284def sort_tests(tests):
285 kernel_order = ['patch', 'config', 'build', 'mkinitrd', 'install']
286
287 results = []
288 for kernel_op in kernel_order:
289 test = 'kernel.' + kernel_op
290 if tests.count(test):
291 results.append(test)
292 tests.remove(test)
mbligh7a41a862007-11-30 17:44:24 +0000293 if tests.count('boot'):
294 results.append('boot')
295 tests.remove('boot')
mblighcfd2d012007-09-19 21:07:34 +0000296 return results + sorted(tests)
mblighbfec5222007-09-14 16:58:57 +0000297
mbligh04598752007-10-01 15:49:58 +0000298
299def print_main_header():
jadmanskif9fa4272008-05-02 15:43:33 +0000300 hover_css="""\
301a.info{
302 position:relative; /*this is the key*/
303 z-index:1
304 color:#000;
305 text-decoration:none}
306
307a.info:hover{z-index:25;}
308
309a.info span{display: none}
310
311a.info:hover span{ /*the span will display just on :hover state*/
312 display:block;
313 position:absolute;
314 top:1em; left:1em;
315 min-width: 100px;
316 overflow: visible;
317 border:1px solid #036;
318 background-color:#fff; color:#000;
319 text-align: left
320}
321"""
mbligh1405f4e2007-11-05 19:26:23 +0000322 print '<head><style type="text/css">'
323 print 'a { text-decoration: none }'
jadmanskif9fa4272008-05-02 15:43:33 +0000324 print hover_css
mbligh1405f4e2007-11-05 19:26:23 +0000325 print '</style></head>'
mbligh04598752007-10-01 15:49:58 +0000326 print '<h2>'
mblighdfeee942008-02-07 20:47:39 +0000327 print '<a href="compose_query.cgi">Functional</a>'
mbligh04598752007-10-01 15:49:58 +0000328 print '&nbsp&nbsp&nbsp'
329 print '<a href="machine_benchmark.cgi">Performance</a>'
mblighcb0c38c2008-01-11 16:49:25 +0000330 print '&nbsp&nbsp&nbsp'
331 print '<a href="http://test.kernel.org/autotest">[about Autotest]</a>'
mbligh04598752007-10-01 15:49:58 +0000332 print '</h2><p>'
mbligh7a41a862007-11-30 17:44:24 +0000333
334
335def group_name(group):
336 name = re.sub('_', '<br>', group.name)
337 if re.search('/', name):
338 (owner, machine) = name.split('/', 1)
mbligh7a41a862007-11-30 17:44:24 +0000339 name = owner + '<br>' + machine
340 return name
mbligh5684b032008-06-06 14:25:35 +0000341