Merge "Fix image create with tags"

This commit is contained in:
Zuul 2019-09-17 17:09:16 +00:00 committed by Gerrit Code Review
commit 8b85e8c954
3 changed files with 5 additions and 4 deletions

View File

@ -26,6 +26,7 @@ from openstack import utils
# Rackspace returns this for intermittent import errors
_IMAGE_ERROR_396 = "Image cannot be imported. Error code: '396'"
_INT_PROPERTIES = ('min_disk', 'min_ram', 'size', 'virtual_size')
_RAW_PROPERTIES = ('protected', 'tags')
class Proxy(_base_proxy.BaseImageProxy):
@ -184,7 +185,7 @@ class Proxy(_base_proxy.BaseImageProxy):
for k, v in iter(properties.items()):
if k in _INT_PROPERTIES:
ret[k] = int(v)
elif k == 'protected':
elif k in _RAW_PROPERTIES:
ret[k] = v
else:
if v is None:

View File

@ -104,8 +104,6 @@ class Image(resource.Resource, resource.TagMixin, _download.DownloadMixin):
store = resource.Body('store')
#: The image status.
status = resource.Body('status')
#: Tags, if any, that are associated with the image.
tags = resource.Body('tags')
#: The date and time when the image was updated.
updated_at = resource.Body('updated_at')
#: The virtual size of the image.

View File

@ -339,7 +339,8 @@ class TestImage(BaseTestImage):
u'owner_specified.openstack.sha256':
self.fake_image_dict[
'owner_specified.openstack.sha256'],
u'visibility': u'private'})
u'visibility': u'private',
u'tags': [u'tag1', u'tag2']})
),
dict(method='PUT',
uri=self.get_mock_url(
@ -360,6 +361,7 @@ class TestImage(BaseTestImage):
self.cloud.create_image(
self.image_name, self.imagefile.name, wait=True, timeout=1,
tags=['tag1', 'tag2'],
is_public=False)
self.assert_calls()