mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
Test notifies are received ok polling an async cur
This commit is contained in:
parent
755a128ffb
commit
46106e1b78
|
@ -497,7 +497,28 @@ class AsyncTests(ConnectingTestCase):
|
|||
|
||||
def test_poll_noop(self):
|
||||
self.conn.poll()
|
||||
self.conn.poll()
|
||||
|
||||
@skip_before_postgres(9, 0)
|
||||
def test_poll_conn_for_notification(self):
|
||||
with self.conn.cursor() as cur:
|
||||
cur.execute("listen test")
|
||||
self.wait(cur)
|
||||
|
||||
with self.sync_conn.cursor() as cur:
|
||||
cur.execute("notify test, 'hello'")
|
||||
self.sync_conn.commit()
|
||||
|
||||
for i in range(10):
|
||||
self.conn.poll()
|
||||
|
||||
if self.conn.notifies:
|
||||
n = self.conn.notifies.pop()
|
||||
self.assertEqual(n.channel, 'test')
|
||||
self.assertEqual(n.payload, 'hello')
|
||||
break
|
||||
time.sleep(0.1)
|
||||
else:
|
||||
self.fail("No notification received")
|
||||
|
||||
|
||||
def test_suite():
|
||||
|
|
Loading…
Reference in New Issue
Block a user