How to use _test_backend_name_distinction method in tempest

Best Python code snippet using tempest_python

test_multi_backend.py

Source:test_multi_backend.py Github

copy

Full Screen

...74 self._test_backend_name_reporting_by_volume_id(volume_id)75 @decorators.idempotent_id('46435ab1-a0af-4401-8373-f14e66b0dd58')76 def test_backend_name_distinction(self):77 # get volume ids which created by type without prefix78 self._test_backend_name_distinction(self.volume_id_list_without_prefix)79 @decorators.idempotent_id('4236305b-b65a-4bfc-a9d2-69cb5b2bf2ed')80 def test_backend_name_distinction_with_prefix(self):81 # get volume ids which created by type without prefix82 self._test_backend_name_distinction(self.volume_id_list_with_prefix)83 def _get_volume_host(self, volume_id):84 return self.admin_volume_client.show_volume(85 volume_id)['volume']['os-vol-host-attr:host']86 def _test_backend_name_reporting_by_volume_id(self, volume_id):87 # this test checks if os-vol-attr:host is populated correctly after88 # the multi backend feature has been enabled89 # if multi-backend is enabled: os-vol-attr:host should be like:90 # host@backend_name91 volume = self.admin_volume_client.show_volume(volume_id)['volume']92 volume1_host = volume['os-vol-host-attr:host']93 msg = ("multi-backend reporting incorrect values for volume %s" %94 volume_id)95 self.assertGreater(len(volume1_host.split("@")), 1, msg)96 def _test_backend_name_distinction(self, volume_id_list):97 # this test checks that the volumes created at setUp don't98 # belong to the same backend (if they are, than the99 # volume backend distinction is not working properly)100 volume_hosts = [self._get_volume_host(volume) for volume in101 volume_id_list]102 # assert that volumes are each created on separate hosts:103 msg = ("volumes %s were created in the same backend" % ", "104 .join(volume_hosts))...

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