
Once a top-level LICENSE file is included, pep8 will compare the license header of a source file to its expected value and complain if they don't match. This patch re-formats the headers in question to please pep8. No license content is changed, only formatting. Change-Id: I0f1318b23f343523ca679ca331ef6f9f7084ebc2
109 lines
3.6 KiB
Python
109 lines
3.6 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 falcon import testing as ftest
|
|
|
|
from marconi.queues import bootstrap
|
|
from marconi.queues.transport.wsgi import driver
|
|
from marconi import tests as testing
|
|
|
|
from marconi.queues.transport import validation
|
|
|
|
|
|
class TestBase(testing.TestBase):
|
|
|
|
config_file = None
|
|
|
|
def setUp(self):
|
|
super(TestBase, self).setUp()
|
|
|
|
if not self.config_file:
|
|
self.skipTest("No config specified")
|
|
|
|
self.conf.register_opts(validation._TRANSPORT_LIMITS_OPTIONS,
|
|
group=validation._TRANSPORT_LIMITS_GROUP)
|
|
self.transport_cfg = self.conf[validation._TRANSPORT_LIMITS_GROUP]
|
|
|
|
self.conf.register_opts(driver._WSGI_OPTIONS,
|
|
group=driver._WSGI_GROUP)
|
|
self.wsgi_cfg = self.conf[driver._WSGI_GROUP]
|
|
|
|
self.conf.admin_mode = True
|
|
self.boot = bootstrap.Bootstrap(self.conf)
|
|
|
|
self.app = self.boot.transport.app
|
|
|
|
self.srmock = ftest.StartResponseMock()
|
|
|
|
def tearDown(self):
|
|
if self.conf.sharding:
|
|
self.boot.control.shards_controller.drop_all()
|
|
self.boot.control.catalogue_controller.drop_all()
|
|
super(TestBase, self).tearDown()
|
|
|
|
def simulate_request(self, path, project_id=None, **kwargs):
|
|
"""Simulate a request.
|
|
|
|
Simulates a WSGI request to the API for testing.
|
|
|
|
:param path: Request path for the desired resource
|
|
:param project_id: Project ID to use for the X-Project-ID header,
|
|
or None to not set the header
|
|
:param kwargs: Same as falcon.testing.create_environ()
|
|
|
|
:returns: standard WSGI iterable response
|
|
"""
|
|
|
|
if project_id is not None:
|
|
headers = dict(kwargs['headers']) if 'headers' in kwargs else {}
|
|
headers['X-Project-ID'] = project_id
|
|
kwargs['headers'] = headers
|
|
|
|
return self.app(ftest.create_environ(path=path, **kwargs),
|
|
self.srmock)
|
|
|
|
def simulate_get(self, *args, **kwargs):
|
|
"""Simulate a GET request."""
|
|
kwargs['method'] = 'GET'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
def simulate_head(self, *args, **kwargs):
|
|
"""Simulate a HEAD request."""
|
|
kwargs['method'] = 'HEAD'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
def simulate_put(self, *args, **kwargs):
|
|
"""Simulate a PUT request."""
|
|
kwargs['method'] = 'PUT'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
def simulate_post(self, *args, **kwargs):
|
|
"""Simulate a POST request."""
|
|
kwargs['method'] = 'POST'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
def simulate_delete(self, *args, **kwargs):
|
|
"""Simulate a DELETE request."""
|
|
kwargs['method'] = 'DELETE'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
def simulate_patch(self, *args, **kwargs):
|
|
"""Simulate a PATCH request."""
|
|
kwargs['method'] = 'PATCH'
|
|
return self.simulate_request(*args, **kwargs)
|
|
|
|
|
|
class TestBaseFaulty(TestBase):
|
|
"""This test ensures we aren't letting any exceptions go unhandled."""
|