blob: aee36fa79a7566f6a166484831719345f41137ef [file] [log] [blame]
Felipe Monteiroffa47e62017-07-05 03:37:55 +01001# Copyright 2017 AT&T Corporation.
2# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
16"""Fixtures for Patrole tests."""
17from __future__ import absolute_import
18
Mykola Yakovliev11376ab2018-08-06 15:34:22 -050019from contextlib import contextmanager
Felipe Monteiroffa47e62017-07-05 03:37:55 +010020import fixtures
21import mock
Felipe Monteirob18a3f62017-09-19 04:25:51 +010022import time
Felipe Monteiroffa47e62017-07-05 03:37:55 +010023
Felipe Monteiro3e14f472017-08-17 23:02:11 +010024from tempest import clients
25from tempest.common import credentials_factory as credentials
Felipe Monteiroffa47e62017-07-05 03:37:55 +010026from tempest import config
Felipe Monteirob18a3f62017-09-19 04:25:51 +010027from tempest import test
Felipe Monteiroffa47e62017-07-05 03:37:55 +010028
29from patrole_tempest_plugin import rbac_utils
30
31
32CONF = config.CONF
33
34
35class ConfPatcher(fixtures.Fixture):
36 """Fixture to patch and restore global CONF. Adopted from Nova.
37
38 This also resets overrides for everything that is patched during
39 its teardown.
40 """
41
42 def __init__(self, **kwargs):
43 """Constructor
44
45 :params group: if specified all config options apply to that group.
46 :params **kwargs: the rest of the kwargs are processed as a
47 set of key/value pairs to be set as configuration override.
48 """
49 super(ConfPatcher, self).__init__()
50 self.group = kwargs.pop('group', None)
51 self.args = kwargs
52
53 def setUp(self):
54 super(ConfPatcher, self).setUp()
55 for k, v in self.args.items():
56 self.addCleanup(CONF.clear_override, k, self.group)
57 CONF.set_override(k, v, self.group)
58
59
60class RbacUtilsFixture(fixtures.Fixture):
Felipe Monteiro2693bf72017-08-12 22:56:47 +010061 """Fixture for `RbacUtils` class."""
Felipe Monteiroffa47e62017-07-05 03:37:55 +010062
63 USER_ID = mock.sentinel.user_id
64 PROJECT_ID = mock.sentinel.project_id
65
Felipe Monteiroffa47e62017-07-05 03:37:55 +010066 def setUp(self):
67 super(RbacUtilsFixture, self).setUp()
68
Felipe Monteirof6eb8622017-08-06 06:08:02 +010069 self.useFixture(ConfPatcher(rbac_test_role='member', group='patrole'))
Felipe Monteiroffa47e62017-07-05 03:37:55 +010070 self.useFixture(ConfPatcher(
71 admin_role='admin', auth_version='v3', group='identity'))
Felipe Monteirobf524fb2018-10-03 09:03:35 -050072 self.useFixture(ConfPatcher(
73 api_v3=True, group='identity-feature-enabled'))
Felipe Monteiroffa47e62017-07-05 03:37:55 +010074
75 test_obj_kwargs = {
76 'os_primary.credentials.user_id': self.USER_ID,
77 'os_primary.credentials.tenant_id': self.PROJECT_ID,
78 'os_primary.credentials.project_id': self.PROJECT_ID,
Felipe Monteiroffa47e62017-07-05 03:37:55 +010079 }
Felipe Monteirob18a3f62017-09-19 04:25:51 +010080 self.mock_test_obj = mock.Mock(
81 __name__='patrole_unit_test', spec=test.BaseTestCase,
Mykola Yakovliev1d829782018-08-03 14:37:37 -050082 os_primary=mock.Mock(),
83 get_auth_providers=mock.Mock(return_value=[mock.Mock()]),
84 **test_obj_kwargs)
Felipe Monteiroffa47e62017-07-05 03:37:55 +010085
Felipe Monteirob18a3f62017-09-19 04:25:51 +010086 # Mock out functionality that can't be used by unit tests. Mocking out
87 # time.sleep is a test optimization.
88 self.mock_time = mock.patch.object(
89 rbac_utils, 'time', __name__='mock_time', spec=time).start()
90 mock.patch.object(credentials, 'get_configured_admin_credentials',
91 spec=object).start()
92 mock_admin_mgr = mock.patch.object(
93 clients, 'Manager', spec=clients.Manager,
94 roles_v3_client=mock.Mock(), roles_client=mock.Mock()).start()
Felipe Monteiro3e14f472017-08-17 23:02:11 +010095 self.roles_v3_client = mock_admin_mgr.return_value.roles_v3_client
Felipe Monteiroffa47e62017-07-05 03:37:55 +010096
Felipe Monteiro2693bf72017-08-12 22:56:47 +010097 self.set_roles(['admin', 'member'], [])
98
Felipe Monteiro10e82fd2017-11-21 01:47:20 +000099 def override_role(self, *role_toggles):
100 """Instantiate `rbac_utils.RbacUtils` and call `override_role`.
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100101
Felipe Monteiro10e82fd2017-11-21 01:47:20 +0000102 Create an instance of `rbac_utils.RbacUtils` and call `override_role`
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100103 for each boolean value in `role_toggles`. The number of calls to
Felipe Monteiro10e82fd2017-11-21 01:47:20 +0000104 `override_role` is always 1 + len(`role_toggles`) because the
105 `rbac_utils.RbacUtils` constructor automatically calls `override_role`.
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100106
107 :param role_toggles: the list of boolean values iterated over and
Felipe Monteiro10e82fd2017-11-21 01:47:20 +0000108 passed to `override_role`.
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100109 """
Felipe Monteiro10e82fd2017-11-21 01:47:20 +0000110 _rbac_utils = rbac_utils.RbacUtils(self.mock_test_obj)
Felipe Monteiro2693bf72017-08-12 22:56:47 +0100111
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100112 for role_toggle in role_toggles:
Felipe Monteiro10e82fd2017-11-21 01:47:20 +0000113 _rbac_utils._override_role(self.mock_test_obj, role_toggle)
Felipe Monteiro2693bf72017-08-12 22:56:47 +0100114 # NOTE(felipemonteiro): Simulate that a role switch has occurred
115 # by updating the user's current role to the new role. This means
116 # that all API actions involved during a role switch -- listing,
117 # deleting and adding roles -- are executed, making it easier to
118 # assert that mock calls were called as expected.
119 new_role = 'member' if role_toggle else 'admin'
120 self.set_roles(['admin', 'member'], [new_role])
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100121
Mykola Yakovliev11376ab2018-08-06 15:34:22 -0500122 @contextmanager
123 def real_override_role(self, test_obj):
124 """Actual call to ``override_role``.
125
126 Useful for ensuring all the necessary mocks are performed before
127 the method in question is called.
128 """
129 _rbac_utils = rbac_utils.RbacUtils(test_obj)
130 with _rbac_utils.override_role(test_obj):
131 yield
132
Felipe Monteiro2693bf72017-08-12 22:56:47 +0100133 def set_roles(self, roles, roles_on_project=None):
134 """Set the list of available roles in the system.
135
136 :param roles: List of roles returned by ``list_roles``.
137 :param roles_on_project: List of roles returned by
138 ``list_user_roles_on_project``.
139 :returns: None.
140 """
141 if not roles_on_project:
142 roles_on_project = []
143 if not isinstance(roles, list):
144 roles = [roles]
145 if not isinstance(roles_on_project, list):
146 roles_on_project = [roles_on_project]
147
148 available_roles = {
Felipe Monteiroffa47e62017-07-05 03:37:55 +0100149 'roles': [{'name': role, 'id': '%s_id' % role} for role in roles]
150 }
Felipe Monteiro2693bf72017-08-12 22:56:47 +0100151 available_project_roles = {
152 'roles': [{'name': role, 'id': '%s_id' % role}
153 for role in roles_on_project]
154 }
155
156 self.roles_v3_client.list_roles.return_value = available_roles
157 self.roles_v3_client.list_user_roles_on_project.return_value = (
158 available_project_roles)