How to use test_list_container_metadata method in tempest

Best Python code snippet using tempest_python

test_container_services.py

Source:test_container_services.py Github

copy

Full Screen

...247 self.assertHeaders(resp, 'Container', 'GET')248 self.assertEqual(object_name, object_list.strip('\n'))249 @test.attr(type='smoke')250 @test.idempotent_id('96e68f0e-19ec-4aa2-86f3-adc6a45e14dd')251 def test_list_container_metadata(self):252 # List container metadata253 container_name = self._create_container()254 metadata = {'name': 'Pictures'}255 self.container_client.update_container_metadata(256 container_name,257 metadata=metadata)258 resp, _ = self.container_client.list_container_metadata(259 container_name)260 self.assertHeaders(resp, 'Container', 'HEAD')261 self.assertIn('x-container-meta-name', resp)262 self.assertEqual(resp['x-container-meta-name'], metadata['name'])263 @test.idempotent_id('a2faf936-6b13-4f8d-92a2-c2278355821e')264 def test_list_no_container_metadata(self):265 # HEAD container without metadata...

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