
Openstack common has a wrapper for generating uuids. We should use that function to generate uuids for consistency. Change-Id: If31cc81bbf2f386db660a760eb866c7c1abd786a
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# Copyright (c) 2013 Red Hat, 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.
|
|
"""Test Auth."""
|
|
|
|
|
|
import falcon
|
|
from falcon import testing
|
|
from keystonemiddleware import auth_token
|
|
from oslo_utils import uuidutils
|
|
|
|
from zaqar.tests.unit.transport.wsgi import base
|
|
|
|
|
|
class TestAuth(base.V1Base):
|
|
|
|
config_file = 'keystone_auth.conf'
|
|
|
|
def setUp(self):
|
|
super(TestAuth, self).setUp()
|
|
self.headers = {'Client-ID': uuidutils.generate_uuid()}
|
|
|
|
def test_auth_install(self):
|
|
self.assertIsInstance(self.app._auth_app, auth_token.AuthProtocol)
|
|
|
|
def test_non_authenticated(self):
|
|
env = testing.create_environ(self.url_prefix + '/480924/queues/',
|
|
method='GET',
|
|
headers=self.headers)
|
|
|
|
self.app(env, self.srmock)
|
|
self.assertEqual(falcon.HTTP_401, self.srmock.status)
|