1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
# -*- coding: utf-8 -*-
import os
import sys
import signal
import tempfile
import testing.postgresql
from time import sleep
from shutil import rmtree
import pg8000
import psycopg2
import sqlalchemy
from contextlib import closing
if sys.version_info < (2, 7):
import unittest2 as unittest
else:
import unittest
class TestPostgresql(unittest.TestCase):
def test_basic(self):
try:
# start postgresql server
pgsql = testing.postgresql.Postgresql()
self.assertIsNotNone(pgsql)
params = pgsql.dsn()
self.assertEqual('test', params['database'])
self.assertEqual('127.0.0.1', params['host'])
self.assertEqual(pgsql.settings['port'], params['port'])
self.assertEqual('postgres', params['user'])
# connect to postgresql (w/ psycopg2)
conn = psycopg2.connect(**pgsql.dsn())
self.assertIsNotNone(conn)
self.assertRegexpMatches(pgsql.read_bootlog(), 'is ready to accept connections')
conn.close()
# connect to postgresql (w/ sqlalchemy)
engine = sqlalchemy.create_engine(pgsql.url())
self.assertIsNotNone(engine)
# connect to postgresql (w/ pg8000)
conn = pg8000.connect(**pgsql.dsn())
self.assertIsNotNone(conn)
self.assertRegexpMatches(pgsql.read_bootlog(), 'is ready to accept connections')
conn.close()
finally:
# shutting down
pid = pgsql.pid
self.assertTrue(pid)
os.kill(pid, 0) # process is alive
pgsql.stop()
sleep(1)
self.assertIsNone(pgsql.pid)
with self.assertRaises(OSError):
os.kill(pid, 0) # process is down
def test_stop(self):
# start postgresql server
pgsql = testing.postgresql.Postgresql()
self.assertIsNotNone(pgsql.pid)
self.assertTrue(os.path.exists(pgsql.base_dir))
pid = pgsql.pid
os.kill(pid, 0) # process is alive
# call stop()
pgsql.stop()
self.assertIsNone(pgsql.pid)
self.assertFalse(os.path.exists(pgsql.base_dir))
with self.assertRaises(OSError):
os.kill(pid, 0) # process is down
# call stop() again
pgsql.stop()
self.assertIsNone(pgsql.pid)
self.assertFalse(os.path.exists(pgsql.base_dir))
with self.assertRaises(OSError):
os.kill(pid, 0) # process is down
# delete postgresql object after stop()
del pgsql
def test_dsn_and_url(self):
pgsql = testing.postgresql.Postgresql(port=12345, auto_start=0)
self.assertEqual({'database': 'test', 'host': '127.0.0.1', 'port': 12345, 'user': 'postgres'},
pgsql.dsn())
self.assertEqual("postgresql://postgres@127.0.0.1:12345/test", pgsql.url())
def test_with_statement(self):
with testing.postgresql.Postgresql() as pgsql:
self.assertIsNotNone(pgsql)
# connect to postgresql
conn = pg8000.connect(**pgsql.dsn())
self.assertIsNotNone(conn)
conn.close()
pid = pgsql.pid
os.kill(pid, 0) # process is alive
self.assertIsNone(pgsql.pid)
with self.assertRaises(OSError):
os.kill(pid, 0) # process is down
def test_multiple_postgresql(self):
pgsql1 = testing.postgresql.Postgresql()
pgsql2 = testing.postgresql.Postgresql()
self.assertNotEqual(pgsql1.pid, pgsql2.pid)
os.kill(pgsql1.pid, 0) # process is alive
os.kill(pgsql2.pid, 0) # process is alive
def test_postgresql_is_not_found(self):
try:
search_paths = testing.postgresql.SEARCH_PATHS
testing.postgresql.SEARCH_PATHS = []
path_env = os.environ['PATH']
os.environ['PATH'] = ''
with self.assertRaises(RuntimeError):
testing.postgresql.Postgresql()
finally:
testing.postgresql.SEARCH_PATHS = search_paths
os.environ['PATH'] = path_env
def test_fork(self):
pgsql = testing.postgresql.Postgresql()
if os.fork() == 0:
del pgsql
pgsql = None
os.kill(os.getpid(), signal.SIGTERM) # exit tests FORCELY
else:
os.wait()
sleep(1)
self.assertTrue(pgsql.pid)
os.kill(pgsql.pid, 0) # process is alive (delete pgsql obj in child does not effect)
def test_stop_on_child_process(self):
pgsql = testing.postgresql.Postgresql()
if os.fork() == 0:
pgsql.stop()
self.assertTrue(pgsql.pid)
os.kill(pgsql.pid, 0) # process is alive (calling stop() is ignored)
os.kill(os.getpid(), signal.SIGTERM) # exit tests FORCELY
else:
os.wait()
sleep(1)
self.assertTrue(pgsql.pid)
os.kill(pgsql.pid, 0) # process is alive (calling stop() in child is ignored)
def test_copy_data_from(self):
try:
tmpdir = tempfile.mkdtemp()
# create new database
with testing.postgresql.Postgresql(base_dir=tmpdir) as pgsql:
conn = pg8000.connect(**pgsql.dsn())
with closing(conn.cursor()) as cursor:
cursor.execute("CREATE TABLE hello(id int, value varchar(256))")
cursor.execute("INSERT INTO hello values(1, 'hello'), (2, 'ciao')")
conn.commit()
conn.close()
# create another database from first one
data_dir = os.path.join(tmpdir, 'data')
with testing.postgresql.Postgresql(copy_data_from=data_dir) as pgsql:
conn = pg8000.connect(**pgsql.dsn())
with closing(conn.cursor()) as cursor:
cursor.execute('SELECT * FROM hello ORDER BY id')
self.assertEqual(cursor.fetchall(), ([1, 'hello'], [2, 'ciao']))
conn.close()
finally:
rmtree(tmpdir)
def test_skipIfNotInstalled_found(self):
try:
search_paths = testing.postgresql.SEARCH_PATHS
testing.postgresql.SEARCH_PATHS = []
path_env = os.environ['PATH']
os.environ['PATH'] = ''
@testing.postgresql.skipIfNotInstalled
def testcase():
pass
self.assertEqual(True, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(True, hasattr(testcase, '__unittest_skip_why__'))
self.assertEqual(True, testcase.__unittest_skip__)
self.assertEqual("PostgreSQL not found", testcase.__unittest_skip_why__)
finally:
testing.postgresql.SEARCH_PATHS = search_paths
os.environ['PATH'] = path_env
def test_skipIfNotInstalled_notfound(self):
@testing.postgresql.skipIfNotInstalled
def testcase():
pass
self.assertEqual(False, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(False, hasattr(testcase, '__unittest_skip_why__'))
def test_skipIfNotInstalled_with_args_found(self):
path = testing.postgresql.find_program('postgres', ['bin'])
@testing.postgresql.skipIfNotInstalled(path)
def testcase():
pass
self.assertEqual(False, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(False, hasattr(testcase, '__unittest_skip_why__'))
def test_skipIfNotInstalled_with_args_notfound(self):
@testing.postgresql.skipIfNotInstalled("/path/to/anywhere")
def testcase():
pass
self.assertEqual(True, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(True, hasattr(testcase, '__unittest_skip_why__'))
self.assertEqual(True, testcase.__unittest_skip__)
self.assertEqual("PostgreSQL not found", testcase.__unittest_skip_why__)
def test_skipIfNotFound_found(self):
try:
search_paths = testing.postgresql.SEARCH_PATHS
testing.postgresql.SEARCH_PATHS = []
path_env = os.environ['PATH']
os.environ['PATH'] = ''
@testing.postgresql.skipIfNotFound
def testcase():
pass
self.assertEqual(True, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(True, hasattr(testcase, '__unittest_skip_why__'))
self.assertEqual(True, testcase.__unittest_skip__)
self.assertEqual("PostgreSQL not found", testcase.__unittest_skip_why__)
finally:
testing.postgresql.SEARCH_PATHS = search_paths
os.environ['PATH'] = path_env
def test_skipIfNotFound_notfound(self):
@testing.postgresql.skipIfNotFound
def testcase():
pass
self.assertEqual(False, hasattr(testcase, '__unittest_skip__'))
self.assertEqual(False, hasattr(testcase, '__unittest_skip_why__'))
def test_PostgresqlFactory(self):
Postgresql = testing.postgresql.PostgresqlFactory(cache_initialized_db=True)
with Postgresql() as pgsql1:
self.assertTrue(pgsql1.settings['copy_data_from'])
copy_data_from1 = pgsql1.settings['copy_data_from']
self.assertTrue(os.path.exists(copy_data_from1))
with Postgresql() as pgsql2:
self.assertEqual(copy_data_from1, pgsql2.settings['copy_data_from'])
Postgresql.clear_cache()
self.assertFalse(os.path.exists(copy_data_from1))
def test_PostgresqlFactory_with_initialized_handler(self):
def handler(pgsql):
conn = pg8000.connect(**pgsql.dsn())
with closing(conn.cursor()) as cursor:
cursor.execute("CREATE TABLE hello(id int, value varchar(256))")
cursor.execute("INSERT INTO hello values(1, 'hello'), (2, 'ciao')")
conn.commit()
conn.close()
Postgresql = testing.postgresql.PostgresqlFactory(cache_initialized_db=True,
on_initialized=handler)
try:
with Postgresql() as pgsql:
conn = pg8000.connect(**pgsql.dsn())
with closing(conn.cursor()) as cursor:
cursor.execute('SELECT * FROM hello ORDER BY id')
self.assertEqual(cursor.fetchall(), ([1, 'hello'], [2, 'ciao']))
conn.close()
finally:
Postgresql.clear_cache()
|