mistral/mistral/tests/unit/api/test_auth.py

76 lines
2.2 KiB
Python

# -*- coding: utf-8 -*-
#
# 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.
import datetime
import uuid
from oslo.config import cfg
import pecan
import pecan.testing
from mistral.openstack.common import timeutils
from mistral.tests.unit.api import base
WORKBOOKS = [
{
u'name': u'my_workbook',
u'description': u'My cool Mistral workbook',
u'scope': None,
u'tags': [u'deployment', u'demo']
}
]
PKI_TOKEN_VERIFIED = {
'token': {
'methods': ['password'],
'roles': [{'id': uuid.uuid4().hex,
'name': 'admin'}],
'expires_at': timeutils.isotime(datetime.datetime.utcnow() +
datetime.timedelta(seconds=60)),
'project': {
'domain': {'id': 'default', 'name': 'Default'},
'id': uuid.uuid4().hex,
'name': 'Mistral'
},
'catalog': [],
'extras': {},
'user': {
'domain': {'id': 'default', 'name': 'Default'},
'id': uuid.uuid4().hex,
'name': 'admin'
},
'issued_at': timeutils.isotime()
}
}
class TestKeystoneMiddleware(base.FunctionalTest):
"""Test that the keystone middleware AuthProtocol is executed
when enabled.
"""
def setUp(self):
super(TestKeystoneMiddleware, self).setUp()
cfg.CONF.set_default('auth_enable', True, group='pecan')
self.app = pecan.testing.load_test_app({
'app': {
'root': cfg.CONF.pecan.root,
'modules': cfg.CONF.pecan.modules,
'debug': cfg.CONF.pecan.debug,
'auth_enable': cfg.CONF.pecan.auth_enable
}
})