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
|
import asyncio
import logging
from time import time
from functools import partial
import pytest
from psycopg._compat import create_task
try:
from psycopg_pool.sched import AsyncScheduler
except ImportError:
# Tests should have been skipped if the package is not available
pass
pytestmark = [pytest.mark.asyncio, pytest.mark.timing]
@pytest.mark.slow
async def test_sched():
s = AsyncScheduler()
results = []
async def worker(i):
results.append((i, time()))
t0 = time()
await s.enter(0.1, partial(worker, 1))
await s.enter(0.4, partial(worker, 3))
await s.enter(0.3, None)
await s.enter(0.2, partial(worker, 2))
await s.run()
assert len(results) == 2
assert results[0][0] == 1
assert results[0][1] - t0 == pytest.approx(0.1, 0.1)
assert results[1][0] == 2
assert results[1][1] - t0 == pytest.approx(0.2, 0.1)
@pytest.mark.slow
async def test_sched_task():
s = AsyncScheduler()
t = create_task(s.run())
results = []
async def worker(i):
results.append((i, time()))
t0 = time()
await s.enter(0.1, partial(worker, 1))
await s.enter(0.4, partial(worker, 3))
await s.enter(0.3, None)
await s.enter(0.2, partial(worker, 2))
await asyncio.gather(t)
t1 = time()
assert t1 - t0 == pytest.approx(0.3, 0.2)
assert len(results) == 2
assert results[0][0] == 1
assert results[0][1] - t0 == pytest.approx(0.1, 0.2)
assert results[1][0] == 2
assert results[1][1] - t0 == pytest.approx(0.2, 0.2)
@pytest.mark.slow
async def test_sched_error(caplog):
caplog.set_level(logging.WARNING, logger="psycopg")
s = AsyncScheduler()
t = create_task(s.run())
results = []
async def worker(i):
results.append((i, time()))
async def error():
1 / 0
t0 = time()
await s.enter(0.1, partial(worker, 1))
await s.enter(0.4, None)
await s.enter(0.3, partial(worker, 2))
await s.enter(0.2, error)
await asyncio.gather(t)
t1 = time()
assert t1 - t0 == pytest.approx(0.4, 0.1)
assert len(results) == 2
assert results[0][0] == 1
assert results[0][1] - t0 == pytest.approx(0.1, 0.1)
assert results[1][0] == 2
assert results[1][1] - t0 == pytest.approx(0.3, 0.1)
assert len(caplog.records) == 1
assert "ZeroDivisionError" in caplog.records[0].message
@pytest.mark.slow
async def test_empty_queue_timeout():
s = AsyncScheduler()
t0 = time()
times = []
wait_orig = s._event.wait
async def wait_logging():
try:
rv = await wait_orig()
finally:
times.append(time() - t0)
return rv
setattr(s._event, "wait", wait_logging)
s.EMPTY_QUEUE_TIMEOUT = 0.2
t = create_task(s.run())
await asyncio.sleep(0.5)
await s.enter(0.5, None)
await asyncio.gather(t)
times.append(time() - t0)
for got, want in zip(times, [0.2, 0.4, 0.5, 1.0]):
assert got == pytest.approx(want, 0.2), times
@pytest.mark.slow
async def test_first_task_rescheduling():
s = AsyncScheduler()
t0 = time()
times = []
wait_orig = s._event.wait
async def wait_logging():
try:
rv = await wait_orig()
finally:
times.append(time() - t0)
return rv
setattr(s._event, "wait", wait_logging)
s.EMPTY_QUEUE_TIMEOUT = 0.1
async def noop():
pass
await s.enter(0.4, noop)
t = create_task(s.run())
await s.enter(0.6, None) # this task doesn't trigger a reschedule
await asyncio.sleep(0.1)
await s.enter(0.1, noop) # this triggers a reschedule
await asyncio.gather(t)
times.append(time() - t0)
for got, want in zip(times, [0.1, 0.2, 0.4, 0.6, 0.6]):
assert got == pytest.approx(want, 0.2), times
|