Merge "Modified code to support both Python 2.7 and 3.x"
[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('user', 'pass', 'url', 'project'))
47             keystone.users.list()
48
49
50 class KeystoneUtilsTests(OSComponentTestCase):
51     """
52     Test for the CreateImage class defined in create_image.py
53     """
54
55     def setUp(self):
56         """
57         Instantiates the CreateImage object that is responsible for downloading and creating an OS image file
58         within OpenStack
59         """
60         guid = uuid.uuid4()
61         self.username = self.__class__.__name__ + '-' + str(guid)
62         self.user = None
63
64         self.project_name = self.__class__.__name__ + '-' + str(guid)
65         self.project = None
66         self.keystone = keystone_utils.keystone_client(self.os_creds)
67
68     def tearDown(self):
69         """
70         Cleans the remote OpenStack objects
71         """
72         if self.project:
73                 keystone_utils.delete_project(self.keystone, self.project)
74
75         if self.user:
76             keystone_utils.delete_user(self.keystone, self.user)
77
78     def test_create_user_minimal(self):
79         """
80         Tests the keystone_utils.create_user() function
81         """
82         user_settings = UserSettings(name=self.username, password='test123')
83         self.user = keystone_utils.create_user(self.keystone, user_settings)
84         self.assertEqual(self.username, self.user.name)
85
86         user = keystone_utils.get_user(self.keystone, self.username)
87         self.assertIsNotNone(user)
88         self.assertEqual(self.user, user)
89
90     def test_create_project_minimal(self):
91         """
92         Tests the keyston_utils.create_project() funtion
93         """
94         project_settings = ProjectSettings(name=self.project_name)
95         self.project = keystone_utils.create_project(self.keystone, project_settings)
96         self.assertEqual(self.project_name, self.project.name)
97
98         project = keystone_utils.get_project(keystone=self.keystone, project_name=project_settings.name)
99         self.assertIsNotNone(project)
100         self.assertEqual(self.project_name, self.project.name)