forked from pytest-dev/pytest-twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_basic.py
executable file
·657 lines (524 loc) · 17.5 KB
/
test_basic.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
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
import sys
import textwrap
import pytest
# https://docs.python.org/3/whatsnew/3.5.html#pep-492-coroutines-with-async-and-await-syntax
ASYNC_AWAIT = sys.version_info >= (3, 5)
# https://docs.python.org/3/whatsnew/3.6.html#pep-525-asynchronous-generators
ASYNC_GENERATORS = sys.version_info >= (3, 6)
def assert_outcomes(run_result, outcomes):
formatted_output = format_run_result_output_for_assert(run_result)
try:
result_outcomes = run_result.parseoutcomes()
except ValueError:
assert False, formatted_output
for name, value in outcomes.items():
assert result_outcomes.get(name) == value, formatted_output
def format_run_result_output_for_assert(run_result):
tpl = """
---- stdout
{}
---- stderr
{}
----
"""
return textwrap.dedent(tpl).format(
run_result.stdout.str(), run_result.stderr.str()
)
def skip_if_reactor_not(request, expected_reactor):
actual_reactor = request.config.getoption("reactor", "default")
if actual_reactor != expected_reactor:
pytest.skip(
"reactor is {} not {}".format(actual_reactor, expected_reactor),
)
def skip_if_no_async_await():
return pytest.mark.skipif(
not ASYNC_AWAIT,
reason="async/await syntax not supported on Python <3.5",
)
def skip_if_no_async_generators():
return pytest.mark.skipif(
not ASYNC_GENERATORS,
reason="async generators not support on Python <3.6",
)
@pytest.fixture
def cmd_opts(request):
reactor = request.config.getoption("reactor", "default")
return ("--reactor={}".format(reactor),)
def test_inline_callbacks_in_pytest():
assert hasattr(pytest, 'inlineCallbacks')
@pytest.mark.parametrize(
'decorator, should_warn',
(
('pytest.inlineCallbacks', True),
('pytest_twisted.inlineCallbacks', False),
),
)
def test_inline_callbacks_in_pytest_deprecation(
testdir,
cmd_opts,
decorator,
should_warn,
):
import_path, _, _ = decorator.rpartition('.')
test_file = """
import {import_path}
def test_deprecation():
@{decorator}
def f():
yield 42
""".format(import_path=import_path, decorator=decorator)
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
expected_outcomes = {"passed": 1}
if should_warn:
expected_outcomes["warnings"] = 1
assert_outcomes(rr, expected_outcomes)
def test_blockon_in_pytest():
assert hasattr(pytest, 'blockon')
@pytest.mark.parametrize(
'function, should_warn',
(
('pytest.blockon', True),
('pytest_twisted.blockon', False),
),
)
def test_blockon_in_pytest_deprecation(
testdir,
cmd_opts,
function,
should_warn,
):
import_path, _, _ = function.rpartition('.')
test_file = """
import warnings
from twisted.internet import reactor, defer
import pytest
import {import_path}
@pytest.fixture
def foo(request):
d = defer.Deferred()
d.callback(None)
{function}(d)
def test_succeed(foo):
pass
""".format(import_path=import_path, function=function)
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
expected_outcomes = {"passed": 1}
if should_warn:
expected_outcomes["warnings"] = 1
assert_outcomes(rr, expected_outcomes)
def test_fail_later(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
def test_fail():
def doit():
try:
1 / 0
except:
d.errback()
d = defer.Deferred()
reactor.callLater(0.01, doit)
return d
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", *cmd_opts)
assert_outcomes(rr, {"failed": 1})
def test_succeed_later(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
def test_succeed():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 1)
return d
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_non_deferred(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
def test_succeed():
return 42
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_exception(testdir, cmd_opts):
test_file = """
def test_more_fail():
raise RuntimeError("foo")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", *cmd_opts)
assert_outcomes(rr, {"failed": 1})
def test_inlineCallbacks(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest.fixture(scope="module", params=["fs", "imap", "web"])
def foo(request):
return request.param
@pytest_twisted.inlineCallbacks
def test_succeed(foo):
yield defer.succeed(foo)
if foo == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 1})
@skip_if_no_async_await()
def test_async_await(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest.fixture(scope="module", params=["fs", "imap", "web"])
def foo(request):
return request.param
@pytest_twisted.ensureDeferred
async def test_succeed(foo):
await defer.succeed(foo)
if foo == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 1})
def test_twisted_greenlet(testdir, cmd_opts):
test_file = """
import pytest, greenlet
MAIN = None
@pytest.fixture(scope="session", autouse=True)
def set_MAIN(request, twisted_greenlet):
global MAIN
MAIN = twisted_greenlet
def test_MAIN():
assert MAIN is not None
assert MAIN is greenlet.getcurrent()
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_blockon_in_fixture(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest.fixture(scope="module", params=["fs", "imap", "web"])
def foo(request):
d1, d2 = defer.Deferred(), defer.Deferred()
reactor.callLater(0.01, d1.callback, 1)
reactor.callLater(0.02, d2.callback, request.param)
pytest_twisted.blockon(d1)
return d2
@pytest_twisted.inlineCallbacks
def test_succeed(foo):
x = yield foo
if x == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 1})
@skip_if_no_async_await()
def test_blockon_in_fixture_async(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest.fixture(scope="module", params=["fs", "imap", "web"])
def foo(request):
d1, d2 = defer.Deferred(), defer.Deferred()
reactor.callLater(0.01, d1.callback, 1)
reactor.callLater(0.02, d2.callback, request.param)
pytest_twisted.blockon(d1)
return d2
@pytest_twisted.ensureDeferred
async def test_succeed(foo):
x = await foo
if x == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 1})
@skip_if_no_async_await()
def test_async_fixture(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_fixture(scope="function", params=["fs", "imap", "web"])
@pytest.mark.redgreenblue
async def foo(request):
d1, d2 = defer.Deferred(), defer.Deferred()
reactor.callLater(0.01, d1.callback, 1)
reactor.callLater(0.02, d2.callback, request.param)
await d1
return d2,
@pytest_twisted.inlineCallbacks
def test_succeed_blue(foo):
x = yield foo[0]
if x == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 1})
@skip_if_no_async_generators()
def test_async_yield_fixture_concurrent_teardown(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
here = defer.Deferred()
there = defer.Deferred()
@pytest_twisted.async_yield_fixture()
async def this():
yield 42
there.callback(None)
reactor.callLater(5, here.cancel)
await here
@pytest_twisted.async_yield_fixture()
async def that():
yield 37
here.callback(None)
reactor.callLater(5, there.cancel)
await there
def test_succeed(this, that):
pass
"""
testdir.makepyfile(test_file)
# TODO: add a timeout, failure just hangs indefinitely for now
# https://github.com/pytest-dev/pytest/issues/4073
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
@skip_if_no_async_generators()
def test_async_yield_fixture(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_yield_fixture(
scope="function",
params=["fs", "imap", "web", "gopher", "archie"],
)
async def foo(request):
d1, d2 = defer.Deferred(), defer.Deferred()
reactor.callLater(0.01, d1.callback, 1)
reactor.callLater(0.02, d2.callback, request.param)
await d1
# Twisted doesn't allow calling back with a Deferred as a value.
# This deferred is being wrapped up in a tuple to sneak through.
# https://github.com/twisted/twisted/blob/c0f1394c7bfb04d97c725a353a1f678fa6a1c602/src/twisted/internet/defer.py#L459
yield d2,
if request.param == "gopher":
raise RuntimeError("gaz")
if request.param == "archie":
yield 42
@pytest_twisted.inlineCallbacks
def test_succeed(foo):
x = yield foo[0]
if x == "web":
raise RuntimeError("baz")
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2, "failed": 3})
@skip_if_no_async_generators()
def test_async_yield_fixture_function_scope(testdir, cmd_opts):
test_file = """
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
check_me = 0
@pytest_twisted.async_yield_fixture(scope="function")
async def foo():
global check_me
if check_me != 0:
raise Exception('check_me already modified before fixture run')
check_me = 1
yield 42
if check_me != 2:
raise Exception(
'check_me not updated properly: {}'.format(check_me),
)
check_me = 0
def test_first(foo):
global check_me
assert check_me == 1
assert foo == 42
check_me = 2
def test_second(foo):
global check_me
assert check_me == 1
assert foo == 42
check_me = 2
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 2})
def test_blockon_in_hook(testdir, cmd_opts, request):
skip_if_reactor_not(request, "default")
conftest_file = """
import pytest_twisted as pt
from twisted.internet import reactor, defer
def pytest_configure(config):
pt.init_default_reactor()
d1, d2 = defer.Deferred(), defer.Deferred()
reactor.callLater(0.01, d1.callback, 1)
reactor.callLater(0.02, d2.callback, 1)
pt.blockon(d1)
pt.blockon(d2)
"""
testdir.makeconftest(conftest_file)
test_file = """
from twisted.internet import reactor, defer
def test_succeed():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 1)
return d
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_wrong_reactor(testdir, cmd_opts, request):
skip_if_reactor_not(request, "default")
conftest_file = """
def pytest_addhooks():
import twisted.internet.reactor
twisted.internet.reactor = None
"""
testdir.makeconftest(conftest_file)
test_file = """
def test_succeed():
pass
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert "WrongReactorAlreadyInstalledError" in rr.stderr.str()
def test_blockon_in_hook_with_qt5reactor(testdir, cmd_opts, request):
skip_if_reactor_not(request, "qt5reactor")
conftest_file = """
import pytest_twisted as pt
import pytestqt
from twisted.internet import defer
def pytest_configure(config):
pt.init_qt5_reactor()
d = defer.Deferred()
from twisted.internet import reactor
reactor.callLater(0.01, d.callback, 1)
pt.blockon(d)
"""
testdir.makeconftest(conftest_file)
test_file = """
from twisted.internet import reactor, defer
def test_succeed():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 1)
return d
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_wrong_reactor_with_qt5reactor(testdir, cmd_opts, request):
skip_if_reactor_not(request, "qt5reactor")
conftest_file = """
def pytest_addhooks():
import twisted.internet.default
twisted.internet.default.install()
"""
testdir.makeconftest(conftest_file)
test_file = """
def test_succeed():
pass
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert "WrongReactorAlreadyInstalledError" in rr.stderr.str()
def test_pytest_from_reactor_thread(testdir, request):
skip_if_reactor_not(request, "default")
test_file = """
import pytest
import pytest_twisted
from twisted.internet import reactor, defer
@pytest.fixture
def fix():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 42)
return pytest_twisted.blockon(d)
def test_simple(fix):
assert fix == 42
@pytest_twisted.inlineCallbacks
def test_fail():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 1)
yield d
assert False
"""
testdir.makepyfile(test_file)
runner_file = """
import pytest
from twisted.internet import reactor
from twisted.internet.defer import inlineCallbacks
from twisted.internet.threads import deferToThread
codes = []
@inlineCallbacks
def main():
try:
codes.append((yield deferToThread(pytest.main, ['-k simple'])))
codes.append((yield deferToThread(pytest.main, ['-k fail'])))
finally:
reactor.stop()
if __name__ == '__main__':
reactor.callLater(0, main)
reactor.run()
codes == [0, 1] or exit(1)
"""
testdir.makepyfile(runner=runner_file)
# check test file is ok in standalone mode:
rr = testdir.run(sys.executable, "-m", "pytest", "-v")
assert_outcomes(rr, {"passed": 1, "failed": 1})
# test embedded mode:
assert testdir.run(sys.executable, "runner.py").ret == 0
def test_blockon_in_hook_with_asyncio(testdir, cmd_opts, request):
skip_if_reactor_not(request, "asyncio")
conftest_file = """
import pytest_twisted as pt
from twisted.internet import defer
def pytest_configure(config):
pt.init_asyncio_reactor()
d = defer.Deferred()
from twisted.internet import reactor
reactor.callLater(0.01, d.callback, 1)
pt.blockon(d)
"""
testdir.makeconftest(conftest_file)
test_file = """
from twisted.internet import reactor, defer
def test_succeed():
d = defer.Deferred()
reactor.callLater(0.01, d.callback, 1)
return d
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_wrong_reactor_with_asyncio(testdir, cmd_opts, request):
skip_if_reactor_not(request, "asyncio")
conftest_file = """
def pytest_addhooks():
import twisted.internet.default
twisted.internet.default.install()
"""
testdir.makeconftest(conftest_file)
test_file = """
def test_succeed():
pass
"""
testdir.makepyfile(test_file)
rr = testdir.run(sys.executable, "-m", "pytest", "-v", *cmd_opts)
assert "WrongReactorAlreadyInstalledError" in rr.stderr.str()