52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
# Copyright (c) 2013 Rackspace, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from zaqar import bootstrap
|
|
from zaqar.common import errors
|
|
from zaqar.storage import pooling
|
|
from zaqar.tests import base
|
|
from zaqar.transport import websocket
|
|
from zaqar.transport import wsgi
|
|
|
|
|
|
class TestBootstrap(base.TestBase):
|
|
|
|
def _bootstrap(self, conf_file):
|
|
self.conf = self.load_conf(conf_file)
|
|
return bootstrap.Bootstrap(self.conf)
|
|
|
|
def test_storage_invalid(self):
|
|
bootstrap = self._bootstrap('drivers_storage_invalid.conf')
|
|
self.assertRaises(errors.InvalidDriver,
|
|
lambda: bootstrap.storage)
|
|
|
|
def test_storage_mongodb_pooled(self):
|
|
"""Makes sure we can load the pool driver."""
|
|
bootstrap = self._bootstrap('wsgi_mongodb_pooled.conf')
|
|
self.assertIsInstance(bootstrap.storage._storage, pooling.DataDriver)
|
|
|
|
def test_transport_invalid(self):
|
|
bootstrap = self._bootstrap('drivers_transport_invalid.conf')
|
|
self.assertRaises(errors.InvalidDriver,
|
|
lambda: bootstrap.transport)
|
|
|
|
def test_transport_wsgi(self):
|
|
bootstrap = self._bootstrap('wsgi_mongodb.conf')
|
|
self.assertIsInstance(bootstrap.transport, wsgi.Driver)
|
|
|
|
def test_transport_websocket(self):
|
|
bootstrap = self._bootstrap('websocket_mongodb.conf')
|
|
self.assertIsInstance(bootstrap.transport, websocket.Driver)
|