How to use test_list_image_metadata method in tempest

Best Python code snippet using tempest_python

test_image_metadata.py

Source:test_image_metadata.py Github

copy

Full Screen

...43 meta = {'key1': 'value1', 'key2': 'value2'}44 resp, _ = self.client.set_image_metadata(self.image_id, meta)45 self.assertEqual(resp.status, 200)46 @test.attr(type='gate')47 def test_list_image_metadata(self):48 # All metadata key/value pairs for an image should be returned49 resp, resp_metadata = self.client.list_image_metadata(self.image_id)50 expected = {'key1': 'value1', 'key2': 'value2'}51 self.assertEqual(expected, resp_metadata)52 @test.attr(type='gate')53 def test_set_image_metadata(self):54 # The metadata for the image should match the new values55 req_metadata = {'meta2': 'value2', 'meta3': 'value3'}56 resp, body = self.client.set_image_metadata(self.image_id,57 req_metadata)58 resp, resp_metadata = self.client.list_image_metadata(self.image_id)59 self.assertEqual(req_metadata, resp_metadata)60 @test.attr(type='gate')61 def test_update_image_metadata(self):...

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