2010-03-26 06:03:54 +03:00
|
|
|
#!/usr/bin/env python
|
2011-01-07 04:44:19 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# test_async.py - unit test for asynchronous API
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010-2011 Jan Urbański <wulczer@wulczer.org>
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2011-02-15 20:11:07 +03:00
|
|
|
from testutils import unittest, skip_before_postgres
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
import psycopg2
|
|
|
|
from psycopg2 import extensions
|
|
|
|
|
2010-04-18 17:51:58 +04:00
|
|
|
import time
|
2010-03-26 06:03:54 +03:00
|
|
|
import StringIO
|
|
|
|
|
2013-04-07 03:23:30 +04:00
|
|
|
from testutils import ConnectingTestCase
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-04-11 04:05:31 +04:00
|
|
|
class PollableStub(object):
|
|
|
|
"""A 'pollable' wrapper allowing analysis of the `poll()` calls."""
|
|
|
|
def __init__(self, pollable):
|
|
|
|
self.pollable = pollable
|
|
|
|
self.polls = []
|
|
|
|
|
|
|
|
def fileno(self):
|
|
|
|
return self.pollable.fileno()
|
|
|
|
|
|
|
|
def poll(self):
|
|
|
|
rv = self.pollable.poll()
|
|
|
|
self.polls.append(rv)
|
|
|
|
return rv
|
|
|
|
|
|
|
|
|
2013-04-07 03:23:30 +04:00
|
|
|
class AsyncTests(ConnectingTestCase):
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def setUp(self):
|
2013-04-07 03:23:30 +04:00
|
|
|
ConnectingTestCase.setUp(self)
|
|
|
|
|
|
|
|
self.sync_conn = self.conn
|
|
|
|
self.conn = self.connect(async=True)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(self.conn)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
curs = self.conn.cursor()
|
|
|
|
curs.execute('''
|
|
|
|
CREATE TEMPORARY TABLE table1 (
|
|
|
|
id int PRIMARY KEY
|
|
|
|
)''')
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(curs)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
def test_connection_setup(self):
|
2010-03-26 06:03:54 +03:00
|
|
|
cur = self.conn.cursor()
|
|
|
|
sync_cur = self.sync_conn.cursor()
|
|
|
|
|
2010-04-20 03:44:42 +04:00
|
|
|
self.assert_(self.conn.async)
|
|
|
|
self.assert_(not self.sync_conn.async)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# the async connection should be in isolevel 0
|
|
|
|
self.assertEquals(self.conn.isolation_level, 0)
|
|
|
|
|
2010-04-21 21:40:05 +04: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)
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
def test_async_named_cursor(self):
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
self.conn.cursor, "name")
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_async_select(self):
|
|
|
|
cur = self.conn.cursor()
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertFalse(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.execute("select 'a'")
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertFalse(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
self.assertEquals(cur.fetchone()[0], "a")
|
|
|
|
|
2011-02-15 20:11:07 +03:00
|
|
|
@skip_before_postgres(8, 2)
|
2010-03-26 06:03:54 +03:00
|
|
|
def test_async_callproc(self):
|
|
|
|
cur = self.conn.cursor()
|
2010-11-28 18:03:34 +03:00
|
|
|
cur.callproc("pg_sleep", (0.1, ))
|
|
|
|
self.assertTrue(self.conn.isexecuting())
|
|
|
|
|
|
|
|
self.wait(cur)
|
|
|
|
self.assertFalse(self.conn.isexecuting())
|
|
|
|
self.assertEquals(cur.fetchall()[0][0], '')
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_async_after_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur2 = self.conn.cursor()
|
|
|
|
|
|
|
|
cur.execute("insert into table1 values (1)")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# an async execute after an async one raises an exception
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
cur.execute, "select * from table1")
|
|
|
|
# same for callproc
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
cur.callproc, "version")
|
|
|
|
# but after you've waited it should be good
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.execute("select * from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
self.assertEquals(cur.fetchall()[0][0], 1)
|
|
|
|
|
|
|
|
cur.execute("delete from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
cur.execute("select * from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
self.assertEquals(cur.fetchone(), None)
|
|
|
|
|
|
|
|
def test_fetch_after_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select 'a'")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# a fetch after an asynchronous query should raise an error
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
cur.fetchall)
|
|
|
|
# but after waiting it should work
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
self.assertEquals(cur.fetchall()[0][0], "a")
|
|
|
|
|
|
|
|
def test_rollback_while_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
|
|
|
|
cur.execute("select 'a'")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# a rollback should not work in asynchronous mode
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, self.conn.rollback)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_commit_while_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.execute("begin")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-31 04:00:52 +04:00
|
|
|
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.execute("insert into table1 values (1)")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# a commit should not work in asynchronous mode
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, self.conn.commit)
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-31 04:00:52 +04:00
|
|
|
|
|
|
|
# but a manual commit should
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.execute("commit")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
cur.execute("select * from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
self.assertEquals(cur.fetchall()[0][0], 1)
|
|
|
|
|
|
|
|
cur.execute("delete from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
cur.execute("select * from table1")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
self.assertEquals(cur.fetchone(), None)
|
|
|
|
|
|
|
|
def test_set_parameters_while_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
|
|
|
|
cur.execute("select 'c'")
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
# getting transaction status works
|
|
|
|
self.assertEquals(self.conn.get_transaction_status(),
|
|
|
|
extensions.TRANSACTION_STATUS_ACTIVE)
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# setting connection encoding should fail
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
self.conn.set_client_encoding, "LATIN1")
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# same for transaction isolation
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
self.conn.set_isolation_level, 1)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_reset_while_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select 'c'")
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# a reset should fail
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, self.conn.reset)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_async_iter(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.execute("begin")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-11-19 06:55:37 +03:00
|
|
|
cur.execute("""
|
|
|
|
insert into table1 values (1);
|
|
|
|
insert into table1 values (2);
|
|
|
|
insert into table1 values (3);
|
|
|
|
""")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.execute("select id from table1 order by id")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# iteration fails if a query is underway
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, list, cur)
|
|
|
|
|
|
|
|
# but after it's done it should work
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
self.assertEquals(list(cur), [(1, ), (2, ), (3, )])
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertFalse(self.conn.isexecuting())
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_copy_while_async(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select 'a'")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# copy should fail
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
cur.copy_from,
|
|
|
|
StringIO.StringIO("1\n3\n5\n\\.\n"), "table1")
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
def test_lobject_while_async(self):
|
|
|
|
# large objects should be prohibited
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError,
|
|
|
|
self.conn.lobject)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
def test_async_executemany(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
self.assertRaises(
|
|
|
|
psycopg2.ProgrammingError,
|
|
|
|
cur.executemany, "insert into table1 values (%s)", [1, 2, 3])
|
|
|
|
|
|
|
|
def test_async_scroll(self):
|
|
|
|
cur = self.conn.cursor()
|
2010-11-19 06:55:37 +03:00
|
|
|
cur.execute("""
|
|
|
|
insert into table1 values (1);
|
|
|
|
insert into table1 values (2);
|
|
|
|
insert into table1 values (3);
|
|
|
|
""")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.execute("select id from table1 order by id")
|
|
|
|
|
2010-03-31 04:00:52 +04:00
|
|
|
# scroll should fail if a query is underway
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, cur.scroll, 1)
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertTrue(self.conn.isexecuting())
|
2010-03-31 04:00:52 +04:00
|
|
|
|
|
|
|
# but after it's done it should work
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.scroll(1)
|
|
|
|
self.assertEquals(cur.fetchall(), [(2, ), (3, )])
|
|
|
|
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select id from table1 order by id")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
cur2 = self.conn.cursor()
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, cur2.scroll, 1)
|
|
|
|
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, cur.scroll, 4)
|
|
|
|
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select id from table1 order by id")
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.scroll(2)
|
|
|
|
cur.scroll(-1)
|
|
|
|
self.assertEquals(cur.fetchall(), [(2, ), (3, )])
|
|
|
|
|
|
|
|
def test_scroll(self):
|
|
|
|
cur = self.sync_conn.cursor()
|
|
|
|
cur.execute("create table table1 (id int)")
|
2010-11-19 06:55:37 +03:00
|
|
|
cur.execute("""
|
|
|
|
insert into table1 values (1);
|
|
|
|
insert into table1 values (2);
|
|
|
|
insert into table1 values (3);
|
|
|
|
""")
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.execute("select id from table1 order by id")
|
2010-03-26 06:03:54 +03:00
|
|
|
cur.scroll(2)
|
|
|
|
cur.scroll(-1)
|
|
|
|
self.assertEquals(cur.fetchall(), [(2, ), (3, )])
|
|
|
|
|
|
|
|
def test_async_dont_read_all(self):
|
|
|
|
cur = self.conn.cursor()
|
2010-03-31 04:00:52 +04:00
|
|
|
cur.execute("select repeat('a', 10000); select repeat('b', 10000)")
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
# fetch the result
|
2010-04-10 20:54:49 +04:00
|
|
|
self.wait(cur)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
|
|
|
# it should be the result of the second query
|
2010-03-31 04:00:52 +04:00
|
|
|
self.assertEquals(cur.fetchone()[0], "b" * 10000)
|
2010-03-26 06:03:54 +03:00
|
|
|
|
2010-04-08 15:51:33 +04:00
|
|
|
def test_async_subclass(self):
|
|
|
|
class MyConn(psycopg2.extensions.connection):
|
|
|
|
def __init__(self, dsn, async=0):
|
|
|
|
psycopg2.extensions.connection.__init__(self, dsn, async=async)
|
|
|
|
|
2013-04-07 03:23:30 +04:00
|
|
|
conn = self.connect(connection_factory=MyConn, async=True)
|
2010-04-08 15:51:33 +04:00
|
|
|
self.assert_(isinstance(conn, MyConn))
|
2010-04-20 03:44:42 +04:00
|
|
|
self.assert_(conn.async)
|
2010-04-08 15:51:33 +04:00
|
|
|
conn.close()
|
|
|
|
|
2010-04-11 04:05:31 +04:00
|
|
|
def test_flush_on_write(self):
|
|
|
|
# a very large query requires a flush loop to be sent to the backend
|
|
|
|
curs = self.conn.cursor()
|
|
|
|
for mb in 1, 5, 10, 20, 50:
|
|
|
|
size = mb * 1024 * 1024
|
2010-04-18 17:51:58 +04:00
|
|
|
stub = PollableStub(self.conn)
|
2010-04-11 04:05:31 +04:00
|
|
|
curs.execute("select %s;", ('x' * size,))
|
|
|
|
self.wait(stub)
|
|
|
|
self.assertEqual(size, len(curs.fetchone()[0]))
|
|
|
|
if stub.polls.count(psycopg2.extensions.POLL_WRITE) > 1:
|
|
|
|
return
|
|
|
|
|
2010-11-25 06:02:58 +03:00
|
|
|
# This is more a testing glitch than an error: it happens
|
|
|
|
# on high load on linux: probably because the kernel has more
|
|
|
|
# buffers ready. A warning may be useful during development,
|
|
|
|
# but an error is bad during regression testing.
|
|
|
|
import warnings
|
|
|
|
warnings.warn("sending a large query didn't trigger block on write.")
|
2010-04-11 04:05:31 +04:00
|
|
|
|
2010-04-10 20:51:13 +04:00
|
|
|
def test_sync_poll(self):
|
|
|
|
cur = self.sync_conn.cursor()
|
2010-04-18 17:51:58 +04:00
|
|
|
cur.execute("select 1")
|
|
|
|
# polling with a sync query works
|
|
|
|
cur.connection.poll()
|
|
|
|
self.assertEquals(cur.fetchone()[0], 1)
|
2010-04-10 20:51:13 +04:00
|
|
|
|
2010-04-18 17:51:58 +04:00
|
|
|
def test_notify(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
sync_cur = self.sync_conn.cursor()
|
2010-04-10 20:51:13 +04:00
|
|
|
|
2010-04-18 17:51:58 +04:00
|
|
|
sync_cur.execute("listen test_notify")
|
|
|
|
self.sync_conn.commit()
|
|
|
|
cur.execute("notify test_notify")
|
|
|
|
self.wait(cur)
|
2010-04-10 20:51:13 +04:00
|
|
|
|
2010-04-18 17:51:58 +04:00
|
|
|
self.assertEquals(self.sync_conn.notifies, [])
|
|
|
|
|
|
|
|
pid = self.conn.get_backend_pid()
|
|
|
|
for _ in range(5):
|
|
|
|
self.wait(self.sync_conn)
|
|
|
|
if not self.sync_conn.notifies:
|
|
|
|
time.sleep(0.5)
|
|
|
|
continue
|
|
|
|
self.assertEquals(len(self.sync_conn.notifies), 1)
|
|
|
|
self.assertEquals(self.sync_conn.notifies.pop(),
|
|
|
|
(pid, "test_notify"))
|
|
|
|
return
|
|
|
|
self.fail("No NOTIFY in 2.5 seconds")
|
2010-04-10 20:51:13 +04:00
|
|
|
|
|
|
|
def test_async_fetch_wrong_cursor(self):
|
|
|
|
cur1 = self.conn.cursor()
|
|
|
|
cur2 = self.conn.cursor()
|
|
|
|
cur1.execute("select 1")
|
|
|
|
|
2010-04-14 12:01:37 +04:00
|
|
|
self.wait(cur1)
|
2010-04-20 03:50:34 +04:00
|
|
|
self.assertFalse(self.conn.isexecuting())
|
2010-04-10 20:51:13 +04:00
|
|
|
# fetching from a cursor with no results is an error
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, cur2.fetchone)
|
|
|
|
# fetching from the correct cursor works
|
|
|
|
self.assertEquals(cur1.fetchone()[0], 1)
|
|
|
|
|
2010-04-11 22:25:17 +04:00
|
|
|
def test_error(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("insert into table1 values (%s)", (1, ))
|
|
|
|
self.wait(cur)
|
|
|
|
cur.execute("insert into table1 values (%s)", (1, ))
|
|
|
|
# this should fail
|
|
|
|
self.assertRaises(psycopg2.IntegrityError, self.wait, cur)
|
|
|
|
cur.execute("insert into table1 values (%s); "
|
|
|
|
"insert into table1 values (%s)", (2, 2))
|
|
|
|
# this should fail as well
|
|
|
|
self.assertRaises(psycopg2.IntegrityError, self.wait, cur)
|
|
|
|
# but this should work
|
|
|
|
cur.execute("insert into table1 values (%s)", (2, ))
|
|
|
|
self.wait(cur)
|
|
|
|
# and the cursor should be usable afterwards
|
|
|
|
cur.execute("insert into table1 values (%s)", (3, ))
|
|
|
|
self.wait(cur)
|
|
|
|
cur.execute("select * from table1 order by id")
|
|
|
|
self.wait(cur)
|
|
|
|
self.assertEquals(cur.fetchall(), [(1, ), (2, ), (3, )])
|
|
|
|
cur.execute("delete from table1")
|
|
|
|
self.wait(cur)
|
|
|
|
|
2010-04-12 01:12:01 +04:00
|
|
|
def test_error_two_cursors(self):
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur2 = self.conn.cursor()
|
|
|
|
cur.execute("select * from no_such_table")
|
|
|
|
self.assertRaises(psycopg2.ProgrammingError, self.wait, cur)
|
|
|
|
cur2.execute("select 1")
|
|
|
|
self.wait(cur2)
|
|
|
|
self.assertEquals(cur2.fetchone()[0], 1)
|
|
|
|
|
2010-04-20 20:52:05 +04:00
|
|
|
def test_notices(self):
|
|
|
|
del self.conn.notices[:]
|
|
|
|
cur = self.conn.cursor()
|
2013-03-15 21:10:13 +04:00
|
|
|
if self.conn.server_version >= 90300:
|
|
|
|
cur.execute("set client_min_messages=debug1")
|
|
|
|
self.wait(cur)
|
2010-04-20 20:52:05 +04:00
|
|
|
cur.execute("create temp table chatty (id serial primary key);")
|
|
|
|
self.wait(cur)
|
|
|
|
self.assertEqual("CREATE TABLE", cur.statusmessage)
|
|
|
|
self.assert_(self.conn.notices)
|
|
|
|
|
2011-01-03 15:41:36 +03:00
|
|
|
def test_async_cursor_gone(self):
|
2011-12-27 01:35:33 +04:00
|
|
|
import gc
|
2011-01-03 15:41:36 +03:00
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select 42;");
|
|
|
|
del cur
|
2011-12-27 01:35:33 +04:00
|
|
|
gc.collect()
|
2011-01-03 15:41:36 +03:00
|
|
|
self.assertRaises(psycopg2.InterfaceError, self.wait, self.conn)
|
|
|
|
|
|
|
|
# The connection is still usable
|
|
|
|
cur = self.conn.cursor()
|
|
|
|
cur.execute("select 42;");
|
|
|
|
self.wait(self.conn)
|
|
|
|
self.assertEqual(cur.fetchone(), (42,))
|
|
|
|
|
2013-10-16 18:28:16 +04:00
|
|
|
def test_async_connection_error_message(self):
|
|
|
|
try:
|
|
|
|
cnn = psycopg2.connect('dbname=thisdatabasedoesntexist', async=True)
|
|
|
|
self.wait(cnn)
|
|
|
|
except psycopg2.Error, e:
|
|
|
|
self.assertNotEqual(str(e), "asynchronous connection failed",
|
|
|
|
"connection error reason lost")
|
|
|
|
else:
|
|
|
|
self.fail("no exception raised")
|
|
|
|
|
2010-04-20 20:52:05 +04:00
|
|
|
|
2010-03-26 06:03:54 +03:00
|
|
|
def test_suite():
|
|
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
2010-04-11 03:06:54 +04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|
|
|
|
|