How to use _rebuild_server_and_check method in tempest

Best Python code snippet using tempest_python

test_server_actions.py

Source:test_server_actions.py Github

copy

Full Screen

...108 @test.idempotent_id('4640e3ef-a5df-482e-95a1-ceeeb0faa84d')109 def test_reboot_server_soft(self):110 # The server should be signaled to reboot gracefully111 self._test_reboot_server('SOFT')112 def _rebuild_server_and_check(self, image_ref):113 rebuilt_server = (self.client.rebuild_server(self.server_id, image_ref)114 ['server'])115 waiters.wait_for_server_status(self.client, self.server_id, 'ACTIVE')116 msg = ('Server was not rebuilt to the original image. '117 'The original image: {0}. The current image: {1}'118 .format(image_ref, rebuilt_server['image']['id']))119 self.assertEqual(image_ref, rebuilt_server['image']['id'], msg)120 @test.idempotent_id('aaa6cdf3-55a7-461a-add9-1c8596b9a07c')121 def test_rebuild_server(self):122 # The server should be rebuilt using the provided image and data123 meta = {'rebuild': 'server'}124 new_name = data_utils.rand_name('server')125 password = 'rebuildPassw0rd'126 rebuilt_server = self.client.rebuild_server(...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tempest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful