-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathconftest.py
210 lines (183 loc) · 8.17 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
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
import sys
import os.path
from pathlib import Path
import warnings
import pytest
import asyncio
import trio_asyncio
import inspect
import unittest
@pytest.fixture
async def loop():
async with trio_asyncio.open_loop() as loop:
yield loop
# auto-trio-ize all async functions
@pytest.hookimpl(tryfirst=True)
def pytest_pyfunc_call(pyfuncitem):
if inspect.iscoroutinefunction(pyfuncitem.obj):
pyfuncitem.obj = pytest.mark.trio(pyfuncitem.obj)
# Map collection of the python/ submodule to python's asyncio unittests
try:
# the global 'test' package installed with Python
from test import test_asyncio
except ImportError:
warnings.warn(
"Can't run the Python asyncio tests because they're not installed. "
"On a Debian/Ubuntu system, you might need to install the "
"libpython{}.{}-testsuite package.".format(*sys.version_info[:2]),
RuntimeWarning,
)
else:
# threading_cleanup() causes a 5-second or so delay (100
# gc.collect()'s) and warning on any test that holds a reference
# to the event loop in the testsuite class, because
# SyncTrioEventLoop spawns a thread that only exits when the
# loop is closed. Nerf it.
try:
from test.support import threading_cleanup
except ImportError:
# Python 3.10+
from test.support.threading_helper import threading_cleanup
def threading_no_cleanup(*original_values):
pass
threading_cleanup.__code__ = threading_no_cleanup.__code__
asyncio_test_dir = Path(test_asyncio.__path__[0])
def aio_test_nodeid(path):
try:
relpath = path.relative_to(asyncio_test_dir)
except ValueError:
return None
else:
return "/Python-{}.{}/test_asyncio/{}".format(
*sys.version_info[:2], relpath
)
# A pytest.Module that will only collect unittest.TestCase
# classes, so that we don't get spurious warnings about things
# like TestSelector and TestEventLoop (which are fakes used by the
# tests, directly containing no tests themselves) not being collectable.
class UnittestOnlyModule(pytest.Module):
def istestclass(self, obj, name):
return isinstance(obj, unittest.TestCase)
# A pytest.Package whose only purpose is to mark that its children should
# become UnittestOnlyModules (or other UnittestOnlyPackages).
class UnittestOnlyPackage(pytest.Package):
def collect(self):
for node in super().collect():
if isinstance(node, pytest.Package):
node.__class__ = UnittestOnlyPackage
elif isinstance(node, pytest.Module):
node.__class__ = UnittestOnlyModule
node._nodeid = node._nodeid.replace("/__init__.py::", "/")
node._nodeid = node._nodeid.replace("/.::", "/")
yield node
@pytest.hookimpl(tryfirst=True)
def pytest_collect_directory(path, parent):
from . import python
candidate = str(path.resolve())
expected = os.path.realpath(os.path.dirname(python.__file__))
if candidate == expected:
fwd_path = Path(os.path.dirname(test_asyncio.__file__))
node = UnittestOnlyPackage.from_parent(parent, path=fwd_path)
# This keeps all test names from showing as "."
node._nodeid = aio_test_nodeid(fwd_path)
return node
def pytest_collection_modifyitems(items):
by_id = {item.nodeid: item for item in items}
aio_test_root = aio_test_nodeid(asyncio_test_dir / "foo")[:-3]
def mark(marker, rel_id, may_be_absent=False):
try:
by_id[aio_test_root + rel_id].add_marker(marker)
except KeyError:
if may_be_absent:
return
warnings.warn(
"Tried to add marker {} to {}, but that test doesn't exist.".format(
marker, rel_id
),
RuntimeWarning,
stacklevel=3,
)
def xfail(rel_id):
mark(pytest.mark.xfail, rel_id)
def skip(rel_id):
mark(pytest.mark.skip, rel_id)
# Remainder of these have unclear issues
if sys.version_info < (3, 8):
xfail(
"test_base_events.py::BaseEventLoopWithSelectorTests::"
"test_log_slow_callbacks"
)
if sys.version_info >= (3, 8):
xfail(
"test_tasks.py::RunCoroutineThreadsafeTests::"
"test_run_coroutine_threadsafe_task_cancelled"
)
if sys.version_info < (3, 11):
xfail(
"test_tasks.py::RunCoroutineThreadsafeTests::"
"test_run_coroutine_threadsafe_with_timeout"
)
if sys.platform == "win32":
# hangs on 3.11+, fails without hanging on 3.8-3.10
skip("test_windows_events.py::ProactorLoopCtrlC::test_ctrl_c")
if sys.implementation.name == "pypy":
# This test depends on the C implementation of asyncio.Future, and
# unlike most such tests it is not configured to be skipped if
# the C implementation is not available
xfail(
"test_futures.py::CFutureInheritanceTests::"
"test_inherit_without_calling_super_init"
)
if sys.version_info < (3, 8):
# These tests assume CPython-style immediate finalization of
# objects when they become unreferenced
for test in (
"test_create_connection_memory_leak",
"test_handshake_timeout",
"test_start_tls_client_reg_proto_1",
):
xfail("test_sslproto.py::SelectorStartTLSTests::{}".format(test))
# This test depends on the name of the loopback interface. On Github Actions
# it fails on macOS always, and on Linux/Windows except on 3.8.
skip(
"test_base_events.py::BaseEventLoopWithSelectorTests::"
"test_create_connection_ipv6_scope"
)
if sys.platform == "darwin":
# https://foss.heptapod.net/pypy/pypy/-/issues/3964 causes infinite loops
for nodeid, item in by_id.items():
if "sendfile" in nodeid:
item.add_marker(pytest.mark.skip)
if sys.version_info >= (3, 11):
# This tries to use a mock ChildWatcher that does something unlikely.
# We don't support it because we don't actually use the ChildWatcher
# to manage subprocesses.
xfail(
"test_subprocess.py::GenericWatcherTests::"
"test_create_subprocess_fails_with_inactive_watcher"
)
# This forks a child process and tries to run a new event loop there,
# but Trio isn't fork-safe -- it hangs nondeterministically.
skip("test_events.py::TestPyGetEventLoop::test_get_event_loop_new_process")
skip("test_events.py::TestCGetEventLoop::test_get_event_loop_new_process")
# This test attempts to stop the event loop from within a
# run_until_complete coroutine, which hangs on our implementation.
# Only present on releases post November 2023
mark(
pytest.mark.skip,
"test_streams.py::StreamTests::test_loop_is_closed_resource_warnings",
may_be_absent=True,
)
if sys.version_info >= (3, 12):
# These tests assume asyncio.sleep(0) is sufficient to run all pending tasks
xfail(
"test_futures2.py::PyFutureTests::test_task_exc_handler_correct_context"
)
xfail(
"test_futures2.py::CFutureTests::test_task_exc_handler_correct_context"
)
# This test assumes that get_event_loop_policy().get_event_loop() doesn't
# automatically return the running loop
skip(
"test_subprocess.py::GenericWatcherTests::test_create_subprocess_with_pidfd"
)