openstack-qa-team team mailing list archive
-
openstack-qa-team team
-
Mailing list archive
-
Message #00139
deleted flavor failure
I am still seeing the below error with the latest versions of
everything. Is this test passing for any of you? It seems to pass in
jenkins so I don't know what the problem could be. Also, that code says:
# Delete the flavor
resp, _ = self.admin_client.delete_flavor(self.new_flavor_id)
self.assertEqual(resp.status, 202)
??? # Deleted flavors can be seen via detailed GET
resp, flavor =
self.admin_client.get_flavor_details(self.new_flavor_id)
self.assertEqual(resp.status, 200)
self.assertEqual(flavor['name'], self.flavor_name)
# Deleted flavors should not show up in a list however
resp, flavors = self.admin_client.list_flavors_with_detail()
Is it really part of the spec that deleted flavors are never purged from
the system?
======================================================================
ERROR: Delete a flavor and ensure it is not listed
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\source\tempest\tempest\tests\compute\admin\test_flavors.py",
line 110, in test_get_flavor_details_for_deleted_flavor
resp, flavor = self.admin_client.get_flavor_details(self.new_flavor_id)
File
"C:\source\tempest\tempest\services\nova\json\flavors_client.py", line
39, in get_flavor_details
resp, body = self.get("flavors/%s" % str(flavor_id))
File "C:\source\tempest\tempest\common\rest_client.py", line 155, in get
return self.request('GET', url)
File "C:\source\tempest\tempest\common\rest_client.py", line 189, in
request
raise exceptions.NotFound(resp_body)
NotFound: Object not found
Details: Object not found
Details: {"itemNotFound": {"message": "The resource could not be
found.", "code": 404}}
-------------------- >> begin captured logging << --------------------
tempest.common.rest_client: ERROR: Request URL:
http://172.18.0.156:8774/v2/6b12f7a923c04f89bffb95bff997c3ef/flavors/1234
tempest.common.rest_client: ERROR: Request Body: None
tempest.common.rest_client: ERROR: Response Headers: {'date': 'Thu, 31
May 2012 19:57:42 GMT', 'status': '404', 'content-length': '78',
'content-type': 'application/json; charset=UTF-8',
'x-compute-request-id': 'req-b62a1f74-9919-4f8f-9d81-1006932894c9'}
tempest.common.rest_client: ERROR: Response Body: {"itemNotFound":
{"message": "The resource could not be found.", "code": 404}}
--------------------- >> end captured logging << ---------------------
Follow ups