Best Python code snippet using tempest_python
test_network_basic_ops.py
Source:test_network_basic_ops.py
...503 @testtools.skipUnless(CONF.network_feature_enabled.port_admin_state_change,504 "Changing a port's admin state is not supported "505 "by the test environment")506 @test.services('compute', 'network')507 def test_update_instance_port_admin_state(self):508 """509 1. Check public connectivity before updating510 admin_state_up attribute of instance port to False511 2. Check public connectivity after updating512 admin_state_up attribute of instance port to False513 3. Check public connectivity after updating514 admin_state_up attribute of instance port to True515 """516 self._setup_network_and_servers()517 floating_ip, server = self.floating_ip_tuple518 server_id = server['id']519 port_id = self._list_ports(device_id=server_id)[0]['id']520 self.check_public_network_connectivity(521 should_connect=True, msg="before updating "...
test_network_basic_ops_esx.py
Source:test_network_basic_ops_esx.py
...206 del_status = self.verify_portgroup_after_vm_delete(self.network['id'])207 self.assertFalse(del_status)208 del_status2 = self.verify_portgroup_after_vm_delete(network2['id'])209 self.assertFalse(del_status2)210 def test_update_instance_port_admin_state(self):211 """Perform a port update on the VM located on ESX hypervisor.212 1. Check public connectivity before updating213 admin_state_up attribute of instance port to False214 2. Check public connectivity after updating215 admin_state_up attribute of instance port to False216 3. Check public connectivity after updating217 admin_state_up attribute of instance port to True218 """219 net_id = self.network['id']220 name = data_utils.rand_name('server-smoke')221 group_create_body = self._create_custom_security_group()222 serverid = self._create_server_with_sec_group(223 name, net_id, group_create_body['security_group']['id'])224 self.assertTrue(self.verify_portgroup(self.network['id'], serverid))...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!