forked from goodboy/tractor
1
0
Fork 0
tractor/tests/test_infected_asyncio.py

62 lines
1.1 KiB
Python
Raw Normal View History

2021-11-05 14:42:43 +00:00
'''
The most hipster way to force SC onto the stdlib's "async".
'''
import asyncio
import pytest
import tractor
2021-11-05 14:42:43 +00:00
async def sleep_and_err():
await asyncio.sleep(0.1)
assert 0
async def asyncio_actor():
assert tractor.current_actor().is_infected_aio()
await tractor.to_asyncio.run_task(sleep_and_err)
2021-11-05 14:42:43 +00:00
def test_aio_simple_error(arb_addr):
async def main():
async with tractor.open_nursery() as n:
await n.run_in_actor(asyncio_actor, infected_asyncio=True)
with pytest.raises(tractor.RemoteActorError) as excinfo:
tractor.run(main, arbiter_addr=arb_addr)
2021-11-05 14:42:43 +00:00
def test_aio_cancel_from_trio(arb_addr):
...
def test_aio_cancelled_from_aio_causes_trio_cancelled(arb_addr):
...
def test_trio_cancels_aio(arb_addr):
...
def test_trio_error_cancels_aio(arb_addr):
...
def test_basic_interloop_channel_stream(arb_addr):
...
def test_basic_interloop_channel_stream(arb_addr):
...
def test_trio_cancels_and_channel_exits(arb_addr):
...
def test_aio_errors_and_channel_propagates(arb_addr):
...