designate/designate/tests/test_api/test_v1/__init__.py

119 lines
3.5 KiB
Python

# Copyright 2012 Managed I.T.
#
# Author: Kiall Mac Innes <kiall@managedit.ie>
#
# 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 oslo_log import log as logging
from oslo_serialization import jsonutils as json
from designate.api import v1 as api_v1
from designate.api import middleware
from designate.tests.test_api import ApiTestCase
LOG = logging.getLogger(__name__)
class ApiV1Test(ApiTestCase):
def setUp(self):
super(ApiV1Test, self).setUp()
# Ensure the v1 API is enabled
self.config(enable_api_v1=True, group='service:api')
# Create the application
self.app = api_v1.factory({})
# Inject the NormalizeURIMiddleware middleware
self.app.wsgi_app = middleware.NormalizeURIMiddleware(
self.app.wsgi_app)
# Inject the FaultWrapper middleware
self.app.wsgi_app = middleware.FaultWrapperMiddleware(
self.app.wsgi_app)
# Inject the ValidationError middleware
self.app.wsgi_app = middleware.APIv1ValidationErrorMiddleware(
self.app.wsgi_app)
# Inject the TestAuth middleware
self.app.wsgi_app = middleware.TestContextMiddleware(
self.app.wsgi_app, self.admin_context.tenant,
self.admin_context.user)
# Obtain a test client
self.client = self.app.test_client()
def get(self, path, **kw):
expected_status_code = kw.pop('status_code', 200)
resp = self.client.get(path=path)
LOG.debug('Response Body: %r' % resp.data)
self.assertEqual(expected_status_code, resp.status_code)
try:
resp.json = json.loads(resp.data)
except ValueError:
resp.json = None
return resp
def post(self, path, data, content_type="application/json", **kw):
expected_status_code = kw.pop('status_code', 200)
content = json.dumps(data)
resp = self.client.post(path=path, content_type=content_type,
data=content)
LOG.debug('Response Body: %r' % resp.data)
self.assertEqual(expected_status_code, resp.status_code)
try:
resp.json = json.loads(resp.data)
except ValueError:
resp.json = None
return resp
def put(self, path, data, content_type="application/json", **kw):
expected_status_code = kw.pop('status_code', 200)
content = json.dumps(data)
resp = self.client.put(path=path, content_type=content_type,
data=content)
LOG.debug('Response Body: %r' % resp.data)
self.assertEqual(expected_status_code, resp.status_code)
try:
resp.json = json.loads(resp.data)
except ValueError:
resp.json = None
return resp
def delete(self, path, **kw):
expected_status_code = kw.pop('status_code', 200)
resp = self.client.delete(path=path)
LOG.debug('Response Body: %r' % resp.data)
self.assertEqual(expected_status_code, resp.status_code)
return resp