sprockets.mixins.postgresql/tests.py
Gavin M. Roy 380c9001ce Fix tests
2015-05-14 15:59:59 -04:00

51 lines
1.4 KiB
Python

"""
Tests for the sprockets.mixins.postgresql package
"""
import mock
import os
try:
import unittest2 as unittest
except ImportError:
import unittest
from sprockets.clients import postgresql as _postgresql
from sprockets.mixins import postgresql
class MixinRequestHandler(postgresql.HandlerMixin):
DBNAME = 'bar'
class AsyncMixinRequestHandler(postgresql.AsyncHandlerMixin):
DBNAME = 'baz'
class HandlerMixinTest(unittest.TestCase):
@mock.patch('queries.session.Session.__init__')
def setUp(self, mock_init):
self.mock_init = mock_init
os.environ['PGSQL_BAR'] = 'postgres://foo:baz@db1:5433/bar'
self.mixin = MixinRequestHandler()
self.mixin.initialize()
def test_session_get_uri_value(self):
self.assertIsInstance(getattr(self.mixin, 'bar_session'),
_postgresql.Session)
class AsyncHandlerMixinTest(unittest.TestCase):
@mock.patch('queries.tornado_session.TornadoSession.__init__')
def setUp(self, mock_init):
self.mock_init = mock_init
os.environ['PGSQL_BAZ'] = 'postgres://qux:corgie@db2:5434/baz'
self.mixin = AsyncMixinRequestHandler()
self.mixin.initialize()
def test_session_get_uri_value(self):
self.assertIsInstance(getattr(self.mixin, 'baz_session'),
_postgresql.TornadoSession)