From: peusterm Date: Mon, 19 Jun 2017 07:35:38 +0000 (+0200) Subject: Fix: Made Glance API compatible to SONATA IA X-Git-Tag: v3.1~19^2~5 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=2d3a45753d47a692e971da299c2139336bb27518 Fix: Made Glance API compatible to SONATA IA --- diff --git a/src/emuvim/api/openstack/openstack_dummies/glance_dummy_api.py b/src/emuvim/api/openstack/openstack_dummies/glance_dummy_api.py index 4b9b9c6..7819fb9 100755 --- a/src/emuvim/api/openstack/openstack_dummies/glance_dummy_api.py +++ b/src/emuvim/api/openstack/openstack_dummies/glance_dummy_api.py @@ -130,16 +130,24 @@ class GlanceListImagesApi(Resource): like the image was just created to make orchestrators, like OSM, happy. """ LOG.debug("API CALL: %s POST" % str(self.__class__.__name__)) + body_data = json.loads(request.data) # lets see what we should create img_name = request.headers.get("X-Image-Meta-Name") img_size = request.headers.get("X-Image-Meta-Size") img_disk_format = request.headers.get("X-Image-Meta-Disk-Format") img_is_public = request.headers.get("X-Image-Meta-Is-Public") img_container_format = request.headers.get("X-Image-Meta-Container-Format") + # try to use body payload if header fields are empty + if img_name is None: + img_name = body_data.get("name") + img_size = 1234 + img_disk_format = body_data.get("disk_format") + img_is_public = True if "public" in body_data.get("visibility") else False + img_container_format = body_data.get("container_format") # try to find ID of already existing image (matched by name) img_id=None for image in self.api.compute.images.values(): - if img_name in image.name: + if str(img_name) in image.name: img_id = image.id LOG.debug("Image name: %s" % img_name) LOG.debug("Image id: %s" % img_id)