How to use _test_interface_operation method in tempest

Best Python code snippet using tempest_python

test_interfaces_client.py

Source:test_interfaces_client.py Github

copy

Full Screen

...40 fake_auth = fake_auth_provider.FakeAuthProvider()41 self.client = interfaces_client.InterfacesClient(fake_auth,42 "compute",43 "regionOne")44 def _test_interface_operation(self, operation="create", bytes_body=False):45 response_code = 20046 expected_op = self.FAKE_SHOW_DATA47 mock_operation = self.func2mock['get']48 params = {'server_id': self.FAKE_SERVER_ID,49 'port_id': self.FAKE_PORT_ID}50 if operation == 'list':51 expected_op = self.FAKE_LIST_DATA52 function = self.client.list_interfaces53 params = {'server_id': self.FAKE_SERVER_ID}54 elif operation == 'show':55 function = self.client.show_interface56 elif operation == 'delete':57 expected_op = {}58 mock_operation = self.func2mock['delete']59 function = self.client.delete_interface60 response_code = 20261 else:62 function = self.client.create_interface63 mock_operation = self.func2mock['post']64 self.check_service_client_function(65 function, mock_operation, expected_op,66 bytes_body, response_code, **params)67 def test_list_interfaces_with_str_body(self):68 self._test_interface_operation('list')69 def test_list_interfaces_with_bytes_body(self):70 self._test_interface_operation('list', True)71 def test_show_interface_with_str_body(self):72 self._test_interface_operation('show')73 def test_show_interface_with_bytes_body(self):74 self._test_interface_operation('show', True)75 def test_delete_interface_with_str_body(self):76 self._test_interface_operation('delete')77 def test_delete_interface_with_bytes_body(self):78 self._test_interface_operation('delete', True)79 def test_create_interface_with_str_body(self):80 self._test_interface_operation()81 def test_create_interface_with_bytes_body(self):...

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