-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathtest_taskgroups.py
1413 lines (1046 loc) · 40.4 KB
/
test_taskgroups.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
from __future__ import annotations
import asyncio
import math
import sys
import time
from collections.abc import AsyncGenerator, Coroutine, Generator
from typing import Any, NoReturn, cast
import pytest
from exceptiongroup import catch
import anyio
from anyio import (
TASK_STATUS_IGNORED,
CancelScope,
create_task_group,
current_effective_deadline,
current_time,
fail_after,
get_cancelled_exc_class,
get_current_task,
move_on_after,
sleep,
sleep_forever,
wait_all_tasks_blocked,
)
from anyio.abc import TaskGroup, TaskStatus
from anyio.lowlevel import checkpoint
if sys.version_info < (3, 11):
from exceptiongroup import BaseExceptionGroup, ExceptionGroup
pytestmark = pytest.mark.anyio
async def async_error(text: str, delay: float = 0.1) -> NoReturn:
try:
if delay:
await sleep(delay)
finally:
raise Exception(text)
async def test_already_closed() -> None:
async with create_task_group() as tg:
pass
with pytest.raises(RuntimeError) as exc:
tg.start_soon(async_error, "fail")
exc.match("This task group is not active; no new tasks can be started")
async def test_success() -> None:
async def async_add(value: str) -> None:
results.add(value)
results: set[str] = set()
async with create_task_group() as tg:
tg.start_soon(async_add, "a")
tg.start_soon(async_add, "b")
assert results == {"a", "b"}
@pytest.mark.parametrize(
"module",
[
pytest.param(asyncio, id="asyncio"),
pytest.param(pytest.importorskip("trio"), id="trio"),
],
)
def test_run_natively(module: Any) -> None:
async def testfunc() -> None:
async with create_task_group() as tg:
tg.start_soon(sleep, 0)
if module is asyncio:
asyncio.run(testfunc())
else:
module.run(testfunc)
async def test_start_soon_while_running() -> None:
async def task_func() -> None:
tg.start_soon(sleep, 0)
async with create_task_group() as tg:
tg.start_soon(task_func)
async def test_start_soon_after_error() -> None:
with pytest.raises(ExceptionGroup):
async with create_task_group() as tg:
a = 1 / 0 # noqa: F841
with pytest.raises(RuntimeError) as exc:
tg.start_soon(sleep, 0)
exc.match("This task group is not active; no new tasks can be started")
async def test_start_no_value() -> None:
async def taskfunc(*, task_status: TaskStatus) -> None:
task_status.started()
async with create_task_group() as tg:
value = await tg.start(taskfunc)
assert value is None
async def test_start_called_twice() -> None:
async def taskfunc(*, task_status: TaskStatus) -> None:
task_status.started()
with pytest.raises(
RuntimeError, match="called 'started' twice on the same task status"
):
task_status.started()
async with create_task_group() as tg:
value = await tg.start(taskfunc)
assert value is None
async def test_no_called_started_twice() -> None:
async def taskfunc(*, task_status: TaskStatus) -> None:
task_status.started()
async with create_task_group() as tg:
coro = tg.start(taskfunc)
tg.cancel_scope.cancel()
await coro
async def test_start_with_value() -> None:
async def taskfunc(*, task_status: TaskStatus) -> None:
task_status.started("foo")
async with create_task_group() as tg:
value = await tg.start(taskfunc)
assert value == "foo"
async def test_start_crash_before_started_call() -> None:
async def taskfunc(*, task_status: TaskStatus) -> NoReturn:
raise Exception("foo")
async with create_task_group() as tg:
with pytest.raises(Exception) as exc:
await tg.start(taskfunc)
exc.match("foo")
async def test_start_crash_after_started_call() -> None:
async def taskfunc(*, task_status: TaskStatus) -> NoReturn:
task_status.started(2)
raise Exception("foo")
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
value = await tg.start(taskfunc)
assert len(exc.value.exceptions) == 1
assert str(exc.value.exceptions[0]) == "foo"
assert value == 2
async def test_start_no_started_call() -> None:
async def taskfunc(*, task_status: TaskStatus) -> None:
pass
async with create_task_group() as tg:
with pytest.raises(RuntimeError) as exc:
await tg.start(taskfunc)
exc.match("hild exited")
async def test_start_cancelled() -> None:
started = finished = False
async def taskfunc(*, task_status: TaskStatus) -> None:
nonlocal started, finished
started = True
await sleep(2)
finished = True
async with create_task_group() as tg:
tg.cancel_scope.cancel()
await tg.start(taskfunc)
assert started
assert not finished
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
async def test_start_native_host_cancelled() -> None:
started = finished = False
async def taskfunc(*, task_status: TaskStatus) -> None:
nonlocal started, finished
started = True
await sleep(2)
finished = True
async def start_another() -> None:
async with create_task_group() as tg:
await tg.start(taskfunc)
task = asyncio.get_running_loop().create_task(start_another())
await wait_all_tasks_blocked()
task.cancel()
with pytest.raises(asyncio.CancelledError):
await task
assert started
assert not finished
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
async def test_start_native_child_cancelled() -> None:
task = None
finished = False
async def taskfunc(*, task_status: TaskStatus) -> None:
nonlocal task, finished
task = asyncio.current_task()
await sleep(2)
finished = True
async def start_another() -> None:
async with create_task_group() as tg2:
await tg2.start(taskfunc)
async with create_task_group() as tg:
tg.start_soon(start_another)
await wait_all_tasks_blocked()
assert task is not None
task.cancel()
assert not finished
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
async def test_propagate_native_cancellation_from_taskgroup() -> None:
async def taskfunc() -> None:
async with create_task_group() as tg:
tg.start_soon(asyncio.sleep, 2)
task = asyncio.create_task(taskfunc())
await wait_all_tasks_blocked()
task.cancel()
with pytest.raises(asyncio.CancelledError):
await task
async def test_start_exception_delivery(anyio_backend_name: str) -> None:
def task_fn(*, task_status: TaskStatus = TASK_STATUS_IGNORED) -> None:
task_status.started("hello")
if anyio_backend_name == "trio":
pattern = "appears to be synchronous"
else:
pattern = "is not a coroutine object"
async with anyio.create_task_group() as tg:
with pytest.raises(TypeError, match=pattern):
await tg.start(task_fn) # type: ignore[arg-type]
async def test_start_cancel_after_error() -> None:
"""Regression test for #517."""
sleep_completed = False
async def sleep_and_raise() -> None:
await wait_all_tasks_blocked()
raise RuntimeError("This should cancel the second start() call")
async def sleep_only(task_status: TaskStatus[None]) -> None:
nonlocal sleep_completed
await sleep(1)
sleep_completed = True
task_status.started()
with pytest.raises(ExceptionGroup) as exc:
async with anyio.create_task_group() as outer_tg:
async with anyio.create_task_group() as inner_tg:
inner_tg.start_soon(sleep_and_raise)
await outer_tg.start(sleep_only)
assert isinstance(exc.value.exceptions[0], ExceptionGroup)
assert isinstance(exc.value.exceptions[0].exceptions[0], RuntimeError)
assert not sleep_completed
async def test_host_exception() -> None:
result = None
async def set_result(value: str) -> None:
nonlocal result
await sleep(3)
result = value
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(set_result, "a")
raise Exception("dummy error")
assert len(exc.value.exceptions) == 1
assert str(exc.value.exceptions[0]) == "dummy error"
assert result is None
async def test_level_cancellation() -> None:
marker = None
async def dummy() -> None:
nonlocal marker
marker = 1
# At this point the task has been cancelled so sleep() will raise an exception
await sleep(0)
# Execution should never get this far
marker = 2
async with create_task_group() as tg:
tg.start_soon(dummy)
assert marker is None
tg.cancel_scope.cancel()
assert marker == 1
async def test_failing_child_task_cancels_host() -> None:
async def child() -> NoReturn:
await wait_all_tasks_blocked()
raise Exception("foo")
sleep_completed = False
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(child)
await sleep(0.5)
sleep_completed = True
assert len(exc.value.exceptions) == 1
assert str(exc.value.exceptions[0]) == "foo"
assert not sleep_completed
async def test_failing_host_task_cancels_children() -> None:
sleep_completed = False
async def child() -> None:
nonlocal sleep_completed
await sleep(1)
sleep_completed = True
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(child)
await wait_all_tasks_blocked()
raise Exception("foo")
assert len(exc.value.exceptions) == 1
assert str(exc.value.exceptions[0]) == "foo"
assert not sleep_completed
async def test_cancel_scope_in_another_task() -> None:
local_scope = None
result = False
async def child() -> None:
nonlocal result, local_scope
with CancelScope() as local_scope:
await sleep(2)
result = True
async with create_task_group() as tg:
tg.start_soon(child)
while local_scope is None:
await sleep(0)
local_scope.cancel()
assert not result
async def test_cancel_propagation() -> None:
async def g() -> NoReturn:
async with create_task_group():
await sleep(1)
assert False
async with create_task_group() as tg:
tg.start_soon(g)
await sleep(0)
tg.cancel_scope.cancel()
async def test_cancel_twice() -> None:
"""Test that the same task can receive two cancellations."""
async def cancel_group() -> None:
await wait_all_tasks_blocked()
tg.cancel_scope.cancel()
for _ in range(2):
async with create_task_group() as tg:
tg.start_soon(cancel_group)
await sleep(1)
pytest.fail("Execution should not reach this point")
async def test_cancel_exiting_task_group() -> None:
"""
Test that if a task group is waiting for subtasks to finish and it receives a
cancellation, the subtasks are also cancelled and the waiting continues.
"""
cancel_received = False
async def waiter() -> None:
nonlocal cancel_received
try:
await sleep(5)
finally:
cancel_received = True
async def subgroup() -> None:
async with create_task_group() as tg2:
tg2.start_soon(waiter)
async with create_task_group() as tg:
tg.start_soon(subgroup)
await wait_all_tasks_blocked()
tg.cancel_scope.cancel()
assert cancel_received
async def test_cancel_before_entering_scope() -> None:
"""
Test that CancelScope.cancel() is honored even if called before entering the scope.
"""
cancel_scope = anyio.CancelScope()
cancel_scope.cancel()
with cancel_scope:
await anyio.sleep(1) # Checkpoint to allow anyio to check for cancellation
pytest.fail("execution should not reach this point")
@pytest.mark.xfail(
sys.version_info < (3, 11), reason="Requires asyncio.Task.cancelling()"
)
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
async def test_cancel_counter_nested_scopes() -> None:
with CancelScope() as root_scope:
with CancelScope():
root_scope.cancel()
await sleep(0.5)
assert not cast(asyncio.Task, asyncio.current_task()).cancelling()
async def test_exception_group_children() -> None:
with pytest.raises(BaseExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(async_error, "task1")
tg.start_soon(async_error, "task2", 0.15)
assert len(exc.value.exceptions) == 2
assert sorted(str(e) for e in exc.value.exceptions) == ["task1", "task2"]
async def test_exception_group_host() -> None:
with pytest.raises(BaseExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(async_error, "child", 2)
await wait_all_tasks_blocked()
raise Exception("host")
assert len(exc.value.exceptions) == 2
assert sorted(str(e) for e in exc.value.exceptions) == ["child", "host"]
async def test_escaping_cancelled_exception() -> None:
async with create_task_group() as tg:
tg.cancel_scope.cancel()
await sleep(0)
async def test_cancel_scope_cleared() -> None:
with move_on_after(0.1):
await sleep(1)
await sleep(0)
@pytest.mark.parametrize("delay", [0, 0.1], ids=["instant", "delayed"])
async def test_fail_after(delay: float) -> None:
with pytest.raises(TimeoutError):
with fail_after(delay) as scope:
await sleep(1)
assert scope.cancel_called
assert scope.cancelled_caught
async def test_fail_after_no_timeout() -> None:
with fail_after(None) as scope:
assert scope.deadline == float("inf")
await sleep(0.1)
assert not scope.cancel_called
assert not scope.cancelled_caught
async def test_fail_after_after_cancellation() -> None:
event = anyio.Event()
async with anyio.create_task_group() as tg:
tg.cancel_scope.cancel()
await event.wait()
block_complete = False
with pytest.raises(TimeoutError):
with fail_after(0.1):
await anyio.sleep(0.5)
block_complete = True
assert not block_complete
async def test_fail_after_cancelled_before_deadline() -> None:
"""
Test that fail_after() won't raise TimeoutError if its scope is cancelled before the
deadline.
"""
with fail_after(1) as scope:
scope.cancel()
await checkpoint()
@pytest.mark.xfail(
reason="There is currently no way to tell if cancellation happened due to timeout "
"explicitly if the deadline has been exceeded"
)
async def test_fail_after_scope_cancelled_before_timeout() -> None:
with fail_after(0.1) as scope:
scope.cancel()
time.sleep(0.11) # noqa: ASYNC101
await sleep(0)
@pytest.mark.parametrize("delay", [0, 0.1], ids=["instant", "delayed"])
async def test_move_on_after(delay: float) -> None:
result = False
with move_on_after(delay) as scope:
await sleep(1)
result = True
assert not result
assert scope.cancel_called
assert scope.cancelled_caught
async def test_move_on_after_no_timeout() -> None:
result = False
with move_on_after(None) as scope:
assert scope.deadline == float("inf")
await sleep(0.1)
result = True
assert result
assert not scope.cancel_called
async def test_nested_move_on_after() -> None:
sleep_completed = inner_scope_completed = False
with move_on_after(0.1) as outer_scope:
assert current_effective_deadline() == outer_scope.deadline
with move_on_after(1) as inner_scope:
assert current_effective_deadline() == outer_scope.deadline
await sleep(2)
sleep_completed = True
inner_scope_completed = True
assert not sleep_completed
assert not inner_scope_completed
assert outer_scope.cancel_called
assert outer_scope.cancelled_caught
assert not inner_scope.cancel_called
assert not inner_scope.cancelled_caught
async def test_shielding() -> None:
async def cancel_when_ready() -> None:
await wait_all_tasks_blocked()
tg.cancel_scope.cancel()
inner_sleep_completed = outer_sleep_completed = False
async with create_task_group() as tg:
tg.start_soon(cancel_when_ready)
with move_on_after(10, shield=True) as inner_scope:
assert inner_scope.shield
await sleep(0.1)
inner_sleep_completed = True
await sleep(1)
outer_sleep_completed = True
assert inner_sleep_completed
assert not outer_sleep_completed
assert tg.cancel_scope.cancel_called
assert not inner_scope.cancel_called
async def test_cancel_from_shielded_scope() -> None:
async with create_task_group() as tg:
with CancelScope(shield=True) as inner_scope:
assert inner_scope.shield
tg.cancel_scope.cancel()
assert current_effective_deadline() == math.inf
assert current_effective_deadline() == -math.inf
with pytest.raises(get_cancelled_exc_class()):
await sleep(0.01)
with pytest.raises(get_cancelled_exc_class()):
await sleep(0.01)
async def test_cancel_shielded_scope() -> None:
with CancelScope(shield=True) as cancel_scope:
assert cancel_scope.shield
cancel_scope.cancel()
assert current_effective_deadline() == -math.inf
with pytest.raises(get_cancelled_exc_class()):
await sleep(0)
async def test_cancelled_not_caught() -> None:
with CancelScope() as scope:
scope.cancel()
assert scope.cancel_called
assert not scope.cancelled_caught
@pytest.mark.parametrize("anyio_backend", ["asyncio"])
async def test_cancel_host_asyncgen() -> None:
done = False
async def host_task() -> None:
nonlocal done
async with create_task_group() as tg:
with CancelScope(shield=True) as inner_scope:
assert inner_scope.shield
tg.cancel_scope.cancel()
with pytest.raises(get_cancelled_exc_class()):
await sleep(0)
with pytest.raises(get_cancelled_exc_class()):
await sleep(0)
done = True
async def host_agen_fn() -> AsyncGenerator[None, None]:
await host_task()
yield
pytest.fail("host_agen_fn should only be __anext__ed once")
host_agen = host_agen_fn()
try:
loop = asyncio.get_running_loop()
await loop.create_task(host_agen.__anext__()) # type: ignore[arg-type]
finally:
await host_agen.aclose()
assert done
async def test_shielding_immediate_scope_cancelled() -> None:
async def cancel_when_ready() -> None:
await wait_all_tasks_blocked()
scope.cancel()
sleep_completed = False
async with create_task_group() as tg:
with CancelScope(shield=True) as scope:
tg.start_soon(cancel_when_ready)
await sleep(0.5)
sleep_completed = True
assert not sleep_completed
async def test_shielding_mutate() -> None:
completed = False
async def task(task_status: TaskStatus) -> NoReturn:
nonlocal completed
with CancelScope() as scope:
# Enable the shield a little after the scope starts to make this test
# general, even though it has no bearing on the current implementation.
await sleep(0.1)
scope.shield = True
task_status.started()
await sleep(0.1)
completed = True
scope.shield = False
await sleep(1)
pytest.fail("Execution should not reach this point")
async with create_task_group() as tg:
await tg.start(task)
tg.cancel_scope.cancel()
assert completed
async def test_cancel_scope_in_child_task() -> None:
child_scope = None
async def child() -> None:
nonlocal child_scope
with CancelScope() as child_scope:
await sleep(2)
host_done = False
async with create_task_group() as tg:
tg.start_soon(child)
await wait_all_tasks_blocked()
assert child_scope is not None
child_scope.cancel()
await sleep(0.1)
host_done = True
assert host_done
assert not tg.cancel_scope.cancel_called
async def test_exception_cancels_siblings() -> None:
sleep_completed = False
async def child(fail: bool) -> None:
if fail:
raise Exception("foo")
else:
nonlocal sleep_completed
await sleep(1)
sleep_completed = True
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
tg.start_soon(child, False)
await wait_all_tasks_blocked()
tg.start_soon(child, True)
assert len(exc.value.exceptions) == 1
assert str(exc.value.exceptions[0]) == "foo"
assert not sleep_completed
async def test_cancel_cascade() -> None:
async def do_something() -> NoReturn:
async with create_task_group() as tg2:
tg2.start_soon(sleep, 1)
raise Exception("foo")
async with create_task_group() as tg:
tg.start_soon(do_something)
await wait_all_tasks_blocked()
tg.cancel_scope.cancel()
async def test_cancelled_parent() -> None:
async def child() -> NoReturn:
with CancelScope():
await sleep(1)
raise Exception("foo")
async def parent(tg: TaskGroup) -> None:
await wait_all_tasks_blocked()
tg.start_soon(child)
async with create_task_group() as tg:
tg.start_soon(parent, tg)
tg.cancel_scope.cancel()
async def test_shielded_deadline() -> None:
with move_on_after(10):
with CancelScope(shield=True):
with move_on_after(1000):
assert current_effective_deadline() - current_time() > 900
async def test_deadline_reached_on_start() -> None:
with move_on_after(0):
await sleep(0)
pytest.fail("Execution should not reach this point")
async def test_deadline_moved() -> None:
with fail_after(0.1) as scope:
scope.deadline += 0.3
await sleep(0.2)
async def test_timeout_error_with_multiple_cancellations() -> None:
with pytest.raises(TimeoutError):
with fail_after(0.1):
async with create_task_group() as tg:
tg.start_soon(sleep, 2)
await sleep(2)
async def test_nested_fail_after() -> None:
async def killer(scope: CancelScope) -> None:
await wait_all_tasks_blocked()
scope.cancel()
async with create_task_group() as tg:
with CancelScope() as scope:
with CancelScope():
tg.start_soon(killer, scope)
with fail_after(1):
await sleep(2)
pytest.fail("Execution should not reach this point")
pytest.fail("Execution should not reach this point either")
pytest.fail("Execution should also not reach this point")
assert scope.cancel_called
async def test_nested_shield() -> None:
async def killer(scope: CancelScope) -> None:
await wait_all_tasks_blocked()
scope.cancel()
with pytest.raises(ExceptionGroup) as exc:
async with create_task_group() as tg:
with CancelScope() as scope:
with CancelScope(shield=True):
tg.start_soon(killer, scope)
with fail_after(0.2):
await sleep(2)
assert len(exc.value.exceptions) == 1
assert isinstance(exc.value.exceptions[0], TimeoutError)
async def test_triple_nested_shield_checkpoint_in_outer() -> None:
"""Regression test for #370."""
got_past_checkpoint = False
async def taskfunc() -> None:
nonlocal got_past_checkpoint
with CancelScope() as scope1:
with CancelScope() as scope2:
with CancelScope(shield=True):
scope1.cancel()
scope2.cancel()
await checkpoint()
got_past_checkpoint = True
async with create_task_group() as tg:
tg.start_soon(taskfunc)
assert not got_past_checkpoint
async def test_triple_nested_shield_checkpoint_in_middle() -> None:
got_past_checkpoint = False
async def taskfunc() -> None:
nonlocal got_past_checkpoint
with CancelScope() as scope1:
with CancelScope():
with CancelScope(shield=True):
scope1.cancel()
await checkpoint()
got_past_checkpoint = True
async with create_task_group() as tg:
tg.start_soon(taskfunc)
assert not got_past_checkpoint
def test_task_group_in_generator(
anyio_backend_name: str, anyio_backend_options: dict[str, Any]
) -> None:
async def task_group_generator() -> AsyncGenerator[None, None]:
async with create_task_group():
yield
gen = task_group_generator()
anyio.run(
gen.__anext__,
backend=anyio_backend_name,
backend_options=anyio_backend_options,
)
pytest.raises(
StopAsyncIteration,
anyio.run,
gen.__anext__,
backend=anyio_backend_name,
backend_options=anyio_backend_options,
)
async def test_exception_group_filtering() -> None:
"""Test that CancelledErrors are filtered out of nested exception groups."""
async def fail(name: str) -> NoReturn:
try:
await anyio.sleep(0.1)
finally:
raise Exception(f"{name} task failed")
async def fn() -> None:
async with anyio.create_task_group() as tg:
tg.start_soon(fail, "parent")
async with anyio.create_task_group() as tg2:
tg2.start_soon(fail, "child")
await anyio.sleep(1)
with pytest.raises(BaseExceptionGroup) as exc:
await fn()
assert len(exc.value.exceptions) == 2
assert str(exc.value.exceptions[0]) == "parent task failed"
assert isinstance(exc.value.exceptions[1], ExceptionGroup)
assert len(exc.value.exceptions[1].exceptions) == 1
assert str(exc.value.exceptions[1].exceptions[0]) == "child task failed"
async def test_cancel_propagation_with_inner_spawn() -> None:
async def g() -> NoReturn:
async with anyio.create_task_group() as tg2:
tg2.start_soon(anyio.sleep, 10)
await anyio.sleep(1)
assert False
async with anyio.create_task_group() as tg:
tg.start_soon(g)
await wait_all_tasks_blocked()
tg.cancel_scope.cancel()
async def test_escaping_cancelled_error_from_cancelled_task() -> None:
"""
Regression test for issue #88. No CancelledError should escape the outer scope.
"""
with CancelScope() as scope:
with move_on_after(0.1):
await sleep(1)
scope.cancel()
@pytest.mark.skipif(
sys.version_info >= (3, 11),
reason="Generator based coroutines have been removed in Python 3.11",
)
@pytest.mark.filterwarnings(
'ignore:"@coroutine" decorator is deprecated:DeprecationWarning'
)
def test_cancel_generator_based_task() -> None:
async def native_coro_part() -> None:
with CancelScope() as scope:
asyncio.get_running_loop().call_soon(scope.cancel)
await asyncio.sleep(1)
pytest.fail("Execution should not have reached this line")
@asyncio.coroutine # type: ignore[attr-defined]
def generator_part() -> Generator[object, BaseException, None]: