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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
# WARNING: this file is auto-generated by 'async_to_sync.py'
# from the original file 'test_notify_async.py'
# DO NOT CHANGE! Change the original file instead.
from __future__ import annotations
from time import time
import pytest
from psycopg import Notify
from .utils import skip_free_threaded
from .acompat import Event, gather, sleep, spawn
pytestmark = pytest.mark.crdb_skip("notify")
def test_notify_handlers(conn):
nots1 = []
nots2 = []
def cb1(n):
nots1.append(n)
conn.add_notify_handler(cb1)
conn.add_notify_handler(lambda n: nots2.append(n))
conn.set_autocommit(True)
conn.execute("listen foo")
conn.execute("notify foo, 'n1'")
assert len(nots1) == 1
n = nots1[0]
assert n.channel == "foo"
assert n.payload == "n1"
assert n.pid == conn.pgconn.backend_pid
assert len(nots2) == 1
assert nots2[0] == nots1[0]
conn.remove_notify_handler(cb1)
conn.execute("notify foo, 'n2'")
assert len(nots1) == 1
assert len(nots2) == 2
n = nots2[1]
assert isinstance(n, Notify)
assert n.channel == "foo"
assert n.payload == "n2"
assert n.pid == conn.pgconn.backend_pid
assert hash(n)
with pytest.raises(ValueError):
conn.remove_notify_handler(cb1)
@pytest.mark.slow
@pytest.mark.timing
def test_notify(conn_cls, conn, dsn):
npid = None
def notifier():
with conn_cls.connect(dsn, autocommit=True) as nconn:
nonlocal npid
npid = nconn.pgconn.backend_pid
sleep(0.25)
nconn.execute("notify foo, '1'")
sleep(0.25)
nconn.execute("notify foo, '2'")
def receiver():
conn.set_autocommit(True)
cur = conn.cursor()
cur.execute("listen foo")
gen = conn.notifies()
for n in gen:
ns.append((n, time()))
if len(ns) >= 2:
gen.close()
ns: list[tuple[Notify, float]] = []
t0 = time()
workers = [spawn(notifier), spawn(receiver)]
gather(*workers)
assert len(ns) == 2
n, t1 = ns[0]
assert n.pid == npid
assert n.channel == "foo"
assert n.payload == "1"
assert t1 - t0 == pytest.approx(0.25, abs=0.05)
n, t1 = ns[1]
assert n.pid == npid
assert n.channel == "foo"
assert n.payload == "2"
assert t1 - t0 == pytest.approx(0.5, abs=0.05)
@pytest.mark.slow
@pytest.mark.timing
def test_no_notify_timeout(conn):
conn.set_autocommit(True)
t0 = time()
for n in conn.notifies(timeout=0.5):
assert False
dt = time() - t0
assert 0.5 <= dt < 0.75
@pytest.mark.slow
@pytest.mark.timing
def test_notify_timeout(conn_cls, conn, dsn):
conn.set_autocommit(True)
conn.execute("listen foo")
def notifier():
with conn_cls.connect(dsn, autocommit=True) as nconn:
sleep(0.25)
nconn.execute("notify foo, '1'")
worker = spawn(notifier)
try:
times = [time()]
for n in conn.notifies(timeout=0.5):
times.append(time())
times.append(time())
finally:
gather(worker)
assert len(times) == 3
assert times[1] - times[0] == pytest.approx(0.25, 0.1)
assert times[2] - times[1] == pytest.approx(0.25, 0.1)
@pytest.mark.slow
@pytest.mark.timing
def test_notify_timeout_0(conn_cls, conn, dsn):
conn.set_autocommit(True)
conn.execute("listen foo")
ns = list(conn.notifies(timeout=0))
assert not ns
with conn_cls.connect(dsn, autocommit=True) as nconn:
nconn.execute("notify foo, '1'")
sleep(0.1)
ns = list(conn.notifies(timeout=0))
assert len(ns) == 1
@pytest.mark.slow
@pytest.mark.timing
def test_stop_after(conn_cls, conn, dsn):
conn.set_autocommit(True)
conn.execute("listen foo")
def notifier():
with conn_cls.connect(dsn, autocommit=True) as nconn:
nconn.execute("notify foo, '1'")
sleep(0.1)
nconn.execute("notify foo, '2'")
sleep(0.1)
nconn.execute("notify foo, '3'")
worker = spawn(notifier)
try:
ns = list(conn.notifies(timeout=1.0, stop_after=2))
assert len(ns) == 2
assert ns[0].payload == "1"
assert ns[1].payload == "2"
finally:
gather(worker)
ns = list(conn.notifies(timeout=0.0))
assert len(ns) == 1
assert ns[0].payload == "3"
@pytest.mark.timing
def test_stop_after_batch(conn_cls, conn, dsn):
conn.set_autocommit(True)
conn.execute("listen foo")
def notifier():
with conn_cls.connect(dsn, autocommit=True) as nconn:
with nconn.transaction():
nconn.execute("notify foo, '1'")
nconn.execute("notify foo, '2'")
worker = spawn(notifier)
try:
ns = list(conn.notifies(timeout=1.0, stop_after=1))
assert len(ns) == 2
assert ns[0].payload == "1"
assert ns[1].payload == "2"
finally:
gather(worker)
@pytest.mark.slow
@pytest.mark.timing
def test_notifies_blocking(conn):
def listener():
for _ in conn.notifies(timeout=1):
pass
worker = spawn(listener)
try:
# Make sure the listener is listening
if not conn.lock.locked():
sleep(0.01)
t0 = time()
conn.execute("select 1")
dt = time() - t0
finally:
gather(worker)
assert dt > 0.5
@pytest.mark.slow
@skip_free_threaded("warnings are context-local in the free-threaded build >= 3.14")
def test_generator_and_handler(conn, conn_cls, dsn, recwarn):
# NOTE: we don't support generator+handlers anymore. So, if in the future
# this behaviour will change, we will not consider it a regression. However
# we will want to keep the warning check.
recwarn.clear()
conn.set_autocommit(True)
conn.execute("listen foo")
n1 = None
n2 = None
def set_n2(n):
nonlocal n2
n2 = n
conn.add_notify_handler(set_n2)
def listener():
nonlocal n1
for n1 in conn.notifies(timeout=1, stop_after=1):
pass
worker = spawn(listener)
try:
# Make sure the listener is listening
if not conn.lock.locked():
sleep(0.01)
with conn_cls.connect(dsn, autocommit=True) as nconn:
nconn.execute("notify foo, '1'")
finally:
gather(worker)
assert n1
assert n2
msg = str(recwarn.pop(RuntimeWarning).message)
assert "notifies()" in msg
@pytest.mark.parametrize("query_between", [True, False])
def test_first_notify_not_lost(conn, conn_cls, dsn, query_between):
conn.set_autocommit(True)
conn.execute("listen foo")
with conn_cls.connect(dsn, autocommit=True) as conn2:
conn2.execute("notify foo, 'hi'")
if query_between:
conn.execute("select 1")
n = None
for n in conn.notifies(timeout=1, stop_after=1):
pass
assert n
@pytest.mark.slow
@pytest.mark.timing
@pytest.mark.parametrize("sleep_on", ["server", "client"])
@pytest.mark.parametrize("listen_by", ["callback", "generator"])
def test_notify_query_notify(conn_cls, dsn, sleep_on, listen_by):
e = Event()
notifies: list[int] = []
workers = []
def notifier():
with conn_cls.connect(dsn, autocommit=True) as conn:
sleep(0.1)
for i in range(3):
conn.execute("select pg_notify('counter', %s)", (str(i),))
sleep(0.2)
def nap(conn):
if sleep_on == "server":
conn.execute("select pg_sleep(0.2)")
else:
assert sleep_on == "client"
sleep(0.2)
if listen_by == "callback":
def listener():
with conn_cls.connect(dsn, autocommit=True) as conn:
conn.add_notify_handler(lambda n: notifies.append(int(n.payload)))
conn.execute("listen counter")
e.set()
nap(conn)
conn.execute("")
nap(conn)
conn.execute("")
nap(conn)
conn.execute("")
else:
def listener():
with conn_cls.connect(dsn, autocommit=True) as conn:
conn.execute("listen counter")
e.set()
for n in conn.notifies(timeout=0.2):
notifies.append(int(n.payload))
nap(conn)
for n in conn.notifies(timeout=0.2):
notifies.append(int(n.payload))
workers.append(spawn(listener))
e.wait()
workers.append(spawn(notifier))
gather(*workers)
assert notifies == list(range(3))
|