How to use _test_in_tenant_block method in tempest

Best Python code snippet using tempest_python

test_security_groups_basic_ops.py

Source:test_security_groups_basic_ops.py Github

copy

Full Screen

...305 raise306 except Exception:307 debug.log_net_debug()308 raise309 def _test_in_tenant_block(self, tenant):310 access_point_ssh = self._connect_to_access_point(tenant)311 for server in tenant.servers:312 self._check_connectivity(access_point=access_point_ssh,313 ip=self._get_server_ip(server),314 should_succeed=False)315 def _test_in_tenant_allow(self, tenant):316 ruleset = dict(317 protocol='icmp',318 remote_group_id=tenant.security_groups['default'].id,319 direction='ingress'320 )321 self._create_security_group_rule(322 secgroup=tenant.security_groups['default'],323 **ruleset324 )325 access_point_ssh = self._connect_to_access_point(tenant)326 for server in tenant.servers:327 self._check_connectivity(access_point=access_point_ssh,328 ip=self._get_server_ip(server))329 def _test_cross_tenant_block(self, source_tenant, dest_tenant):330 """331 if public router isn't defined, then dest_tenant access is via332 floating-ip333 """334 access_point_ssh = self._connect_to_access_point(source_tenant)335 ip = self._get_server_ip(dest_tenant.access_point,336 floating=self.floating_ip_access)337 self._check_connectivity(access_point=access_point_ssh, ip=ip,338 should_succeed=False)339 def _test_cross_tenant_allow(self, source_tenant, dest_tenant):340 """341 check for each direction:342 creating rule for tenant incoming traffic enables only 1way traffic343 """344 ruleset = dict(345 protocol='icmp',346 direction='ingress'347 )348 self._create_security_group_rule(349 secgroup=dest_tenant.security_groups['default'],350 client=dest_tenant.manager.network_client,351 **ruleset352 )353 access_point_ssh = self._connect_to_access_point(source_tenant)354 ip = self._get_server_ip(dest_tenant.access_point,355 floating=self.floating_ip_access)356 self._check_connectivity(access_point_ssh, ip)357 # test that reverse traffic is still blocked358 self._test_cross_tenant_block(dest_tenant, source_tenant)359 # allow reverse traffic and check360 self._create_security_group_rule(361 secgroup=source_tenant.security_groups['default'],362 client=source_tenant.manager.network_client,363 **ruleset364 )365 access_point_ssh_2 = self._connect_to_access_point(dest_tenant)366 ip = self._get_server_ip(source_tenant.access_point,367 floating=self.floating_ip_access)368 self._check_connectivity(access_point_ssh_2, ip)369 def _verify_mac_addr(self, tenant):370 """371 verify that VM (tenant's access point) has the same ip,mac as listed in372 port list373 """374 access_point_ssh = self._connect_to_access_point(tenant)375 mac_addr = access_point_ssh.get_mac_address()376 mac_addr = mac_addr.strip().lower()377 # Get the fixed_ips and mac_address fields of all ports. Select378 # only those two columns to reduce the size of the response.379 port_list = self._list_ports(fields=['fixed_ips', 'mac_address'])380 port_detail_list = [381 (port['fixed_ips'][0]['subnet_id'],382 port['fixed_ips'][0]['ip_address'],383 port['mac_address'].lower())384 for port in port_list if port['fixed_ips']385 ]386 server_ip = self._get_server_ip(tenant.access_point)387 subnet_id = tenant.subnet.id388 self.assertIn((subnet_id, server_ip, mac_addr), port_detail_list)389 @test.attr(type='smoke')390 @test.services('compute', 'network')391 def test_cross_tenant_traffic(self):392 try:393 # deploy new tenant394 self._deploy_tenant(self.alt_tenant)395 self._verify_network_details(self.alt_tenant)396 self._verify_mac_addr(self.alt_tenant)397 # cross tenant check398 source_tenant = self.primary_tenant399 dest_tenant = self.alt_tenant400 self._test_cross_tenant_block(source_tenant, dest_tenant)401 self._test_cross_tenant_allow(source_tenant, dest_tenant)402 except Exception:403 for tenant in self.tenants.values():404 self._log_console_output(servers=tenant.servers)405 raise406 @test.attr(type='smoke')407 @test.services('compute', 'network')408 def test_in_tenant_traffic(self):409 try:410 self._create_tenant_servers(self.primary_tenant, num=1)411 # in-tenant check412 self._test_in_tenant_block(self.primary_tenant)413 self._test_in_tenant_allow(self.primary_tenant)414 except Exception:415 for tenant in self.tenants.values():416 self._log_console_output(servers=tenant.servers)...

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