blob: f233fb8b2962f4bcb96468a1bdeb9d1a0f77f0fd [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 = {
jadmanski0afbb632008-06-06 21:10:57 +00005 'header' : '#e5e5c0', # greyish yellow
6 'blank' : '#ffffff', # white
7 'plain_text' : '#e5e5c0', # greyish yellow
8 'borders' : '#bbbbbb', # grey
9 'white' : '#ffffff', # white
10 'green' : '#66ff66', # green
11 'yellow' : '#fffc00', # yellow
12 'red' : '#ff6666', # red
mbligh439661b2008-02-19 15:57:53 +000013
jadmanski0afbb632008-06-06 21:10:57 +000014 #### additional keys for shaded color of a box
15 #### depending on stats of GOOD/FAIL
16 '100pct' : '#32CD32', # green, 94% to 100% of success
17 '95pct' : '#c0ff80', # step twrds yellow, 88% to 94% of success
18 '90pct' : '#ffff00', # 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():
jadmanski0afbb632008-06-06 21:10:57 +000029 global _brief_mode
30 _brief_mode = True
mbligh5684b032008-06-06 14:25:35 +000031
32
33def is_brief_mode():
jadmanski0afbb632008-06-06 21:10:57 +000034 return _brief_mode
mbligh5684b032008-06-06 14:25:35 +000035
mblighcfd2d012007-09-19 21:07:34 +000036
mbligh439661b2008-02-19 15:57:53 +000037def color_keys_row():
jadmanski0afbb632008-06-06 21:10:57 +000038 """ Returns one row table with samples of 'NNpct' colors
39 defined in the color_map
40 and numbers of corresponding %%
41 """
42 ### This function does not require maintenance in case of
43 ### 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
mbligh439661b2008-02-19 15:57:53 +000057
jadmanski0afbb632008-06-06 21:10:57 +000058 html = """
mbligh439661b2008-02-19 15:57:53 +000059<table width = "500" border="0" cellpadding="2" cellspacing="2">\n
jadmanski0afbb632008-06-06 21:10:57 +000060 <tbody>\n
61 <tr>\n
mbligh439661b2008-02-19 15:57:53 +000062%s
jadmanski0afbb632008-06-06 21:10:57 +000063 </tr>\n
64 </tbody>
mbligh439661b2008-02-19 15:57:53 +000065</table><br>
66""" % html
jadmanski0afbb632008-06-06 21:10:57 +000067 return html
mbligh439661b2008-02-19 15:57:53 +000068
mbligh5684b032008-06-06 14:25:35 +000069
70def calculate_html(link, data, tooltip=None, row_label=None, column_label=None):
jadmanski0afbb632008-06-06 21:10:57 +000071 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;'
mbligh5684b032008-06-06 14:25:35 +000088
mbligh439661b2008-02-19 15:57:53 +000089
mblighcfd2d012007-09-19 21:07:34 +000090class box:
jadmanski0afbb632008-06-06 21:10:57 +000091 def __init__(self, data, color_key = None, header = False, link = None,
92 tooltip = None, row_label = None, column_label = None):
mbligh5684b032008-06-06 14:25:35 +000093
jadmanski0afbb632008-06-06 21:10:57 +000094 ## 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
mbligh439661b2008-02-19 15:57:53 +000097
jadmanski0afbb632008-06-06 21:10:57 +000098 redirect = ""
99 if is_brief_mode():
100 ## we are acting under AFE
101 ## any link shall open new window
102 redirect = " target=NEW"
103
104 if data:
105 data = "<tt>%s</tt>" % data
106
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))
111 else:
112 self.data = calculate_html(link, data, tooltip,
113 row_label, column_label)
114
115 if color_map.has_key(color_key):
116 self.color = color_map[color_key]
117 elif header:
118 self.color = color_map['header']
119 elif data:
120 self.color = color_map['plain_text']
121 else:
122 self.color = color_map['blank']
123 self.header = header
mblighcfd2d012007-09-19 21:07:34 +0000124
125
jadmanski0afbb632008-06-06 21:10:57 +0000126 def html(self):
127 if self.data:
128 data = self.data
129 else:
130 data = '&nbsp'
mblighcfd2d012007-09-19 21:07:34 +0000131
jadmanski0afbb632008-06-06 21:10:57 +0000132 if self.header:
133 box_html = 'th'
134 else:
135 box_html = 'td'
mblighcfd2d012007-09-19 21:07:34 +0000136
jadmanski0afbb632008-06-06 21:10:57 +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):
jadmanski0afbb632008-06-06 21:10:57 +0000142 # % of goodness
143 # GOOD (6) -> 1
144 # TEST_NA (8) is not counted
145 # ## If the test doesn't PASS, it FAILS
146 # else -> 0
mbligh439661b2008-02-19 15:57:53 +0000147
jadmanski0afbb632008-06-06 21:10:57 +0000148 if status == 6:
149 return 1.0
150 else:
151 return 0.0
mbligh439661b2008-02-19 15:57:53 +0000152
153
154def average_grade_from_status_count(status_count):
jadmanski0afbb632008-06-06 21:10:57 +0000155 average_grade = 0
156 total_count = 0
157 for key in status_count.keys():
158 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
166 return average_grade
mbligh439661b2008-02-19 15:57:53 +0000167
168
169def shade_from_status_count(status_count):
jadmanski0afbb632008-06-06 21:10:57 +0000170 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'
183 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'
191 else:
192 shade = '100pct'
193
194 return shade
mbligh439661b2008-02-19 15:57:53 +0000195
196
mbligh31260692008-04-16 23:12:12 +0000197def status_html(db, box_data, shade):
jadmanski0afbb632008-06-06 21:10:57 +0000198 """
199 status_count: dict mapping from status (integer key) to count
200 eg. { 'GOOD' : 4, 'FAIL' : 1 }
201 """
202 status_count = box_data.status_count
203 if 6 in status_count.keys():
204 html = "%d&nbsp;/&nbsp;%d " \
205 %(status_count[6],sum(status_count.values()))
206 else:
207 html = "%d&nbsp;/&nbsp;%d " % \
208 (0, sum(status_count.values()))
mbligh439661b2008-02-19 15:57:53 +0000209
jadmanski0afbb632008-06-06 21:10:57 +0000210 if box_data.reasons_list:
211 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
218 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
mbligh31260692008-04-16 23:12:12 +0000223
jadmanski0afbb632008-06-06 21:10:57 +0000224 tooltip = ""
225 for status in sorted(status_count.keys(), reverse = True):
226 status_word = db.status_word[status]
227 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):
jadmanski0afbb632008-06-06 21:10:57 +0000232 """
233 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
236 """
237 if not tests:
238 return box(None, None)
mbligha997a342007-10-06 22:35:04 +0000239
jadmanski0afbb632008-06-06 21:10:57 +0000240 status_count = {}
241 for test in tests:
242 count = status_count.get(test.status_num, 0)
243 status_count[test.status_num] = count + 1
244 return status_precounted_box(db, status_count, link)
mbligh83f63a02007-12-12 19:13:04 +0000245
246
jadmanskif9fa4272008-05-02 15:43:33 +0000247def status_precounted_box(db, box_data, link = None,
jadmanski0afbb632008-06-06 21:10:57 +0000248 x_label = None, y_label = None):
249 """
250 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
253 """
254 status_count = box_data.status_count
255 if not status_count:
256 return box(None, None)
257
258 shade = shade_from_status_count(status_count)
259 html,tooltip = status_html(db, box_data, shade)
260 precounted_box = box(html, shade, False, link, tooltip,
261 x_label, y_label)
262 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):
jadmanski0afbb632008-06-06 21:10:57 +0000266 """
267 matrix: list of lists of boxes, giving a matrix of data
268 Each of the inner lists is a row, not a column.
mblighcfd2d012007-09-19 21:07:34 +0000269
jadmanski0afbb632008-06-06 21:10:57 +0000270 Display the given matrix of data as a table.
271 """
mblighcfd2d012007-09-19 21:07:34 +0000272
jadmanski0afbb632008-06-06 21:10:57 +0000273 print ('<table bgcolor="%s" cellspacing="1" cellpadding="5" '
274 'style="margin-right: 200px;">') % (
275 color_map['borders'])
276 for row in matrix:
277 print '<tr>'
278 for element in row:
279 print element.html()
280 print '</tr>'
281 print '</table>'
mblighcfd2d012007-09-19 21:07:34 +0000282
283
mblighcfd2d012007-09-19 21:07:34 +0000284def sort_tests(tests):
jadmanski0afbb632008-06-06 21:10:57 +0000285 kernel_order = ['patch', 'config', 'build', 'mkinitrd', 'install']
mblighcfd2d012007-09-19 21:07:34 +0000286
jadmanski0afbb632008-06-06 21:10:57 +0000287 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)
293 if tests.count('boot'):
294 results.append('boot')
295 tests.remove('boot')
296 return results + sorted(tests)
mblighbfec5222007-09-14 16:58:57 +0000297
mbligh04598752007-10-01 15:49:58 +0000298
299def print_main_header():
jadmanski0afbb632008-06-06 21:10:57 +0000300 hover_css="""\
jadmanskif9fa4272008-05-02 15:43:33 +0000301a.info{
jadmanski0afbb632008-06-06 21:10:57 +0000302position:relative; /*this is the key*/
303z-index:1
304color:#000;
305text-decoration:none}
jadmanskif9fa4272008-05-02 15:43:33 +0000306
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*/
jadmanski0afbb632008-06-06 21:10:57 +0000312display:block;
313position:absolute;
314top:1em; left:1em;
315min-width: 100px;
316overflow: visible;
317border:1px solid #036;
318background-color:#fff; color:#000;
319text-align: left
jadmanskif9fa4272008-05-02 15:43:33 +0000320}
321"""
jadmanski0afbb632008-06-06 21:10:57 +0000322 print '<head><style type="text/css">'
323 print 'a { text-decoration: none }'
324 print hover_css
325 print '</style></head>'
326 print '<h2>'
327 print '<a href="compose_query.cgi">Functional</a>'
328 print '&nbsp&nbsp&nbsp'
329 print '<a href="machine_benchmark.cgi">Performance</a>'
330 print '&nbsp&nbsp&nbsp'
331 print '<a href="http://test.kernel.org/autotest">[about Autotest]</a>'
332 print '</h2><p>'
mbligh7a41a862007-11-30 17:44:24 +0000333
334
335def group_name(group):
jadmanski0afbb632008-06-06 21:10:57 +0000336 name = re.sub('_', '<br>', group.name)
337 if re.search('/', name):
338 (owner, machine) = name.split('/', 1)
339 name = owner + '<br>' + machine
340 return name