forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
178 lines (145 loc) · 5.92 KB
/
conftest.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
"""
Various common utilities for testing.
"""
import pathlib
import sys
import pytest
ROOT_PATH = pathlib.Path(__file__).parents[0].resolve()
DIST_PATH = ROOT_PATH / "dist"
sys.path.append(str(ROOT_PATH / "pyodide-build"))
sys.path.append(str(ROOT_PATH / "src" / "py"))
from pyodide_test_runner.utils import maybe_skip_test
from pyodide_test_runner.utils import package_is_built as _package_is_built
from pyodide_test_runner.utils import parse_xfail_browsers
def pytest_addoption(parser):
group = parser.getgroup("general")
group.addoption(
"--run-xfail",
action="store_true",
help="If provided, tests marked as xfail will be run",
)
group.addoption(
"--skip-passed",
action="store_true",
help=(
"If provided, tests that passed on the last run will be skipped. "
"CAUTION: this will skip tests even if tests are modified"
),
)
def pytest_configure(config):
"""Monkey patch the function cwd_relative_nodeid
returns the description of a test for the short summary table. Monkey patch
it to reduce the verbosity of the test names in the table. This leaves
enough room to see the information about the test failure in the summary.
"""
global CONFIG
old_cwd_relative_nodeid = config.cwd_relative_nodeid
def cwd_relative_nodeid(*args):
result = old_cwd_relative_nodeid(*args)
result = result.replace("src/tests/", "")
result = result.replace("packages/", "")
result = result.replace("::test_", "::")
return result
config.cwd_relative_nodeid = cwd_relative_nodeid
pytest.pyodide_dist_dir = config.getoption("--dist-dir")
def pytest_collection_modifyitems(config, items):
"""Called after collect is completed.
Parameters
----------
config : pytest config
items : list of collected items
"""
prev_test_result = {}
if config.getoption("--skip-passed"):
cache = config.cache
prev_test_result = cache.get("cache/lasttestresult", {})
for item in items:
if prev_test_result.get(item.nodeid) in ("passed", "warnings", "skip_passed"):
item.add_marker(pytest.mark.skip(reason="previously passed"))
continue
maybe_skip_test(item, config.getoption("--dist-dir"), delayed=True)
# Save test results to a cache
# Code adapted from: https://github.com/pytest-dev/pytest/blob/main/src/_pytest/pastebin.py
@pytest.hookimpl(trylast=True)
def pytest_terminal_summary(terminalreporter):
tr = terminalreporter
cache = tr.config.cache
assert cache
test_result = {}
for status in tr.stats:
if status in ("warnings", "deselected"):
continue
for test in tr.stats[status]:
try:
if test.longrepr and test.longrepr[2] in "previously passed":
test_result[test.nodeid] = "skip_passed"
else:
test_result[test.nodeid] = test.outcome
except Exception:
pass
cache.set("cache/lasttestresult", test_result)
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_call(item):
"""We want to run extra verification at the start and end of each test to
check that we haven't leaked memory. According to pytest issue #5044, it's
not possible to "Fail" a test from a fixture (no matter what you do, pytest
sets the test status to "Error"). The approach suggested there is hook
pytest_runtest_call as we do here. To get access to the selenium fixture, we
imitate the definition of pytest_pyfunc_call:
https://github.com/pytest-dev/pytest/blob/6.2.2/src/_pytest/python.py#L177
Pytest issue #5044:
https://github.com/pytest-dev/pytest/issues/5044
"""
browser = None
for fixture in item._fixtureinfo.argnames:
if fixture.startswith("selenium"):
browser = item.funcargs[fixture]
break
if not browser:
yield
return
xfail_msg = parse_xfail_browsers(item).get(browser.browser, None)
if xfail_msg is not None:
pytest.xfail(xfail_msg)
if not browser.pyodide_loaded:
yield
return
trace_pyproxies = pytest.mark.skip_pyproxy_check.mark not in item.own_markers
trace_hiwire_refs = (
trace_pyproxies and pytest.mark.skip_refcount_check.mark not in item.own_markers
)
yield from extra_checks_test_wrapper(browser, trace_hiwire_refs, trace_pyproxies)
def extra_checks_test_wrapper(browser, trace_hiwire_refs, trace_pyproxies):
"""Extra conditions for test to pass:
1. No explicit request for test to fail
2. No leaked JsRefs
3. No leaked PyProxys
"""
browser.clear_force_test_fail()
init_num_keys = browser.get_num_hiwire_keys()
if trace_pyproxies:
browser.enable_pyproxy_tracing()
init_num_proxies = browser.get_num_proxies()
a = yield
try:
# If these guys cause a crash because the test really screwed things up,
# we override the error message with the better message returned by
# a.result() in the finally block.
browser.disable_pyproxy_tracing()
browser.restore_state()
finally:
# if there was an error in the body of the test, flush it out by calling
# get_result (we don't want to override the error message by raising a
# different error here.)
a.get_result()
if browser.force_test_fail:
raise Exception("Test failure explicitly requested but no error was raised.")
if trace_pyproxies and trace_hiwire_refs:
delta_proxies = browser.get_num_proxies() - init_num_proxies
delta_keys = browser.get_num_hiwire_keys() - init_num_keys
assert (delta_proxies, delta_keys) == (0, 0) or delta_keys < 0
if trace_hiwire_refs:
delta_keys = browser.get_num_hiwire_keys() - init_num_keys
assert delta_keys <= 0
def package_is_built(package_name):
return _package_is_built(package_name, pytest.pyodide_dist_dir)