1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
# 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 openstack.identity.v3 import trust
from openstack.tests.unit import base
IDENTIFIER = 'IDENTIFIER'
EXAMPLE = {
'allow_redelegation': False,
'expires_at': '2016-03-09T12:14:57.233772',
'id': IDENTIFIER,
'impersonation': True,
'links': {'self': 'fake_link'},
'project_id': '1',
'redelegated_trust_id': None,
'redelegation_count': '0',
'remaining_uses': 10,
'role_links': {'self': 'other_fake_link'},
'trustee_user_id': '2',
'trustor_user_id': '3',
'roles': [{'name': 'test-role'}],
}
class TestTrust(base.TestCase):
def test_basic(self):
sot = trust.Trust()
self.assertEqual('trust', sot.resource_key)
self.assertEqual('trusts', sot.resources_key)
self.assertEqual('/OS-TRUST/trusts', sot.base_path)
self.assertTrue(sot.allow_create)
self.assertTrue(sot.allow_fetch)
self.assertTrue(sot.allow_delete)
self.assertTrue(sot.allow_list)
def test_make_it(self):
sot = trust.Trust(**EXAMPLE)
self.assertEqual(EXAMPLE['allow_redelegation'], sot.allow_redelegation)
self.assertEqual(EXAMPLE['expires_at'], sot.expires_at)
self.assertEqual(EXAMPLE['id'], sot.id)
self.assertTrue(sot.is_impersonation)
self.assertEqual(EXAMPLE['links'], sot.links)
self.assertEqual(EXAMPLE['project_id'], sot.project_id)
self.assertEqual(EXAMPLE['role_links'], sot.role_links)
self.assertEqual(
EXAMPLE['redelegated_trust_id'], sot.redelegated_trust_id
)
self.assertEqual(EXAMPLE['remaining_uses'], sot.remaining_uses)
self.assertEqual(EXAMPLE['trustee_user_id'], sot.trustee_user_id)
self.assertEqual(EXAMPLE['trustor_user_id'], sot.trustor_user_id)
self.assertEqual(EXAMPLE['roles'], sot.roles)
self.assertEqual(EXAMPLE['redelegation_count'], sot.redelegation_count)
|