forked from pytest-dev/pytest-asyncio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_simple.py
234 lines (179 loc) · 6.67 KB
/
test_simple.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
"""Quick'n'dirty unit tests for provided fixtures and markers."""
import asyncio
import os
import pytest
import pytest_asyncio.plugin
async def async_coro(loop=None):
"""A very simple coroutine."""
await asyncio.sleep(0, loop=loop)
return 'ok'
def test_event_loop_fixture(event_loop):
"""Test the injection of the event_loop fixture."""
assert event_loop
ret = event_loop.run_until_complete(async_coro(event_loop))
assert ret == 'ok'
@pytest.mark.asyncio
def test_asyncio_marker():
"""Test the asyncio pytest marker."""
yield # sleep(0)
@pytest.mark.xfail(reason='need a failure', strict=True)
@pytest.mark.asyncio
def test_asyncio_marker_fail():
assert False
@pytest.mark.asyncio
def test_asyncio_marker_with_default_param(a_param=None):
"""Test the asyncio pytest marker."""
yield # sleep(0)
@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)
with pytest.raises(IOError):
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_udp_port_fixture(unused_udp_port, event_loop):
"""Test the unused TCP port fixture."""
class Closer:
def connection_made(self, transport):
pass
def connection_lost(self, *arg, **kwd):
pass
transport1, _ = await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', unused_udp_port),
reuse_port=False,
reuse_address=False,
)
with pytest.raises(IOError):
await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', unused_udp_port),
reuse_port=False,
reuse_address=False,
)
transport1.abort()
@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()
@pytest.mark.asyncio
async def test_unused_udp_port_factory_fixture(unused_udp_port_factory,
event_loop):
"""Test the unused UDP port factory fixture."""
class Closer:
def connection_made(self, transport):
pass
def connection_lost(self, *arg, **kwd):
pass
port1, port2, port3 = (unused_udp_port_factory(), unused_udp_port_factory(),
unused_udp_port_factory())
transport1, _ = await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', port1),
reuse_port=False,
reuse_address=False,
)
transport2, _ = await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', port2),
reuse_port=False,
reuse_address=False,
)
transport3, _ = await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', port3),
reuse_port=False,
reuse_address=False,
)
for port in port1, port2, port3:
with pytest.raises(IOError):
await event_loop.create_datagram_endpoint(
Closer,
local_addr=('127.0.0.1', port),
reuse_port=False,
reuse_address=False,
)
transport1.abort()
transport2.abort()
transport3.abort()
def test_unused_port_factory_duplicate(unused_tcp_port_factory, monkeypatch):
"""Test correct avoidance of duplicate ports."""
counter = 0
def mock_unused_tcp_port():
"""Force some duplicate ports."""
nonlocal counter
counter += 1
if counter < 5:
return 10000
else:
return 10000 + counter
monkeypatch.setattr(pytest_asyncio.plugin, '_unused_port',
mock_unused_tcp_port)
assert unused_tcp_port_factory() == 10000
assert unused_tcp_port_factory() > 10000
def test_unused_udp_port_factory_duplicate(unused_udp_port_factory,
monkeypatch):
"""Test correct avoidance of duplicate UDP ports."""
counter = 0
def mock_unused_udp_port(_ignored):
"""Force some duplicate ports."""
nonlocal counter
counter += 1
if counter < 5:
return 10000
else:
return 10000 + counter
monkeypatch.setattr(pytest_asyncio.plugin, '_unused_port',
mock_unused_udp_port)
assert unused_udp_port_factory() == 10000
assert unused_udp_port_factory() > 10000
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'
class TestUnexistingLoop:
@pytest.fixture
def remove_loop(self):
old_loop = asyncio.get_event_loop()
asyncio.set_event_loop(None)
yield
asyncio.set_event_loop(old_loop)
@pytest.mark.asyncio
async def test_asyncio_marker_without_loop(self, remove_loop):
"""Test the asyncio pytest marker in a Test class."""
ret = await async_coro()
assert ret == 'ok'