Statistics
| Branch: | Tag: | Revision:

root / snf-tools / synnefo_tools / burnin / images_tests.py @ f772699c

History | View | Annotate | Download (8.6 kB)

1

    
2
# Copyright 2013 GRNET S.A. All rights reserved.
3
#
4
# Redistribution and use in source and binary forms, with or
5
# without modification, are permitted provided that the following
6
# conditions are met:
7
#
8
#   1. Redistributions of source code must retain the above
9
#      copyright notice, this list of conditions and the following
10
#      disclaimer.
11
#
12
#   2. Redistributions in binary form must reproduce the above
13
#      copyright notice, this list of conditions and the following
14
#      disclaimer in the documentation and/or other materials
15
#      provided with the distribution.
16
#
17
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
# POSSIBILITY OF SUCH DAMAGE.
29
#
30
# The views and conclusions contained in the software and
31
# documentation are those of the authors and should not be
32
# interpreted as representing official policies, either expressed
33
# or implied, of GRNET S.A.
34

    
35
"""
36
This is the burnin class that tests the Flavors/Images functionality
37

38
"""
39

    
40
import os
41
import shutil
42

    
43
from kamaki.clients import ClientError
44

    
45
from synnefo_tools.burnin import common
46

    
47

    
48
# Too many public methods. pylint: disable-msg=R0904
49
class FlavorsTestSuite(common.BurninTests):
50
    """Test flavor lists for consistency"""
51
    simple_flavors = None
52
    detailed_flavors = None
53
    simple_names = None
54

    
55
    def test_001_simple_flavors(self):
56
        """Test flavor list actually returns flavors"""
57
        simple_flavors = self._get_list_of_flavors(detail=False)
58
        self._setattr("simple_flavors", simple_flavors)
59
        self.assertGreater(len(self.simple_flavors), 0)
60

    
61
    def test_002_get_detailed_flavors(self):
62
        """Test detailed flavor list is the same length as list"""
63
        detailed_flavors = self._get_list_of_flavors(detail=True)
64
        self._setattr("detailed_flavors", detailed_flavors)
65
        self.assertEquals(len(self.simple_flavors), len(self.detailed_flavors))
66

    
67
    def test_003_same_flavor_names(self):
68
        """Test detailed and simple flavor list contain same names"""
69
        simple_names = sorted([flv['name'] for flv in self.simple_flavors])
70
        self._setattr("simple_names", simple_names)
71
        detailed_names = sorted([flv['name'] for flv in self.detailed_flavors])
72
        self.assertEqual(simple_names, detailed_names)
73

    
74
    def test_004_unique_flavor_names(self):
75
        """Test flavors have unique names"""
76
        self.assertEqual(sorted(list(set(self.simple_names))),
77
                         self.simple_names)
78

    
79
    def test_005_well_formed_names(self):
80
        """Test flavors have well formed names
81

82
        Test flavors have names of the form CxxRyyDzz, where xx is vCPU count,
83
        yy is RAM in MiB, zz is Disk in GiB
84

85
        """
86
        for flv in self.detailed_flavors:
87
            flavor = (flv['vcpus'], flv['ram'], flv['disk'],
88
                      flv['SNF:disk_template'])
89
            self.assertEqual("C%dR%dD%d%s" % flavor, flv['name'],
90
                             "Flavor %s doesn't match its specs" % flv['name'])
91

    
92

    
93
# --------------------------------------------------------------------
94
# Too many public methods. pylint: disable-msg=R0904
95
class ImagesTestSuite(common.BurninTests):
96
    """Test image lists for consistency"""
97
    simple_images = None
98
    detailed_images = None
99
    system_images = None
100
    temp_dir = None
101
    temp_image_name = None
102
    temp_image_file = None
103

    
104
    def test_001_list_images(self):
105
        """Test simple image list actually returns images"""
106
        images = self._get_list_of_images(detail=False)
107
        self._setattr("simple_images", images)
108
        self.assertGreater(len(images), 0)
109

    
110
    def test_002_list_images_detailed(self):
111
        """Test detailed image list is the same length as simple list"""
112
        images = self._get_list_of_images(detail=True)
113
        self._setattr("detailed_images", images)
114
        self.assertEqual(len(self.simple_images), len(images))
115

    
116
    def test_003_same_image_names(self):
117
        """Test detailed and simple image list contain the same names"""
118
        snames = sorted([i['name'] for i in self.simple_images])
119
        dnames = sorted([i['name'] for i in self.detailed_images])
120
        self.assertEqual(snames, dnames)
121

    
122
    def test_004_system_images(self):
123
        """Test that there are system images registered"""
124
        images = self._get_list_of_sys_images(images=self.detailed_images)
125
        self._setattr("system_images", images)
126
        self.assertGreater(len(images), 0)
127

    
128
    def test_005_unique_image_names(self):
129
        """Test system images have unique names"""
130
        names = sorted([i['name'] for i in self.system_images])
131
        self.assertEqual(sorted(list(set(names))), names)
132

    
133
    def test_006_image_metadata(self):
134
        """Test every system image has specific metadata defined"""
135
        keys = frozenset(["osfamily", "root_partition"])
136
        for i in self.system_images:
137
            self.assertTrue(keys.issubset(i['properties'].keys()))
138

    
139
    def test_007_download_image(self):
140
        """Download image from Pithos"""
141
        # Find the 'Debian Base' image
142
        image = self._find_image(["name:^Debian Base$"],
143
                                 images=self.system_images)
144
        image_location = \
145
            image['location'].replace("://", " ").replace("/", " ").split()
146
        image_owner = image_location[1]
147
        self.info("Image's owner is %s", image_owner)
148
        image_container = image_location[2]
149
        self.info("Image's container is %s", image_container)
150
        image_name = image_location[3]
151
        self.info("Image's name is %s", image_name)
152
        self._setattr("temp_image_name", image_name)
153

    
154
        self._set_pithos_account(image_owner)
155
        self._set_pithos_container(image_container)
156

    
157
        # Create temp directory
158
        temp_dir = self._create_tmp_directory()
159
        self._setattr("temp_dir", temp_dir)
160
        self._setattr("temp_image_file",
161
                      os.path.join(self.temp_dir, self.temp_image_name))
162

    
163
        # Write to file
164
        self.info("Download image to %s", self.temp_image_file)
165
        with open(self.temp_image_file, "w+b") as fout:
166
            self.clients.pithos.download_object(image_name, fout)
167

    
168
    def test_008_upload_image(self):
169
        """Upload the image to Pithos"""
170
        self._set_pithos_account(self._get_uuid())
171
        self._create_pithos_container("burnin-images")
172
        with open(self.temp_image_file, "r+b") as fin:
173
            self.clients.pithos.upload_object(self.temp_image_name, fin)
174

    
175
    def test_009_register_image(self):
176
        """Register image to Plankton"""
177
        location = "pithos://" + self._get_uuid() + \
178
            "/burnin-images/" + self.temp_image_name
179
        self.info("Registering image %s", location)
180

    
181
        params = {'is_public': False}
182
        properties = {'OSFAMILY': "linux", 'ROOT_PARTITION': 1}
183
        self.clients.image.register(self.temp_image_name, location,
184
                                    params, properties)
185

    
186
        # Check that image is registered
187
        self.info("Checking that image has been registered")
188
        images = self._get_list_of_images(detail=True)
189
        images = [i for i in images if i['location'] == location]
190
        self.assertEqual(len(images), 1)
191
        self.info("Image registered with id %s", images[0]['id'])
192

    
193
    def test_010_cleanup_image(self):
194
        """Remove uploaded image from Pithos"""
195
        # Remove uploaded image
196
        self.info("Deleting uploaded image %s", self.temp_image_name)
197
        self.clients.pithos.del_object(self.temp_image_name)
198
        self._setattr("temp_image_name", None)
199
        # Remove temp directory
200
        self.info("Deleting temp directory %s", self.temp_dir)
201
        self._remove_tmp_directory(self.temp_dir)
202
        self._setattr("temp_dir", None)
203

    
204
    @classmethod
205
    def tearDownClass(cls):  # noqa
206
        """Clean up"""
207
        if cls.temp_image_name is not None:
208
            try:
209
                cls.clients.pithos.del_object(cls.temp_image_name)
210
            except ClientError:
211
                pass
212

    
213
        if cls.temp_dir is not None:
214
            try:
215
                shutil.rmtree(cls.temp_dir)
216
            except OSError:
217
                pass