forked from fastapiutils/fastapi-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_tasks.py
More file actions
252 lines (208 loc) · 7.92 KB
/
test_tasks.py
File metadata and controls
252 lines (208 loc) · 7.92 KB
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
import asyncio
from typing import NoReturn
from unittest.mock import AsyncMock, call, patch
import pytest
from fastapi_utils.tasks import NoArgsNoReturnAsyncFuncT, repeat_every
# Fixtures:
@pytest.fixture(scope="module")
def seconds() -> float:
return 0.01
@pytest.fixture(scope="module")
def max_repetitions() -> int:
return 3
@pytest.fixture(scope="module")
def wait_first(seconds: float) -> float:
return seconds
# Tests:
class TestRepeatEveryBase:
def setup_method(self) -> None:
self.counter = 0
self.completed = asyncio.Event()
def increase_counter(self) -> None:
self.counter += 1
async def increase_counter_async(self) -> None:
self.increase_counter()
def loop_completed(self) -> None:
self.completed.set()
async def loop_completed_async(self) -> None:
self.loop_completed()
def kill_loop(self, exc: Exception) -> None:
self.completed.set()
raise exc
async def kill_loop_async(self, exc: Exception) -> None:
self.kill_loop(exc)
def continue_loop(self, exc: Exception) -> None:
return
async def continue_loop_async(self, exc: Exception) -> None:
self.continue_loop(exc)
def raise_exc(self) -> NoReturn:
self.increase_counter()
raise ValueError("error")
async def raise_exc_async(self) -> NoReturn:
self.raise_exc()
@pytest.fixture
def increase_counter_task(self, is_async: bool, seconds: float, max_repetitions: int) -> NoArgsNoReturnAsyncFuncT:
decorator = repeat_every(seconds=seconds, max_repetitions=max_repetitions, on_complete=self.loop_completed)
if is_async:
return decorator(self.increase_counter_async)
else:
return decorator(self.increase_counter)
@pytest.fixture
def wait_first_increase_counter_task(
self, is_async: bool, seconds: float, max_repetitions: int, wait_first: float
) -> NoArgsNoReturnAsyncFuncT:
decorator = repeat_every(
seconds=seconds, max_repetitions=max_repetitions, wait_first=wait_first, on_complete=self.loop_completed
)
if is_async:
return decorator(self.increase_counter_async)
else:
return decorator(self.increase_counter)
@pytest.fixture
def stop_on_exception_task(self, is_async: bool, seconds: float, max_repetitions: int) -> NoArgsNoReturnAsyncFuncT:
if is_async:
decorator = repeat_every(
seconds=seconds,
max_repetitions=max_repetitions,
on_complete=self.loop_completed_async,
on_exception=self.kill_loop_async,
)
return decorator(self.raise_exc_async)
else:
decorator = repeat_every(
seconds=seconds,
max_repetitions=max_repetitions,
on_complete=self.loop_completed,
on_exception=self.kill_loop,
)
return decorator(self.raise_exc)
@pytest.fixture
def suppressed_exception_task(
self, is_async: bool, seconds: float, max_repetitions: int
) -> NoArgsNoReturnAsyncFuncT:
if is_async:
decorator = repeat_every(
seconds=seconds,
max_repetitions=max_repetitions,
on_complete=self.loop_completed_async,
on_exception=self.continue_loop_async,
)
return decorator(self.raise_exc_async)
else:
decorator = repeat_every(
seconds=seconds,
max_repetitions=max_repetitions,
on_complete=self.loop_completed,
on_exception=self.continue_loop,
)
return decorator(self.raise_exc)
class TestRepeatEveryWithSynchronousFunction(TestRepeatEveryBase):
@pytest.fixture
def is_async(self) -> bool:
return False
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_max_repetitions(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
increase_counter_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await increase_counter_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls(max_repetitions * [call(seconds)], any_order=True)
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_max_repetitions_and_wait_first(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
wait_first_increase_counter_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await wait_first_increase_counter_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls((max_repetitions + 1) * [call(seconds)], any_order=True)
@pytest.mark.asyncio
@pytest.mark.timeout(1)
async def test_stop_loop_on_exc(
self,
stop_on_exception_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await stop_on_exception_task()
await self.completed.wait()
assert self.counter == 1
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_continue_loop_on_exc(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
suppressed_exception_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await suppressed_exception_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls(max_repetitions * [call(seconds)], any_order=True)
class TestRepeatEveryWithAsynchronousFunction(TestRepeatEveryBase):
@pytest.fixture
def is_async(self) -> bool:
return True
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_max_repetitions(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
increase_counter_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await increase_counter_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls(max_repetitions * [call(seconds)], any_order=True)
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_max_repetitions_and_wait_first(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
wait_first_increase_counter_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await wait_first_increase_counter_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls((max_repetitions + 1) * [call(seconds)], any_order=True)
@pytest.mark.asyncio
@pytest.mark.timeout(1)
async def test_stop_loop_on_exc(
self,
stop_on_exception_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await stop_on_exception_task()
await self.completed.wait()
assert self.counter == 1
@pytest.mark.asyncio
@pytest.mark.timeout(1)
@patch("asyncio.sleep")
async def test_continue_loop_on_exc(
self,
asyncio_sleep_mock: AsyncMock,
seconds: float,
max_repetitions: int,
suppressed_exception_task: NoArgsNoReturnAsyncFuncT,
) -> None:
await suppressed_exception_task()
await self.completed.wait()
assert self.counter == max_repetitions
asyncio_sleep_mock.assert_has_calls(max_repetitions * [call(seconds)], any_order=True)