psycopg2/sandbox/test_isready_connection_closed.py

32 lines
739 B
Python
Raw Normal View History

2009-01-10 20:48:31 +03:00
import gc
import sys
import os
import signal
import warnings
import psycopg2
print("Testing psycopg2 version %s" % psycopg2.__version__)
2009-01-10 20:48:31 +03:00
dbname = os.environ.get('PSYCOPG2_TESTDB', 'psycopg2_test')
conn = psycopg2.connect("dbname=%s" % dbname)
curs = conn.cursor()
curs.isready()
print("Now restart the test postgresql server to drop all connections, press enter when done.")
2009-01-10 20:48:31 +03:00
raw_input()
try:
curs.isready() # No need to test return value
curs.isready()
except:
print("Test passed")
2009-01-10 20:48:31 +03:00
sys.exit(0)
if curs.isready():
print("Warning: looks like the connection didn't get killed. This test is probably in-effective")
print("Test inconclusive")
2009-01-10 20:48:31 +03:00
sys.exit(1)
gc.collect() # used to error here
print("Test Passed")