Fix tests for bug 1656183
Changes expected success code for the delete-namespace-tags
function in the NamespaceTagsClient class, which is modified
in Glance by I4b6dc1714aeca409a85bfa1f9b729147da704df8
This function is called by MetadataNamespaceTagsTest, both by a
delete-namespace-tags test and as part of resource cleanup.
Change accepts either the 200 (incorrect) or 204 (correct)
success code, allowing tempest containing this change to be
used against older versions of Glance.
Change-Id: I84626976ca729f65b0ee0ea6afe5c9a6a408eecc
diff --git a/tempest/lib/services/image/v2/namespace_tags_client.py b/tempest/lib/services/image/v2/namespace_tags_client.py
index ac8b569..a7f8c39 100644
--- a/tempest/lib/services/image/v2/namespace_tags_client.py
+++ b/tempest/lib/services/image/v2/namespace_tags_client.py
@@ -115,5 +115,11 @@
"""
url = 'metadefs/namespaces/%s/tags' % namespace
resp, _ = self.delete(url)
- self.expected_success(200, resp.status)
+
+ # NOTE(rosmaita): Bug 1656183 fixed the success response code for
+ # this call to make it consistent with the other metadefs delete
+ # calls. Accept both codes in case tempest is being run against
+ # an old Glance.
+ self.expected_success([200, 204], resp.status)
+
return rest_client.ResponseBody(resp)