Wait for the server before validate the rotation result
This commit is for test:
tempest.api.compute.servers.test_server_actions:\
ServerActionsTestJSON.test_create_backup
In most cases, the nova service sends the response of
the request that queries the backups before the rotation
function completes its work, and then 3 backups will be
and the test will fail.
This commit makes the use case wait for the server to
become active before sends the query request to ensure
rotation task has completed before the verification.
Closes-Bug: #1257614
Change-Id: Ic6443e3835fdb9d53f5ab643a04312c59ecb4c58
diff --git a/tempest/api/compute/servers/test_server_actions.py b/tempest/api/compute/servers/test_server_actions.py
index d985d2b..f195562 100644
--- a/tempest/api/compute/servers/test_server_actions.py
+++ b/tempest/api/compute/servers/test_server_actions.py
@@ -287,6 +287,7 @@
self.addCleanup(self.os.image_client.delete_image, image3_id)
self.assertEqual(202, resp.status)
# the first back up should be deleted
+ self.servers_client.wait_for_server_status(self.server_id, 'ACTIVE')
self.os.image_client.wait_for_resource_deletion(image1_id)
oldest_backup_exist = False
resp, image_list = self.os.image_client.image_list_detail(