How to use test_extend_attached_volume method in tempest

Best Python code snippet using tempest_python

test_volumes_extend.py

Source:test_volumes_extend.py Github

copy

Full Screen

...82 @decorators.idempotent_id('301f5a30-1c6f-4ea0-be1a-91fd28d44354')83 @testtools.skipUnless(CONF.volume_feature_enabled.extend_attached_volume,84 "Attached volume extend is disabled.")85 @utils.services('compute')86 def test_extend_attached_volume(self):87 """This is a happy path test which does the following:88 * Create a volume at the configured volume_size.89 * Create a server instance.90 * Attach the volume to the server.91 * Wait for the volume status to be "in-use".92 * Extend the size of the volume and wait for the volume status to go93 back to "in-use".94 * Assert the volume size change is reflected in the volume API.95 * Wait for the "compute_extend_volume" instance action event to show96 up in the compute API with the success or failure status. We fail97 if we timeout waiting for the instance action event to show up, or98 if the action on the server fails.99 """100 # Create a test volume. Will be automatically cleaned up on teardown....

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