forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdiff_wpt_results.py
executable file
·295 lines (248 loc) · 11.9 KB
/
diff_wpt_results.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#!/usr/bin/env vpython
# Copyright (C) 2021 Google Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import argparse
import contextlib
import json
import logging
import os
import sys
import tempfile
from blinkpy.common.host import Host
from blinkpy.common.system.executive import ScriptError
from blinkpy.web_tests.layout_package.bot_test_expectations import BotTestExpectationsFactory
from blinkpy.web_tests.models.typ_types import ResultType
from blinkpy.web_tests.port.android import (
PRODUCTS, PRODUCTS_TO_STEPNAMES)
CSV_HEADING = ('Test name, %s Result, %s Result, '
'Result Comparison, Test Flaky Results, '
'Baseline Flaky Results, Unreliable Comparison\n')
YES = 'Yes'
NO = 'No'
_log = logging.getLogger(os.path.basename(__file__))
# Extend this script to compare the results between wptrunner/Chrome
# and rwt/content_shell on Linux
PRODUCTS = PRODUCTS + ['chrome_linux', 'content_shell']
PRODUCTS_TO_STEPNAMES.update({
'chrome_linux': 'wpt_tests_suite',
'content_shell': 'blink_web_tests'})
PRODUCTS_TO_BUILDER_NAME = {
'android_weblayer': 'android-weblayer-pie-x86-wpt-fyi-rel',
'android_webview': 'android-webview-pie-x86-wpt-fyi-rel',
'chrome_android': 'android-chrome-pie-x86-wpt-fyi-rel',
'chrome_linux': 'linux-wpt-fyi-rel',
'content_shell': "Linux Tests"}
STEP_NAME_VARIANTS = {
'chrome_public_wpt': ['chrome_public_wpt on Ubuntu-16.04 or Ubuntu-18.04'],
'weblayer_shell_wpt': ['weblayer_shell_wpt on Ubuntu-16.04 or Ubuntu-18.04'],
'system_webview_wpt': ['system_webview_wpt on Ubuntu-16.04 or Ubuntu-18.04'],
'wpt_tests_suite': ['wpt_tests_suite on Ubuntu-18.04'],
'blink_web_tests': ['blink_web_tests on Ubuntu-18.04']
}
def map_tests_to_results(output_mp, input_mp, path=''):
if 'actual' in input_mp:
output_mp[path[1:]] = input_mp
else:
for k, v in input_mp.items():
map_tests_to_results(output_mp, v, path + '/' + k)
class WPTResultsDiffer(object):
def __init__(self, args, host, actual_results_map,
baseline_results_map, csv_output, ignore_missing=False):
self._args = args
self._host = host
self._actual_results_map = actual_results_map
self._baseline_results_map = baseline_results_map
self._csv_output = csv_output
self._ignore_missing = ignore_missing
self._test_flaky_results = None
self._baseline_flaky_results = None
try:
self._test_flaky_results = self._get_flaky_test_results(
args.product_to_compare)
except:
_log.info('Failed to get flaky results for %s' % args.product_to_compare)
try:
self._baseline_flaky_results = self._get_flaky_test_results(
args.baseline_product)
except:
_log.info('Failed to get flaky results for %s' % args.baseline_product)
self._handle_flaky = self._test_flaky_results is not None \
and self._baseline_flaky_results is not None
def _get_flaky_test_results(self, product):
return self._get_bot_expectations(product).flakes_by_path(
False, ignore_bot_expected_results=True,
consider_only_flaky_runs=False)
def _get_bot_expectations(self, product):
builder_name = PRODUCTS_TO_BUILDER_NAME[product]
bot_expectations_factory = BotTestExpectationsFactory(
self._host.builders, PRODUCTS_TO_STEPNAMES[product])
return bot_expectations_factory.expectations_for_builder(builder_name)
def flaky_results(self, test_name, flaky_dict):
return (flaky_dict.get(test_name, set()) or
flaky_dict.get(test_name.replace('external/wpt/', ''), set()))
def create_csv(self):
super_set = (set(self._actual_results_map.keys()) |
set(self._baseline_results_map.keys()))
file_output = CSV_HEADING % (self._args.product_to_compare,
self._args.baseline_product)
for test in sorted(super_set):
if ',' in test:
line = ['"%s"' % test]
else:
line = [test]
for result_mp in [self._actual_results_map,
self._baseline_results_map]:
line.append(result_mp.get(test, {'actual': 'MISSING'})
.get('actual').split()[-1])
if line[-1] == line[-2]:
line.append('SAME RESULTS')
elif 'MISSING' in (line[-1], line[-2]):
if self._ignore_missing:
continue
line.append('MISSING RESULTS')
else:
line.append('DIFFERENT RESULTS')
if self._handle_flaky and line[-1] != 'MISSING RESULTS':
test_flaky_results = self.flaky_results(
test, self._test_flaky_results)
baseline_flaky_results = self.flaky_results(
test, self._baseline_flaky_results)
test_flaky_results.update([line[1]])
baseline_flaky_results.update([line[2]])
is_flaky = (len(test_flaky_results) > 1 or
len(baseline_flaky_results) > 1)
line.extend(['"{%s}"' % ', '.join(sorted(test_flaky_results)),
'"{%s}"' % ', '.join(sorted(baseline_flaky_results))])
if (is_flaky and line[1] in baseline_flaky_results and
line[2] in test_flaky_results):
line.append(YES)
else:
line.append(NO)
else:
line.extend(['{}', '{}', NO])
file_output += ','.join(line) + '\n'
self._csv_output.write(file_output)
def _get_build_test_results(host, product, build):
step_name = PRODUCTS_TO_STEPNAMES[product]
for step_name_var in STEP_NAME_VARIANTS[step_name] + [step_name]:
try:
build_results = host.bb_agent.get_build_test_results(
build, step_name_var)
return build_results
except ScriptError:
_log.debug(('%s is not a step name that ran on %s:%d. '
'Re-attempting with a different step name.'),
step_name_var, build.builder_name, build.build_number)
except Exception as ex:
_log.exception(('Exception was raised when attempting to get '
'test results for step %s on build %s:%d'),
step_name_var, build.builder_name,
build.build_number)
raise ex
@contextlib.contextmanager
def _get_product_test_results(host, product, results_path=None):
if results_path:
json_results_obj = open(results_path, 'r')
else:
_log.info(('Retrieving test results for '
'product %s using the bb command'), product)
builder_name = PRODUCTS_TO_BUILDER_NAME[product]
# TODO: Note the builder name and number in the CSV file
latest_build = host.bb_agent.get_latest_finished_build(
builder_name)
_log.debug('The latest build for %s is %d',
builder_name, latest_build.build_number)
build_results = _get_build_test_results(host, product, latest_build)
json_results_obj = tempfile.NamedTemporaryFile(mode='w+t')
json_results_obj.write(json.dumps(build_results))
json_results_obj.seek(0)
try:
yield json_results_obj
finally:
json_results_obj.close()
def main(args):
parser = argparse.ArgumentParser(prog=os.path.basename(__file__))
parser.add_argument('--baseline-test-results', required=False,
help='Path to baseline test results JSON file')
parser.add_argument('--baseline-product', required=True, action='store',
choices=PRODUCTS,
help='Name of the baseline product')
parser.add_argument('--test-results-to-compare', required=False,
help='Path to actual test results JSON file')
parser.add_argument('--product-to-compare', required=True, action='store',
choices=PRODUCTS,
help='Name of the product being compared')
parser.add_argument('--csv-output', required=True,
help='Path to CSV output file')
parser.add_argument('--verbose', '-v', action='count', default=1,
help='Verbosity level')
parser.add_argument('--ignore-missing', action='store_true',
required=False, default=False,
help='Ignore tests that are not run for one of the product')
args = parser.parse_args()
if args.verbose >= 3:
log_level = logging.DEBUG
elif args.verbose == 2:
log_level = logging.INFO
else:
log_level = logging.WARNING
logging.basicConfig(level=log_level)
assert args.product_to_compare != args.baseline_product, (
'Product to compare and the baseline product cannot be the same')
host = Host()
actual_results_getter = _get_product_test_results(
host, args.product_to_compare, args.test_results_to_compare)
baseline_results_getter = _get_product_test_results(
host, args.baseline_product, args.baseline_test_results)
with actual_results_getter as actual_results_content, \
baseline_results_getter as baseline_results_content, \
open(args.csv_output, 'w') as csv_output:
# Read JSON results files. They must follow the Chromium
# json test results format
actual_results_json = json.loads(actual_results_content.read())
baseline_results_json = json.loads(baseline_results_content.read())
# Compress the JSON results trie in order to map the test
# names to their results map
tests_to_actual_results = {}
tests_to_baseline_results = {}
if args.product_to_compare == 'chrome_linux':
path = '/external/wpt'
else:
path = ''
map_tests_to_results(tests_to_actual_results,
actual_results_json['tests'],
path=path)
if args.baseline_product == 'chrome_linux':
path = '/external/wpt'
else:
path = ''
map_tests_to_results(tests_to_baseline_results,
baseline_results_json['tests'],
path=path)
# Create a CSV file which compares tests results to baseline results
WPTResultsDiffer(args, host, tests_to_actual_results,
tests_to_baseline_results, csv_output,
args.ignore_missing).create_csv()
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))