2017-02-03 07:28:27 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# test_async_keyword.py - test for objects using 'async' as attribute/param
|
|
|
|
#
|
2019-02-17 04:34:52 +03:00
|
|
|
# Copyright (C) 2017-2019 Daniele Varrazzo <daniele.varrazzo@gmail.com>
|
2020-01-18 00:10:44 +03:00
|
|
|
# Copyright (C) 2020 The Psycopg Team
|
2017-02-03 07:28:27 +03:00
|
|
|
#
|
|
|
|
# psycopg2 is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# In addition, as a special exception, the copyright holders give
|
|
|
|
# permission to link this program with the OpenSSL library (or with
|
|
|
|
# modified versions of OpenSSL that use the same license as OpenSSL),
|
|
|
|
# and distribute linked combinations including the two.
|
|
|
|
#
|
|
|
|
# You must obey the GNU Lesser General Public License in all respects for
|
|
|
|
# all of the code used other than OpenSSL.
|
|
|
|
#
|
|
|
|
# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
# License for more details.
|
|
|
|
|
2017-02-06 21:05:13 +03:00
|
|
|
import time
|
2019-03-16 18:30:15 +03:00
|
|
|
from select import select
|
2017-02-06 21:05:13 +03:00
|
|
|
|
2017-02-03 07:28:27 +03:00
|
|
|
import psycopg2
|
|
|
|
from psycopg2 import extras
|
|
|
|
|
2017-12-04 05:47:19 +03:00
|
|
|
from .testconfig import dsn
|
2017-12-02 04:59:53 +03:00
|
|
|
import unittest
|
2017-12-04 05:47:19 +03:00
|
|
|
from .testutils import ConnectingTestCase, skip_before_postgres, slow
|
2017-02-06 21:56:50 +03:00
|
|
|
|
2017-12-04 05:47:19 +03:00
|
|
|
from .test_replication import ReplicationTestCase, skip_repl_if_green
|
2017-02-03 07:28:27 +03:00
|
|
|
from psycopg2.extras import LogicalReplicationConnection, StopReplication
|
|
|
|
|
|
|
|
|
|
|
|
class AsyncTests(ConnectingTestCase):
|
|
|
|
def setUp(self):
|
|
|
|
ConnectingTestCase.setUp(self)
|
|
|
|
|
|
|
|
self.sync_conn = self.conn
|
|
|
|
self.conn = self.connect(async=True)
|
|
|
|
|
|
|
|
self.wait(self.conn)
|
|
|
|
|
|
|
|
curs = self.conn.cursor()
|
|
|
|
curs.execute('''
|
|
|
|
CREATE TEMPORARY TABLE table1 (
|
|
|
|
id int PRIMARY KEY
|
|
|
|
)''')
|
|
|
|
self.wait(curs)
|
|
|
|
|
|
|
|
def test_connection_setup(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
sync_cur = self.sync_conn.cursor()
|
|
|
|
del cur, sync_cur
|
|
|
|
|
|
|
|
self.assert_(self.conn.async)
|
|
|
|
self.assert_(not self.sync_conn.async)
|
|
|
|
|
2017-02-16 14:04:02 +03:00
|
|
|
# the async connection should be autocommit
|
|
|
|
self.assert_(self.conn.autocommit)
|
2017-02-03 07:28:27 +03:00
|
|
|
|
|
|
|
# check other properties to be found on the connection
|
|
|
|
self.assert_(self.conn.server_version)
|
|
|
|
self.assert_(self.conn.protocol_version in (2, 3))
|
|
|
|
self.assert_(self.conn.encoding in psycopg2.extensions.encodings)
|
|
|
|
|
|
|
|
def test_async_subclass(self):
|
|
|
|
class MyConn(psycopg2.extensions.connection):
|
|
|
|
def __init__(self, dsn, async=0):
|
|
|
|
psycopg2.extensions.connection.__init__(self, dsn, async=async)
|
|
|
|
|
|
|
|
conn = self.connect(connection_factory=MyConn, async=True)
|
|
|
|
self.assert_(isinstance(conn, MyConn))
|
|
|
|
self.assert_(conn.async)
|
|
|
|
conn.close()
|
|
|
|
|
|
|
|
def test_async_connection_error_message(self):
|
|
|
|
try:
|
|
|
|
cnn = psycopg2.connect('dbname=thisdatabasedoesntexist', async=True)
|
|
|
|
self.wait(cnn)
|
2017-11-21 07:00:35 +03:00
|
|
|
except psycopg2.Error as e:
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertNotEqual(str(e), "asynchronous connection failed",
|
|
|
|
"connection error reason lost")
|
|
|
|
else:
|
|
|
|
self.fail("no exception raised")
|
|
|
|
|
|
|
|
|
|
|
|
class CancelTests(ConnectingTestCase):
|
|
|
|
def setUp(self):
|
|
|
|
ConnectingTestCase.setUp(self)
|
|
|
|
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute('''
|
|
|
|
CREATE TEMPORARY TABLE table1 (
|
|
|
|
id int PRIMARY KEY
|
|
|
|
)''')
|
|
|
|
self.conn.commit()
|
|
|
|
|
2017-02-06 21:05:13 +03:00
|
|
|
@slow
|
2017-02-03 07:28:27 +03:00
|
|
|
@skip_before_postgres(8, 2)
|
|
|
|
def test_async_cancel(self):
|
|
|
|
async_conn = psycopg2.connect(dsn, async=True)
|
|
|
|
self.assertRaises(psycopg2.OperationalError, async_conn.cancel)
|
|
|
|
extras.wait_select(async_conn)
|
|
|
|
cur = async_conn.cursor()
|
2017-02-06 21:05:13 +03:00
|
|
|
cur.execute("select pg_sleep(10)")
|
|
|
|
time.sleep(1)
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertTrue(async_conn.isexecuting())
|
|
|
|
async_conn.cancel()
|
|
|
|
self.assertRaises(psycopg2.extensions.QueryCanceledError,
|
|
|
|
extras.wait_select, async_conn)
|
|
|
|
cur.execute("select 1")
|
|
|
|
extras.wait_select(async_conn)
|
|
|
|
self.assertEqual(cur.fetchall(), [(1, )])
|
|
|
|
|
|
|
|
def test_async_connection_cancel(self):
|
|
|
|
async_conn = psycopg2.connect(dsn, async=True)
|
|
|
|
async_conn.close()
|
|
|
|
self.assertTrue(async_conn.closed)
|
|
|
|
|
|
|
|
|
|
|
|
class ConnectTestCase(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.args = None
|
|
|
|
|
|
|
|
def connect_stub(dsn, connection_factory=None, async=False):
|
|
|
|
self.args = (dsn, connection_factory, async)
|
|
|
|
|
|
|
|
self._connect_orig = psycopg2._connect
|
|
|
|
psycopg2._connect = connect_stub
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
psycopg2._connect = self._connect_orig
|
|
|
|
|
|
|
|
def test_there_has_to_be_something(self):
|
|
|
|
self.assertRaises(TypeError, psycopg2.connect)
|
|
|
|
self.assertRaises(TypeError, psycopg2.connect,
|
|
|
|
connection_factory=lambda dsn, async=False: None)
|
|
|
|
self.assertRaises(TypeError, psycopg2.connect,
|
|
|
|
async=True)
|
|
|
|
|
|
|
|
def test_factory(self):
|
|
|
|
def f(dsn, async=False):
|
|
|
|
pass
|
|
|
|
|
|
|
|
psycopg2.connect(database='foo', host='baz', connection_factory=f)
|
2017-02-06 21:56:50 +03:00
|
|
|
self.assertDsnEqual(self.args[0], 'dbname=foo host=baz')
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertEqual(self.args[1], f)
|
|
|
|
self.assertEqual(self.args[2], False)
|
|
|
|
|
|
|
|
psycopg2.connect("dbname=foo host=baz", connection_factory=f)
|
2017-02-06 21:56:50 +03:00
|
|
|
self.assertDsnEqual(self.args[0], 'dbname=foo host=baz')
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertEqual(self.args[1], f)
|
|
|
|
self.assertEqual(self.args[2], False)
|
|
|
|
|
|
|
|
def test_async(self):
|
|
|
|
psycopg2.connect(database='foo', host='baz', async=1)
|
2017-02-06 21:56:50 +03:00
|
|
|
self.assertDsnEqual(self.args[0], 'dbname=foo host=baz')
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertEqual(self.args[1], None)
|
|
|
|
self.assert_(self.args[2])
|
|
|
|
|
|
|
|
psycopg2.connect("dbname=foo host=baz", async=True)
|
2017-02-06 21:56:50 +03:00
|
|
|
self.assertDsnEqual(self.args[0], 'dbname=foo host=baz')
|
2017-02-03 07:28:27 +03:00
|
|
|
self.assertEqual(self.args[1], None)
|
|
|
|
self.assert_(self.args[2])
|
|
|
|
|
|
|
|
|
|
|
|
class AsyncReplicationTest(ReplicationTestCase):
|
|
|
|
@skip_before_postgres(9, 4) # slots require 9.4
|
|
|
|
@skip_repl_if_green
|
|
|
|
def test_async_replication(self):
|
|
|
|
conn = self.repl_connect(
|
|
|
|
connection_factory=LogicalReplicationConnection, async=1)
|
|
|
|
if conn is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
cur = conn.cursor()
|
|
|
|
|
|
|
|
self.create_replication_slot(cur, output_plugin='test_decoding')
|
|
|
|
self.wait(cur)
|
|
|
|
|
|
|
|
cur.start_replication(self.slot)
|
|
|
|
self.wait(cur)
|
|
|
|
|
|
|
|
self.make_replication_events()
|
|
|
|
|
|
|
|
self.msg_count = 0
|
|
|
|
|
|
|
|
def consume(msg):
|
|
|
|
# just check the methods
|
|
|
|
"%s: %s" % (cur.io_timestamp, repr(msg))
|
2019-05-06 11:27:44 +03:00
|
|
|
"%s: %s" % (cur.feedback_timestamp, repr(msg))
|
2017-02-03 07:28:27 +03:00
|
|
|
|
|
|
|
self.msg_count += 1
|
|
|
|
if self.msg_count > 3:
|
|
|
|
cur.send_feedback(reply=True)
|
|
|
|
raise StopReplication()
|
|
|
|
|
|
|
|
cur.send_feedback(flush_lsn=msg.data_start)
|
|
|
|
|
|
|
|
# cannot be used in asynchronous mode
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, cur.consume_stream, consume)
|
|
|
|
|
|
|
|
def process_stream():
|
|
|
|
while True:
|
|
|
|
msg = cur.read_message()
|
|
|
|
if msg:
|
|
|
|
consume(msg)
|
|
|
|
else:
|
|
|
|
select([cur], [], [])
|
|
|
|
self.assertRaises(StopReplication, process_stream)
|
|
|
|
|
|
|
|
|
|
|
|
def test_suite():
|
|
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
|
2018-10-23 02:39:14 +03:00
|
|
|
|
2017-02-03 07:28:27 +03:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|