Best Python code snippet using tempest_python
test_floating_ips_actions.py
Source:test_floating_ips_actions.py
...92 def test_associate_disassociate_floating_ip(self):93 # Positive test:Associate and disassociate the provided floating IP94 # to a specific server should be successful95 # Association of floating IP to fixed IP address96 resp, body = self.client.associate_floating_ip_to_server(97 self.floating_ip,98 self.server_id)99 self.assertEqual(202, resp.status)100 # Disassociation of floating IP that was associated in this method101 resp, body = self.client.disassociate_floating_ip_from_server(102 self.floating_ip,103 self.server_id)104 self.assertEqual(202, resp.status)105 @attr(type=['negative', 'gate'])106 def test_delete_nonexistant_floating_ip(self):107 # Negative test:Deletion of a nonexistent floating IP108 # from project should fail109 # Deleting the non existent floating IP110 self.assertRaises(exceptions.NotFound, self.client.delete_floating_ip,111 self.non_exist_id)112 @attr(type=['negative', 'gate'])113 def test_associate_nonexistant_floating_ip(self):114 # Negative test:Association of a non existent floating IP115 # to specific server should fail116 # Associating non existent floating IP117 self.assertRaises(exceptions.NotFound,118 self.client.associate_floating_ip_to_server,119 "0.0.0.0", self.server_id)120 @attr(type=['negative', 'gate'])121 def test_dissociate_nonexistant_floating_ip(self):122 # Negative test:Dissociation of a non existent floating IP should fail123 # Dissociating non existent floating IP124 self.assertRaises(exceptions.NotFound,125 self.client.disassociate_floating_ip_from_server,126 "0.0.0.0", self.server_id)127 @attr(type='gate')128 def test_associate_already_associated_floating_ip(self):129 # positive test:Association of an already associated floating IP130 # to specific server should change the association of the Floating IP131 # Create server so as to use for Multiple association132 resp, body = self.servers_client.create_server('floating-server2',133 self.image_ref,134 self.flavor_ref)135 self.servers_client.wait_for_server_status(body['id'], 'ACTIVE')136 self.new_server_id = body['id']137 # Associating floating IP for the first time138 resp, _ = self.client.associate_floating_ip_to_server(139 self.floating_ip,140 self.server_id)141 # Associating floating IP for the second time142 resp, body = self.client.associate_floating_ip_to_server(143 self.floating_ip,144 self.new_server_id)145 self.addCleanup(self.servers_client.delete_server, self.new_server_id)146 if (resp['status'] is not None):147 self.addCleanup(self.client.disassociate_floating_ip_from_server,148 self.floating_ip,149 self.new_server_id)150 # Make sure no longer associated with old server151 self.assertRaises((exceptions.NotFound,152 exceptions.UnprocessableEntity),153 self.client.disassociate_floating_ip_from_server,154 self.floating_ip, self.server_id)155 @attr(type=['negative', 'gate'])156 def test_associate_ip_to_server_without_passing_floating_ip(self):...
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!!