forked from pytest-dev/pytest-asyncio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_simple_35.py
99 lines (73 loc) · 3.04 KB
/
test_simple_35.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
"""Quick'n'dirty unit tests using async and await syntax."""
import asyncio
import sys
import pytest
pytestmark = pytest.mark.skipif(
sys.version_info[:2] < (3, 5),
reason='This syntax is only valid in 3.5 and newer')
@asyncio.coroutine
def async_coro(loop):
yield from asyncio.sleep(0, loop=loop)
return 'ok'
# PEP 492 added the syntax for these tests to Python 3.5. Older versions
# can't even parse the module to let skipif exclude the tests. To get
# around this, all tests are defined in a string which can be compiled
# and executed on appropriate versions of Python.
_possible_tests = '''
@pytest.mark.asyncio
async def test_asyncio_marker():
"""Test the asyncio pytest marker."""
@pytest.mark.asyncio
async def test_asyncio_marker_with_default_param(a_param=None):
"""Test the asyncio pytest marker."""
@pytest.mark.asyncio_process_pool
async def test_asyncio_process_pool_marker(event_loop):
ret = await async_coro(event_loop)
assert ret == 'ok'
@pytest.mark.asyncio
async def test_unused_port_fixture(unused_tcp_port, event_loop):
"""Test the unused TCP port fixture."""
async def closer(_, writer):
writer.close()
server1 = await asyncio.start_server(closer, host='localhost',
port=unused_tcp_port,
loop=event_loop)
server1.close()
await server1.wait_closed()
@pytest.mark.asyncio
async def test_unused_port_factory_fixture(unused_tcp_port_factory, event_loop):
"""Test the unused TCP port factory fixture."""
async def closer(_, writer):
writer.close()
port1, port2, port3 = (unused_tcp_port_factory(), unused_tcp_port_factory(),
unused_tcp_port_factory())
server1 = await asyncio.start_server(closer, host='localhost',
port=port1,
loop=event_loop)
server2 = await asyncio.start_server(closer, host='localhost',
port=port2,
loop=event_loop)
server3 = await asyncio.start_server(closer, host='localhost',
port=port3,
loop=event_loop)
for port in port1, port2, port3:
with pytest.raises(IOError):
await asyncio.start_server(closer, host='localhost',
port=port,
loop=event_loop)
server1.close()
await server1.wait_closed()
server2.close()
await server2.wait_closed()
server3.close()
await server3.wait_closed()
class Test:
"""Test that asyncio marked functions work in test methods."""
@pytest.mark.asyncio
async def test_asyncio_marker_method(self, event_loop):
"""Test the asyncio pytest marker in a Test class."""
ret = await async_coro(event_loop)
assert ret == 'ok'
'''
if sys.version_info[:2] >= (3, 5):
exec(compile(_possible_tests, __file__, 'exec'))