-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_all_and_update_results.py
executable file
·209 lines (178 loc) · 6.69 KB
/
run_all_and_update_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
#!/usr/bin/env python3
# Copyright (c) 2021, Linus Groh <[email protected]>
#
# SPDX-License-Identifier: MIT
from __future__ import annotations
import json
import shlex
import subprocess
import sys
import time
from argparse import ArgumentParser
from pathlib import Path
def run_command(command: str, **kwargs) -> str:
process = subprocess.run(
shlex.split(command), stdout=subprocess.PIPE, text=True, **kwargs
)
return process.stdout.strip()
def get_git_revision(path: Path) -> str:
return run_command(f"git --git-dir {path / '.git'} rev-parse HEAD")
def get_git_commit_timestamp(path: Path) -> int:
return int(run_command(f"git --git-dir {path / '.git'} log -1 --pretty=format:%ct"))
def find_lagom_executable(test262_path: Path, serenity_path: Path, name: str):
# Build/bin: Local build
# serenity_path / Build/lagom/bin: Meta/Lagom source dir
# _deps: Local build before 2023-08-13
paths = [
test262_path / f"Build/bin/{name}",
serenity_path / f"Build/lagom/bin/{name}",
test262_path / f"Build/_deps/lagom-build/bin/{name}",
]
for path in paths:
if path.exists():
return path
raise RuntimeError(f"Unable to find {name}")
def main() -> None:
# NOTE: There's deliberately no error handling here, if any of
# these fail we might as well let the script blow up in our face -
# the result would be incomplete anyway.
parser = ArgumentParser(
description=(
"Run the test262 and test262-parser-tests with "
"LibJS and update the results JSON file"
)
)
parser.add_argument(
"--serenity",
required=True,
metavar="PATH",
help="path to the 'serenity' directory",
)
parser.add_argument(
"--test262",
required=True,
metavar="PATH",
help="path to the 'test262' directory",
)
parser.add_argument(
"--test262-parser-tests",
required=True,
metavar="PATH",
help="path to the 'test262-parser-tests' directory",
)
parser.add_argument(
"--results-json",
required=True,
metavar="PATH",
help="path to the results JSON file",
)
parser.add_argument(
"--per-file-output",
default=None,
type=str,
metavar="PATH",
help="output the per-file result to this file",
)
args = parser.parse_args()
libjs_test262 = Path(__file__).parent
serenity = Path(args.serenity)
test262 = Path(args.test262)
test262_parser_tests = Path(args.test262_parser_tests)
results_json = Path(args.results_json)
if results_json.exists():
print(f"Reading existing results from {results_json}...")
results = json.loads(results_json.read_text())
else:
print(f"Creating new results file at {results_json}...")
results_json.parent.mkdir(mode=0o755, parents=True, exist_ok=True)
results_json.touch(mode=0o644)
results = []
print(f"Existing test results: {len(results)}")
commit_timestamp = get_git_commit_timestamp(serenity)
run_timestamp = int(time.time())
serenity_test_js = find_lagom_executable(libjs_test262, serenity, "test-js")
libjs_test262_runner = find_lagom_executable(
libjs_test262, serenity, "test262-runner"
)
libjs_test262_main_py = libjs_test262 / "main.py"
version_serenity = get_git_revision(serenity)
version_libjs_test262 = get_git_revision(libjs_test262)
version_test262 = get_git_revision(test262)
version_test262_parser_tests = get_git_revision(test262_parser_tests)
result_for_current_revision = (
result
for result in results
if result["versions"]["serenity"] == version_serenity
)
if next(result_for_current_revision, None):
print(
f"Result for revision {version_serenity[:7]} already exists, "
"remove it manually if you wish to re-run the tests."
)
sys.exit(1)
print("Running test262-parser-tests...")
test_js_output = json.loads(
run_command(
f"{serenity_test_js} --test262-parser-tests {test262_parser_tests} --json",
env={"SERENITY_SOURCE_DIR": str(serenity)},
)
)
test_js_results = test_js_output["results"]["tests"]
print("Running test262...")
libjs_test262_output = json.loads(
# This is not the way, but I can't be bothered to import this stuff. :^)
run_command(
f"python3 {libjs_test262_main_py} "
f"--libjs-test262-runner {libjs_test262_runner} "
f"--test262 {test262} "
"--silent --summary --json "
+ (
""
if args.per_file_output is None
else f"--per-file {args.per_file_output} "
)
)
)
libjs_test262_results = libjs_test262_output["results"]["test"]["results"]
result = {
"commit_timestamp": commit_timestamp,
"run_timestamp": run_timestamp,
"versions": {
"serenity": version_serenity,
"libjs-test262": version_libjs_test262,
"test262": version_test262,
"test262-parser-tests": version_test262_parser_tests,
},
"tests": {
"test262": {
"duration": libjs_test262_output["duration"],
"results": {
"total": libjs_test262_output["results"]["test"]["count"],
"passed": libjs_test262_results["PASSED"],
"failed": libjs_test262_results["FAILED"],
"skipped": libjs_test262_results["SKIPPED"],
"metadata_error": libjs_test262_results["METADATA_ERROR"],
"harness_error": libjs_test262_results["HARNESS_ERROR"],
"timeout_error": libjs_test262_results["TIMEOUT_ERROR"],
"process_error": libjs_test262_results["PROCESS_ERROR"],
"runner_exception": libjs_test262_results["RUNNER_EXCEPTION"],
"todo_error": libjs_test262_results["TODO_ERROR"],
},
},
"test262-parser-tests": {
"duration": test_js_output["duration"],
"results": {
"total": test_js_results["total"],
"passed": test_js_results["passed"],
"failed": test_js_results["failed"],
# Ignore "skipped", there's no skipping of test262-parser-tests
},
},
},
}
print("Done. New test result:")
print(json.dumps(result))
results.append(result)
results_json.write_text(f"{json.dumps(results, separators=(',', ':'))}\n")
if __name__ == "__main__":
main()