patrole/patrole_tempest_plugin/tests/api/orchestration/rbac_base.py

39 lines
1.4 KiB
Python

# Copyright 2017 AT&T Corporation.
# 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 tempest.api.orchestration import base as heat_base
from tempest import config
from patrole_tempest_plugin.rbac_utils import rbac_utils
CONF = config.CONF
class BaseOrchestrationRbacTest(heat_base.BaseOrchestrationTest):
credentials = ['admin', 'primary']
@classmethod
def skip_checks(cls):
super(BaseOrchestrationRbacTest, cls).skip_checks()
if not CONF.rbac.rbac_flag:
raise cls.skipException(
"%s skipped as RBAC Flag not enabled" % cls.__name__)
@classmethod
def setup_clients(cls):
super(BaseOrchestrationRbacTest, cls).setup_clients()
cls.auth_provider = cls.os.auth_provider
cls.rbac_utils = rbac_utils()
cls.rbac_utils.switch_role(cls, switchToRbacRole=False)