2006-02-11 09:55:17 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import dbapi20
|
2010-10-06 04:39:58 +04:00
|
|
|
import dbapi20_tpc
|
2010-11-09 04:44:42 +03:00
|
|
|
from test_connection import skip_if_tpc_disabled
|
2006-02-11 09:55:17 +03:00
|
|
|
import unittest
|
|
|
|
import psycopg2
|
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
import tests
|
|
|
|
|
2010-10-06 04:39:58 +04:00
|
|
|
class Psycopg2Tests(dbapi20.DatabaseAPI20Test):
|
2006-02-11 09:55:17 +03:00
|
|
|
driver = psycopg2
|
|
|
|
connect_args = ()
|
2008-04-21 03:12:21 +04:00
|
|
|
connect_kw_args = {'dsn': tests.dsn}
|
2006-02-11 09:55:17 +03:00
|
|
|
|
|
|
|
lower_func = 'lower' # For stored procedure test
|
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
def test_setoutputsize(self):
|
|
|
|
# psycopg2's setoutputsize() is a no-op
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_nextset(self):
|
|
|
|
# psycopg2 does not implement nextset()
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2010-10-06 04:39:58 +04:00
|
|
|
class Psycopg2TPCTests(dbapi20_tpc.TwoPhaseCommitTests):
|
|
|
|
driver = psycopg2
|
|
|
|
|
|
|
|
def connect(self):
|
|
|
|
return psycopg2.connect(dsn=tests.dsn)
|
|
|
|
|
2010-11-09 04:44:42 +03:00
|
|
|
@skip_if_tpc_disabled
|
|
|
|
def test_tpc_commit_with_prepare(self):
|
|
|
|
super(Psycopg2TPCTests, self).test_tpc_commit_with_prepare()
|
|
|
|
|
|
|
|
@skip_if_tpc_disabled
|
|
|
|
def test_tpc_rollback_with_prepare(self):
|
|
|
|
super(Psycopg2TPCTests, self).test_tpc_rollback_with_prepare()
|
2010-10-06 04:39:58 +04:00
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
def test_suite():
|
|
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
2006-02-11 09:55:17 +03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|