Merge "Refactor OSCreds to leverage kwargs instead of named parameters."
[snaps.git] / snaps / openstack / utils / tests / keystone_utils_tests.py
1 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
2 #                    and others.  All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain 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,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 import uuid
16
17 from snaps.openstack.create_project import ProjectSettings
18 from snaps.openstack.create_user import UserSettings
19 from snaps.openstack.tests.os_source_file_test import OSComponentTestCase
20 from snaps.openstack.utils import keystone_utils
21
22 __author__ = 'spisarski'
23
24
25 class KeystoneSmokeTests(OSComponentTestCase):
26     """
27     Tests to ensure that the neutron client can communicate with the cloud
28     """
29
30     def test_keystone_connect_success(self):
31         """
32         Tests to ensure that the proper credentials can connect.
33         """
34         keystone = keystone_utils.keystone_client(self.os_creds)
35
36         users = keystone.users.list()
37         self.assertIsNotNone(users)
38
39     def test_keystone_connect_fail(self):
40         """
41         Tests to ensure that the improper credentials cannot connect.
42         """
43         from snaps.openstack.os_credentials import OSCreds
44
45         with self.assertRaises(Exception):
46             keystone = keystone_utils.keystone_client(OSCreds(
47                 username='user', password='pass', auth_url='url',
48                 project_name='project'))
49             keystone.users.list()
50
51
52 class KeystoneUtilsTests(OSComponentTestCase):
53     """
54     Test for the CreateImage class defined in create_image.py
55     """
56
57     def setUp(self):
58         """
59         Instantiates the CreateImage object that is responsible for downloading
60         and creating an OS image file within OpenStack
61         """
62         guid = uuid.uuid4()
63         self.username = self.__class__.__name__ + '-' + str(guid)
64         self.user = None
65
66         self.project_name = self.__class__.__name__ + '-' + str(guid)
67         self.project = None
68         self.keystone = keystone_utils.keystone_client(self.os_creds)
69
70     def tearDown(self):
71         """
72         Cleans the remote OpenStack objects
73         """
74         if self.project:
75                 keystone_utils.delete_project(self.keystone, self.project)
76
77         if self.user:
78             keystone_utils.delete_user(self.keystone, self.user)
79
80     def test_create_user_minimal(self):
81         """
82         Tests the keystone_utils.create_user() function
83         """
84         user_settings = UserSettings(name=self.username, password='test123')
85         self.user = keystone_utils.create_user(self.keystone, user_settings)
86         self.assertEqual(self.username, self.user.name)
87
88         user = keystone_utils.get_user(self.keystone, self.username)
89         self.assertIsNotNone(user)
90         self.assertEqual(self.user, user)
91
92     def test_create_project_minimal(self):
93         """
94         Tests the keyston_utils.create_project() funtion
95         """
96         project_settings = ProjectSettings(name=self.project_name)
97         self.project = keystone_utils.create_project(self.keystone,
98                                                      project_settings)
99         self.assertEqual(self.project_name, self.project.name)
100
101         project = keystone_utils.get_project(
102             keystone=self.keystone, project_name=project_settings.name)
103         self.assertIsNotNone(project)
104         self.assertEqual(self.project_name, self.project.name)
105
106     def test_get_endpoint_success(self):
107         """
108         Tests to ensure that proper credentials and proper service type can
109         succeed.
110         """
111         endpoint = keystone_utils.get_endpoint(self.os_creds,
112                                                service_type="identity")
113         self.assertIsNotNone(endpoint)
114
115     def test_get_endpoint_fail_without_proper_service(self):
116         """
117         Tests to ensure that proper credentials and improper service type
118         cannot succeed.
119         """
120         with self.assertRaises(Exception):
121             keystone_utils.get_endpoint(self.os_creds, service_type="glance")
122
123     def test_get_endpoint_fail_without_proper_credentials(self):
124         """
125         Tests to ensure that improper credentials and proper service type
126         cannot succeed.
127         """
128         from snaps.openstack.os_credentials import OSCreds
129
130         with self.assertRaises(Exception):
131             keystone_utils.get_endpoint(
132                 OSCreds(username='user', password='pass', auth_url='url',
133                         project_name='project'),
134                 service_type="image")