Merge "Matching test_check_vm_ip_dhcp on ip only"
[snaps.git] / snaps / openstack / utils / tests / glance_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 os
16 import shutil
17 import uuid
18
19 from snaps import file_utils
20 from snaps.openstack.tests import openstack_tests
21
22 from snaps.openstack.tests import validation_utils
23 from snaps.openstack.tests.os_source_file_test import OSComponentTestCase
24 from snaps.openstack.utils import glance_utils
25
26 __author__ = 'spisarski'
27
28
29 class GlanceSmokeTests(OSComponentTestCase):
30     """
31     Tests to ensure that the neutron client can communicate with the cloud
32     """
33
34     def test_glance_connect_success(self):
35         """
36         Tests to ensure that the proper credentials can connect.
37         """
38         glance = glance_utils.glance_client(self.os_creds)
39         image = glance_utils.get_image(glance, 'foo')
40         self.assertIsNone(image)
41
42     def test_glance_connect_fail(self):
43         """
44         Tests to ensure that the improper credentials cannot connect.
45         """
46         from snaps.openstack.os_credentials import OSCreds
47
48         with self.assertRaises(Exception):
49             glance = glance_utils.glance_client(OSCreds('user', 'pass', 'url', 'project'))
50             glance_utils.get_image(glance, 'foo')
51
52
53 class GlanceUtilsTests(OSComponentTestCase):
54     """
55     Test for the CreateImage class defined in create_image.py
56     """
57
58     def setUp(self):
59         """
60         Instantiates the CreateImage object that is responsible for downloading and creating an OS image file
61         within OpenStack
62         """
63         guid = uuid.uuid4()
64         self.image_name = self.__class__.__name__ + '-' + str(guid)
65         self.image = None
66         self.glance = glance_utils.glance_client(self.os_creds)
67
68         self.tmp_dir = 'tmp/' + str(guid)
69         if not os.path.exists(self.tmp_dir):
70             os.makedirs(self.tmp_dir)
71
72     def tearDown(self):
73         """
74         Cleans the remote OpenStack objects
75         """
76         if self.image:
77             glance_utils.delete_image(self.glance, self.image)
78
79         if os.path.exists(self.tmp_dir) and os.path.isdir(self.tmp_dir):
80             shutil.rmtree(self.tmp_dir)
81
82     def test_create_image_minimal_url(self):
83         """
84         Tests the glance_utils.create_image() function with a URL
85         """
86         os_image_settings = openstack_tests.cirros_url_image(name=self.image_name)
87
88         self.image = glance_utils.create_image(self.glance, os_image_settings)
89         self.assertIsNotNone(self.image)
90
91         self.assertEqual(self.image_name, self.image.name)
92
93         image = glance_utils.get_image(self.glance, os_image_settings.name)
94         self.assertIsNotNone(image)
95
96         validation_utils.objects_equivalent(self.image, image)
97
98     def test_create_image_minimal_file(self):
99         """
100         Tests the glance_utils.create_image() function with a file
101         """
102         url_image_settings = openstack_tests.cirros_url_image('foo')
103         image_file = file_utils.download(url_image_settings.url, self.tmp_dir)
104         file_image_settings = openstack_tests.file_image_test_settings(name=self.image_name, file_path=image_file.name)
105
106         self.image = glance_utils.create_image(self.glance, file_image_settings)
107         self.assertIsNotNone(self.image)
108         self.assertEqual(self.image_name, self.image.name)
109
110         image = glance_utils.get_image(self.glance, file_image_settings.name)
111         self.assertIsNotNone(image)
112         validation_utils.objects_equivalent(self.image, image)