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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
# 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.
import uuid
import fixtures
from openstackclient.tests.functional.image import base
class ImageTests(base.BaseImageTests):
"""Functional tests for Image commands"""
def setUp(self):
super().setUp()
ver_fixture = fixtures.EnvironmentVariable('OS_IMAGE_API_VERSION', '2')
self.useFixture(ver_fixture)
self.name = uuid.uuid4().hex
self.image_tag = 'my_tag'
self.image_tag1 = 'random'
output = self.openstack(
f'image create --tag {self.image_tag} {self.name}',
parse_output=True,
)
self.image_id = output["id"]
self.assertOutput(self.name, output['name'])
def tearDown(self):
try:
self.openstack('image delete ' + self.image_id)
finally:
super().tearDown()
def test_image_list(self):
output = self.openstack('image list', parse_output=True)
self.assertIn(self.name, [img['Name'] for img in output])
def test_image_list_with_name_filter(self):
output = self.openstack(
'image list --name ' + self.name,
parse_output=True,
)
self.assertIn(self.name, [img['Name'] for img in output])
def test_image_list_with_status_filter(self):
output = self.openstack(
'image list --status active',
parse_output=True,
)
self.assertIn('active', [img['Status'] for img in output])
def test_image_list_with_tag_filter(self):
output = self.openstack(
'image list --tag '
+ self.image_tag
+ ' --tag '
+ self.image_tag1
+ ' --long',
parse_output=True,
)
for taglist in [img['Tags'] for img in output]:
self.assertIn(self.image_tag, taglist)
self.assertIn(self.image_tag1, taglist)
def test_image_attributes(self):
"""Test set, unset, show on attributes, tags and properties"""
# Test explicit attributes
self.openstack(
'image set '
+ '--min-disk 4 '
+ '--min-ram 5 '
+ '--public '
+ self.name
)
output = self.openstack(
'image show ' + self.name,
parse_output=True,
)
self.assertEqual(
4,
output["min_disk"],
)
self.assertEqual(
5,
output["min_ram"],
)
self.assertEqual(
'public',
output["visibility"],
)
# Test properties
self.openstack(
'image set '
+ '--property a=b '
+ '--property c=d '
+ '--property hw_rng_model=virtio '
+ '--public '
+ self.name
)
output = self.openstack(
'image show ' + self.name,
parse_output=True,
)
self.assertIn("a", output["properties"])
self.assertIn("c", output["properties"])
self.openstack(
'image unset '
+ '--property a '
+ '--property c '
+ '--property hw_rng_model '
+ self.name
)
output = self.openstack(
'image show ' + self.name,
parse_output=True,
)
self.assertNotIn("a", output["properties"])
self.assertNotIn("c", output["properties"])
# Test tags
self.assertNotIn('01', output["tags"])
self.openstack('image set ' + '--tag 01 ' + self.name)
output = self.openstack(
'image show ' + self.name,
parse_output=True,
)
self.assertIn('01', output["tags"])
self.openstack('image unset ' + '--tag 01 ' + self.name)
output = self.openstack(
'image show ' + self.name,
parse_output=True,
)
self.assertNotIn('01', output["tags"])
def test_image_set_rename(self):
name = uuid.uuid4().hex
output = self.openstack(
'image create ' + name,
parse_output=True,
)
image_id = output["id"]
self.assertEqual(
name,
output["name"],
)
self.openstack('image set ' + '--name ' + name + 'xx ' + image_id)
output = self.openstack(
'image show ' + name + 'xx',
parse_output=True,
)
self.assertEqual(
name + 'xx',
output["name"],
)
# TODO(dtroyer): This test is incomplete and doesn't properly test
# sharing images. Fix after the --shared option is
# properly added.
def test_image_members(self):
"""Test member add, remove, accept"""
output = self.openstack(
'token issue',
parse_output=True,
)
my_project_id = output['project_id']
output = self.openstack(
'image show -f json ' + self.name,
parse_output=True,
)
# NOTE(dtroyer): Until OSC supports --shared flags in create and set
# we can not properly test membership. Sometimes the
# images are shared and sometimes they are not.
if output["visibility"] == 'shared':
self.openstack(
'image add project ' + self.name + ' ' + my_project_id
)
# self.addCleanup(
# self.openstack,
# 'image remove project ' +
# self.name + ' ' +
# my_project_id
# )
self.openstack('image set ' + '--accept ' + self.name)
output = self.openstack(
'image list -f json ' + '--shared',
parse_output=True,
)
self.assertIn(self.name, [img['Name'] for img in output])
self.openstack('image set ' + '--reject ' + self.name)
output = self.openstack(
'image list -f json ' + '--shared',
parse_output=True,
)
# self.assertNotIn(
# self.name,
# [img['Name'] for img in output]
# )
self.openstack(
'image remove project ' + self.name + ' ' + my_project_id
)
def test_image_hidden(self):
# Test image is shown in list
output = self.openstack(
'image list',
parse_output=True,
)
self.assertIn(
self.name,
[img['Name'] for img in output],
)
# Hide the image and test image not show in the list
self.openstack('image set ' + '--hidden ' + self.name)
output = self.openstack(
'image list',
parse_output=True,
)
self.assertNotIn(self.name, [img['Name'] for img in output])
# Test image show in the list with flag
output = self.openstack(
'image list',
parse_output=True,
)
self.assertNotIn(self.name, [img['Name'] for img in output])
# Unhide the image and test image is again visible in regular list
self.openstack('image set ' + '--unhidden ' + self.name)
output = self.openstack(
'image list',
parse_output=True,
)
self.assertIn(
self.name,
[img['Name'] for img in output],
)
|