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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
import pytest
# Tests that:
# - leaf_fix gets set up first and torn down last
# - the two fix_concurrent_{1,2} fixtures run their setup/teardown code
# at the same time -- their execution can be interleaved.
def test_fixture_basic_ordering(testdir):
testdir.makepyfile(
"""
import pytest
from pytest_trio import trio_fixture
from trio.testing import Sequencer
setup_events = []
teardown_events = []
@trio_fixture
def seq():
return Sequencer()
@pytest.fixture
async def leaf_fix():
setup_events.append("leaf_fix setup")
yield
teardown_events.append("leaf_fix teardown")
assert teardown_events == [
"fix_concurrent_1 teardown 1",
"fix_concurrent_2 teardown 1",
"fix_concurrent_1 teardown 2",
"fix_concurrent_2 teardown 2",
"leaf_fix teardown",
]
@pytest.fixture
async def fix_concurrent_1(leaf_fix, seq):
async with seq(0):
setup_events.append("fix_concurrent_1 setup 1")
async with seq(2):
setup_events.append("fix_concurrent_1 setup 2")
yield
async with seq(4):
teardown_events.append("fix_concurrent_1 teardown 1")
async with seq(6):
teardown_events.append("fix_concurrent_1 teardown 2")
@pytest.fixture
async def fix_concurrent_2(leaf_fix, seq):
async with seq(1):
setup_events.append("fix_concurrent_2 setup 1")
async with seq(3):
setup_events.append("fix_concurrent_2 setup 2")
yield
async with seq(5):
teardown_events.append("fix_concurrent_2 teardown 1")
async with seq(7):
teardown_events.append("fix_concurrent_2 teardown 2")
@pytest.mark.trio
async def test_root(fix_concurrent_1, fix_concurrent_2):
assert setup_events == [
"leaf_fix setup",
"fix_concurrent_1 setup 1",
"fix_concurrent_2 setup 1",
"fix_concurrent_1 setup 2",
"fix_concurrent_2 setup 2",
]
assert teardown_events == []
"""
)
result = testdir.runpytest()
result.assert_outcomes(passed=1)
def test_nursery_fixture_teardown_ordering(testdir):
testdir.makepyfile(
"""
import pytest
from pytest_trio import trio_fixture
import trio
from trio.testing import wait_all_tasks_blocked
events = []
async def record_cancel(msg):
try:
await trio.sleep_forever()
finally:
events.append(msg)
@pytest.fixture
def fix0():
yield
assert events == [
"test",
"test cancel",
"fix2 teardown",
"fix2 cancel",
"fix1 teardown",
"fix1 cancel",
]
@trio_fixture
def fix1(nursery):
nursery.start_soon(record_cancel, "fix1 cancel")
yield
events.append("fix1 teardown")
@trio_fixture
def fix2(fix1, nursery):
nursery.start_soon(record_cancel, "fix2 cancel")
yield
events.append("fix2 teardown")
@pytest.mark.trio
async def test_root(fix2, nursery):
nursery.start_soon(record_cancel, "test cancel")
await wait_all_tasks_blocked()
events.append("test")
"""
)
result = testdir.runpytest()
result.assert_outcomes(passed=1)
def test_error_collection(testdir):
# We want to make sure that pytest ultimately reports all the different
# exceptions. We call .upper() on all the exceptions so that we have
# tokens to look for in the output corresponding to each exception, where
# those tokens don't appear at all the source (so we can't get a false
# positive due to pytest printing out the source file).
# We sleep at the beginning of all the fixtures b/c currently if any
# fixture crashes, we skip setting up unrelated fixtures whose setup
# hasn't even started yet. Maybe we shouldn't? But for now the sleeps make
# sure that all the fixtures have started before any of them start
# crashing.
testdir.makepyfile(
"""
import pytest
from pytest_trio import trio_fixture
import trio
test_started = False
@trio_fixture
async def crash_nongen():
with trio.CancelScope(shield=True):
await trio.sleep(2)
raise RuntimeError("crash_nongen".upper())
@trio_fixture
async def crash_early_agen():
with trio.CancelScope(shield=True):
await trio.sleep(2)
raise RuntimeError("crash_early_agen".upper())
yield
@trio_fixture
async def crash_late_agen():
yield
raise RuntimeError("crash_late_agen".upper())
async def crash(when, token):
with trio.CancelScope(shield=True):
await trio.sleep(when)
raise RuntimeError(token.upper())
@trio_fixture
def crash_background(nursery):
nursery.start_soon(crash, 1, "crash_background_early")
nursery.start_soon(crash, 3, "crash_background_late")
@pytest.mark.trio
async def test_all_the_crashes(
autojump_clock,
crash_nongen, crash_early_agen, crash_late_agen, crash_background,
):
global test_started
test_started = True
def test_followup():
assert not test_started
"""
)
result = testdir.runpytest()
result.assert_outcomes(passed=1, failed=1)
result.stdout.fnmatch_lines_random(
[
"*CRASH_NONGEN*",
"*CRASH_EARLY_AGEN*",
"*CRASH_LATE_AGEN*",
"*CRASH_BACKGROUND_EARLY*",
"*CRASH_BACKGROUND_LATE*",
]
)
@pytest.mark.parametrize("bgmode", ["nursery fixture", "manual nursery"])
def test_background_crash_cancellation_propagation(bgmode, testdir):
crashyfix_using_nursery_fixture = """
@trio_fixture
def crashyfix(nursery):
nursery.start_soon(crashy)
with pytest.raises(trio.Cancelled):
yield
# We should be cancelled here
teardown_deadlines["crashyfix"] = trio.current_effective_deadline()
"""
crashyfix_using_manual_nursery = """
@trio_fixture
async def crashyfix():
async with trio.open_nursery() as nursery:
nursery.start_soon(crashy)
with pytest.raises(trio.Cancelled):
yield
# We should be cancelled here
teardown_deadlines["crashyfix"] = trio.current_effective_deadline()
"""
if bgmode == "nursery fixture":
crashyfix = crashyfix_using_nursery_fixture
else:
crashyfix = crashyfix_using_manual_nursery
testdir.makepyfile(
"""
import pytest
from pytest_trio import trio_fixture
import trio
teardown_deadlines = {}
final_time = None
async def crashy():
await trio.sleep(1)
raise RuntimeError
CRASHYFIX_HERE
@trio_fixture
def sidefix():
yield
# We should NOT be cancelled here
teardown_deadlines["sidefix"] = trio.current_effective_deadline()
@trio_fixture
def userfix(crashyfix):
yield
# Currently we should NOT be cancelled here... though maybe this
# should change?
teardown_deadlines["userfix"] = trio.current_effective_deadline()
@pytest.mark.trio
async def test_it(userfix, sidefix, autojump_clock):
try:
await trio.sleep_forever()
finally:
global final_time
final_time = trio.current_time()
def test_post():
assert teardown_deadlines == {
"crashyfix": -float("inf"),
"sidefix": float("inf"),
"userfix": float("inf"),
}
assert final_time == 1
""".replace(
"CRASHYFIX_HERE", crashyfix
)
)
result = testdir.runpytest()
result.assert_outcomes(passed=1, failed=1)
# See the thread starting at
# https://github.com/python-trio/pytest-trio/pull/77#issuecomment-499979536
# for details on the real case that this was minimized from
def test_complex_cancel_interaction_regression(testdir):
testdir.makepyfile(
"""
import pytest
import trio
from contextlib import asynccontextmanager
async def die_soon():
raise RuntimeError('oops'.upper())
@asynccontextmanager
async def async_finalizer():
try:
yield
finally:
await trio.sleep(0)
@pytest.fixture
async def fixture(nursery):
async with trio.open_nursery() as nursery1:
async with async_finalizer():
async with trio.open_nursery() as nursery2:
nursery2.start_soon(die_soon)
yield
nursery1.cancel_scope.cancel()
@pytest.mark.trio
async def test_try(fixture):
await trio.sleep_forever()
"""
)
result = testdir.runpytest()
result.assert_outcomes(passed=0, failed=1)
result.stdout.fnmatch_lines_random(["*OOPS*"])
# Makes sure that
# See https://github.com/python-trio/pytest-trio/issues/120
def test_fixtures_crash_and_hang_concurrently(testdir):
testdir.makepyfile(
"""
import trio
import pytest
@pytest.fixture
async def hanging_fixture():
print("hanging_fixture:start")
await trio.Event().wait()
yield
print("hanging_fixture:end")
@pytest.fixture
async def exploding_fixture():
print("exploding_fixture:start")
raise Exception
yield
print("exploding_fixture:end")
@pytest.mark.trio
async def test_fails_right_away(exploding_fixture):
...
@pytest.mark.trio
async def test_fails_needs_some_scopes(exploding_fixture, hanging_fixture):
...
"""
)
result = testdir.runpytest()
result.assert_outcomes(passed=0, failed=2)
|