-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtest_basic.py
executable file
·1035 lines (820 loc) · 26.9 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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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)
timeout = 15
# https://github.com/pytest-dev/pytest/issues/6505
def force_plural(name):
if name in {"error", "warning"}:
return name + "s"
return name
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
normalized_result_outcomes = {
force_plural(name): outcome
for name, outcome in result_outcomes.items()
if name != "seconds"
}
assert normalized_result_outcomes == outcomes, 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()
)
@pytest.fixture(name="default_conftest", autouse=True)
def _default_conftest(testdir):
testdir.makeconftest(textwrap.dedent("""
import pytest
import pytest_twisted
@pytest.hookimpl(tryfirst=True)
def pytest_configure(config):
pytest_twisted._use_asyncio_selector_if_required(config=config)
"""))
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 (
sys.executable,
"-m",
"pytest",
"-v",
"--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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2, "failed": 1})
@skip_if_no_async_await()
def test_async_fixture(testdir, cmd_opts):
pytest_ini_file = """
[pytest]
markers =
redgreenblue
"""
testdir.makefile('.ini', pytest=pytest_ini_file)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
# TODO: this is getting super imprecise...
assert_outcomes(rr, {"passed": 4, "failed": 1, "errors": 2})
@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(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2})
@skip_if_no_async_await()
def test_async_simple_fixture_in_fixture(testdir, cmd_opts):
test_file = """
import itertools
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_fixture(name='four')
async def fixture_four():
return 4
@pytest_twisted.async_fixture(name='doublefour')
async def fixture_doublefour(four):
return 2 * four
@pytest_twisted.ensureDeferred
async def test_four(four):
assert four == 4
@pytest_twisted.ensureDeferred
async def test_doublefour(doublefour):
assert doublefour == 8
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2})
@skip_if_no_async_generators()
def test_async_yield_simple_fixture_in_fixture(testdir, cmd_opts):
test_file = """
import itertools
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_yield_fixture(name='four')
async def fixture_four():
yield 4
@pytest_twisted.async_yield_fixture(name='doublefour')
async def fixture_doublefour(four):
yield 2 * four
@pytest_twisted.ensureDeferred
async def test_four(four):
assert four == 4
@pytest_twisted.ensureDeferred
async def test_doublefour(doublefour):
assert doublefour == 8
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2})
@skip_if_no_async_await()
@pytest.mark.parametrize('innerasync', [
pytest.param(truth, id='innerasync={}'.format(truth))
for truth in [True, False]
])
def test_async_fixture_in_fixture(testdir, cmd_opts, innerasync):
maybe_async = 'async ' if innerasync else ''
maybe_await = 'await ' if innerasync else ''
test_file = """
import itertools
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_fixture(name='increment')
async def fixture_increment():
counts = itertools.count()
{maybe_async}def increment():
return next(counts)
return increment
@pytest_twisted.async_fixture(name='doubleincrement')
async def fixture_doubleincrement(increment):
{maybe_async}def doubleincrement():
n = {maybe_await}increment()
return n * 2
return doubleincrement
@pytest_twisted.ensureDeferred
async def test_increment(increment):
first = {maybe_await}increment()
second = {maybe_await}increment()
assert (first, second) == (0, 1)
@pytest_twisted.ensureDeferred
async def test_doubleincrement(doubleincrement):
first = {maybe_await}doubleincrement()
second = {maybe_await}doubleincrement()
assert (first, second) == (0, 2)
""".format(maybe_async=maybe_async, maybe_await=maybe_await)
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2})
# assert_outcomes(rr, {"passed": 1})
@skip_if_no_async_generators()
@pytest.mark.parametrize('innerasync', [
pytest.param(truth, id='innerasync={}'.format(truth))
for truth in [True, False]
])
def test_async_yield_fixture_in_fixture(testdir, cmd_opts, innerasync):
maybe_async = 'async ' if innerasync else ''
maybe_await = 'await ' if innerasync else ''
test_file = """
import itertools
from twisted.internet import reactor, defer
import pytest
import pytest_twisted
@pytest_twisted.async_yield_fixture(name='increment')
async def fixture_increment():
counts = itertools.count()
{maybe_async}def increment():
return next(counts)
yield increment
@pytest_twisted.async_yield_fixture(name='doubleincrement')
async def fixture_doubleincrement(increment):
{maybe_async}def doubleincrement():
n = {maybe_await}increment()
return n * 2
yield doubleincrement
@pytest_twisted.ensureDeferred
async def test_increment(increment):
first = {maybe_await}increment()
second = {maybe_await}increment()
assert (first, second) == (0, 1)
@pytest_twisted.ensureDeferred
async def test_doubleincrement(doubleincrement):
first = {maybe_await}doubleincrement()
second = {maybe_await}doubleincrement()
assert (first, second) == (0, 2)
""".format(maybe_async=maybe_async, maybe_await=maybe_await)
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
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(*cmd_opts, timeout=timeout)
assert "WrongReactorAlreadyInstalledError" in rr.stderr.str()
def test_pytest_from_reactor_thread(testdir, cmd_opts, 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(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 1, "failed": 1})
# test embedded mode:
assert testdir.run(sys.executable, "runner.py", timeout=timeout).ret == 0
def test_blockon_in_hook_with_asyncio(testdir, cmd_opts, request):
skip_if_reactor_not(request, "asyncio")
conftest_file = """
import pytest
import pytest_twisted as pt
from twisted.internet import defer
@pytest.hookimpl(tryfirst=True)
def pytest_configure(config):
pt._use_asyncio_selector_if_required(config=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(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 1})
def test_wrong_reactor_with_asyncio(testdir, cmd_opts, request):
skip_if_reactor_not(request, "asyncio")
conftest_file = """
import pytest
import pytest_twisted
@pytest.hookimpl(tryfirst=True)
def pytest_configure(config):
pytest_twisted._use_asyncio_selector_if_required(config=config)
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(*cmd_opts, timeout=timeout)
assert "WrongReactorAlreadyInstalledError" in rr.stderr.str()
@skip_if_no_async_generators()
def test_async_fixture_module_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="module")
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 != 3:
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 == 2
assert foo == 42
check_me = 3
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 2})
def test_inlinecallbacks_method_with_fixture_gets_self(testdir, cmd_opts):
test_file = """
import pytest
import pytest_twisted
from twisted.internet import defer
@pytest.fixture
def foo():
return 37
class TestClass:
@pytest_twisted.inlineCallbacks
def test_self_isinstance(self, foo):
d = defer.succeed(None)
yield d
assert isinstance(self, TestClass)
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts)
assert_outcomes(rr, {"passed": 1})
def test_inlinecallbacks_method_with_fixture_gets_fixture(testdir, cmd_opts):
test_file = """
import pytest
import pytest_twisted
from twisted.internet import defer
@pytest.fixture
def foo():
return 37
class TestClass:
@pytest_twisted.inlineCallbacks
def test_self_isinstance(self, foo):
d = defer.succeed(None)
yield d
assert foo == 37
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 1})
@skip_if_no_async_await()
def test_ensuredeferred_method_with_fixture_gets_self(testdir, cmd_opts):
test_file = """
import pytest
import pytest_twisted
@pytest.fixture
def foo():
return 37
class TestClass:
@pytest_twisted.ensureDeferred
async def test_self_isinstance(self, foo):
assert isinstance(self, TestClass)
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 1})
@skip_if_no_async_await()
def test_ensuredeferred_method_with_fixture_gets_fixture(testdir, cmd_opts):
test_file = """
import pytest
import pytest_twisted
@pytest.fixture
def foo():
return 37
class TestClass:
@pytest_twisted.ensureDeferred
async def test_self_isinstance(self, foo):
assert foo == 37
"""
testdir.makepyfile(test_file)
rr = testdir.run(*cmd_opts, timeout=timeout)
assert_outcomes(rr, {"passed": 1})