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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import argparse
import csv
import math
import os
import re
import shutil
import sys
import tempfile
from collections.abc import Iterable, Mapping
from datetime import datetime
from typing import Callable, Optional
repos = ["autoland", "mozilla-central", "try", "mozilla-central", "mozilla-beta", "wpt"]
default_fetch_task_filters = {
"wpt": ["-firefox"],
None: ["-web-platform-tests-|-spidermonkey-"],
}
default_interop_task_filters = {
"wpt": ["-firefox-"],
None: [
"web-platform-tests",
"linux.*-64",
"/opt",
"!-nofis|-headless|-asan|-tsan|-ccov|wayland",
],
}
def get_parser_fetch_logs() -> argparse.Namespace:
parser = argparse.ArgumentParser()
parser.register("type", "list", lambda s: s.split(","))
parser.add_argument(
"--log-dir", action="store", help="Directory into which to download logs"
)
parser.add_argument(
"--task-filter",
dest="task_filters",
action="append",
help="Regex filter applied to task names. Filters starting ! must not match. Filters starting ^ (after any !) match the entire task name, otherwise any substring can match. Multiple filters must all match",
)
parser.add_argument(
"--check-complete",
action="store_true",
help="Only download logs if the task is complete",
)
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument(
"commits",
nargs="*",
help="repo:commit e.g. mozilla-central:fae24810aef1 for the runs to include",
)
group.add_argument(
"--local-logs",
action="store",
type="list",
help="Comma separated list of local log files to use",
)
return parser
def get_default_year() -> int:
# Simple guess at current Interop year, based on switchover in Feburary
now = datetime.now()
year = now.year
if now.month < 2:
year -= 1
return year
def get_parser_interop_score() -> argparse.Namespace:
parser = get_parser_fetch_logs()
parser.add_argument(
"--year",
action="store",
default=get_default_year(),
type=int,
help="Interop year to score against",
)
parser.add_argument(
"--category-filter",
action="append",
dest="category_filters",
help="Regex filter applied to category names. Filters starting ! must not match. Filters starting ^ (after any !) match the entire task name, otherwise any substring can match. Multiple filters must all match",
)
parser.add_argument(
"--expected-failures",
help="Path to a file containing a list of tests which are not expected to pass",
)
return parser
def print_scores(
runs: Iterable[tuple[str, str]],
results_by_category: Mapping[str, list[int]],
expected_failures_by_category: Optional[Mapping[str, list[tuple[int, int]]]],
include_total: bool,
):
include_expected_failures = expected_failures_by_category is not None
writer = csv.writer(sys.stdout, delimiter="\t")
headers = ["Category"]
for repo, commit in runs:
prefix = f"{repo}:{commit}"
headers.append(f"{prefix}-score")
if include_expected_failures:
headers.append(f"{prefix}-expected-failures")
headers.append(f"{prefix}-adjusted-score")
writer.writerow(headers)
totals = {"score": [0.0] * len(runs)}
if include_expected_failures:
totals["expected_failures"] = [0.0] * len(runs)
totals["adjusted_score"] = [0.0] * len(runs)
for category, category_results in results_by_category.items():
category_row = []
category_row.append(category)
for category_index, result in enumerate(category_results):
for run_index, run_score in enumerate(category_results):
category_row.append(f"{run_score / 10:.1f}")
totals["score"][run_index] += run_score
if include_expected_failures:
expected_failures, adjusted_score = expected_failures_by_category[
category
][run_index]
category_row.append(f"{expected_failures / 10:.1f}")
category_row.append(f"{adjusted_score / 10:.1f}")
totals["expected_failures"][run_index] += expected_failures
totals["adjusted_score"][run_index] += adjusted_score
writer.writerow(category_row)
if include_total:
def get_total(score, floor=True):
total = float(score) / (len(results_by_category))
if floor:
total = math.floor(total)
total /= 10.0
return total
totals_row = ["Total"]
for i in range(len(runs)):
totals_row.append(f"{get_total(totals['score'][i]):.1f}")
if include_expected_failures:
totals_row.append(
f"{get_total(totals['expected_failures'][i], floor=False):.1f}"
)
totals_row.append(f"{get_total(totals['adjusted_score'][i]):.1f}")
writer.writerow(totals_row)
def get_wptreports(
repo: str, commit: str, task_filters: list[str], log_dir: str, check_complete: bool
) -> list[str]:
import tcfetch
return tcfetch.download_artifacts(
repo,
commit,
task_filters=task_filters,
check_complete=check_complete,
out_dir=log_dir,
)
def get_runs(commits: list[str]) -> list[tuple[str, str]]:
runs = []
for item in commits:
if ":" not in item:
raise ValueError(f"Expected commits of the form repo:commit, got {item}")
repo, commit = item.split(":", 1)
if repo not in repos:
raise ValueError(f"Unsupported repo {repo}")
runs.append((repo, commit))
return runs
def get_category_filter(
category_filters: Optional[list[str]],
) -> Optional[Callable[[str], bool]]:
if category_filters is None:
return None
filters = []
for item in category_filters:
if not item:
continue
invert = item[0] == "!"
if invert:
item = item[1:]
if item[0] == "^":
regex = re.compile(item)
else:
regex = re.compile(f"^(.*)(?:{item})")
filters.append((regex, invert))
def match_filters(category):
for regex, invert in filters:
matches = regex.match(category) is not None
if invert:
matches = not matches
if not matches:
return False
return True
return match_filters
def fetch_logs(
commits: list[str],
task_filters: list[str],
log_dir: Optional[str],
check_complete: bool,
**kwargs,
):
runs = get_runs(commits)
if not task_filters:
repos = {item[0] for item in runs}
task_filters = []
need_default_filter = False
for repo in repos:
if repo in default_fetch_task_filters:
task_filters.extend(default_fetch_task_filters[repo])
else:
need_default_filter = True
if need_default_filter:
task_filters.extend(default_fetch_task_filters[None])
if log_dir is None:
log_dir = os.path.abspath(os.curdir)
for repo, commit in runs:
task_data = get_wptreports(repo, commit, task_filters, log_dir, check_complete)
print(f"Downloaded {len(task_data)} log files")
def get_expected_failures(path: str) -> Mapping[str, set[Optional[str]]]:
expected_failures = {}
with open(path) as f:
for i, entry in enumerate(csv.reader(f)):
entry = [item.strip() for item in entry]
if not any(item for item in entry) or entry[0][0] == "#":
continue
if len(entry) > 2:
raise ValueError(
f"{path}:{i+1} expected at most two columns, got {len(entry)}"
)
if entry[0][0] != "/":
raise ValueError(
f'{path}:{i+1} "{entry[0]}" is not a valid test id (must start with "/")'
)
test_id = entry[0]
if test_id not in expected_failures:
expected_failures[test_id] = set()
if len(entry) == 2:
subtest_id = entry[1]
if subtest_id == "":
print(
f"Warning: {path}:{i+1} got empty string subtest id, remove the trailing comma to make this apply to the full test"
)
expected_failures[test_id].add(subtest_id)
else:
expected_failures[test_id].add(None)
return expected_failures
def score_runs(
commits: list[str],
local_logs: list[str],
task_filters: list[str],
log_dir: Optional[str],
year: int,
check_complete: bool,
category_filters: Optional[list[str]],
expected_failures: Optional[str],
**kwargs,
):
from wpt_interop import score
runs = get_runs(commits)
temp_dir = None
if log_dir is None:
temp_dir = tempfile.mkdtemp()
log_dir = temp_dir
try:
if expected_failures is not None:
expected_failures_data = get_expected_failures(expected_failures)
else:
expected_failures_data = None
run_logs = []
for repo, commit in runs:
if not task_filters:
if repo in default_interop_task_filters:
filters = default_interop_task_filters[repo]
else:
filters = default_interop_task_filters[None]
else:
filters = task_filters
task_data = get_wptreports(repo, commit, filters, log_dir, check_complete)
if not task_data:
print(f"Failed to get any logs for {repo}:{commit}", file=sys.stderr)
else:
run_logs.append([item.path for item in task_data])
if not run_logs and local_logs:
runs = []
for log in local_logs:
run_logs.append([log])
runs.append(("local", log))
if not run_logs:
print("No logs to process", file=sys.stderr)
include_total = category_filters is None
category_filter = (
get_category_filter(category_filters) if category_filters else None
)
scores, expected_failure_scores = score.score_wptreports(
run_logs,
year=year,
category_filter=category_filter,
expected_failures=expected_failures_data,
)
print_scores(runs, scores, expected_failure_scores, include_total)
finally:
if temp_dir is not None:
shutil.rmtree(temp_dir, True)
|