How to use test_update_router_unset_gateway method in tempest

Best Python code snippet using tempest_python

test_routers.py

Source:test_routers.py Github

copy

Full Screen

...163 self._verify_gateway_port(router['id'])164 @decorators.idempotent_id('ad81b7ee-4f81-407b-a19c-17e623f763e8')165 @testtools.skipUnless(CONF.network.public_network_id,166 'The public_network_id option must be specified.')167 def test_update_router_unset_gateway(self):168 router = self._create_router(169 external_network_id=CONF.network.public_network_id)170 self.routers_client.update_router(router['id'],171 external_gateway_info={})172 self._verify_router_gateway(router['id'])173 # No gateway port expected174 list_body = self.admin_ports_client.list_ports(175 network_id=CONF.network.public_network_id,176 device_id=router['id'])177 self.assertFalse(list_body['ports'])178 @decorators.idempotent_id('f2faf994-97f4-410b-a831-9bc977b64374')179 @utils.requires_ext(extension='ext-gw-mode', service='network')180 @testtools.skipUnless(CONF.network.public_network_id,181 'The public_network_id option must be specified.')...

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