How to use _get_partial_class method in tempest

Best Python code snippet using tempest_python

test_clients.py

Source:test_clients.py Github

copy

Full Screen

...117 params = {'k1': 'v1', 'k2': 'v2'}118 factory = clients.ClientsFactory(119 'fake_path', [], auth_provider, **params)120 klass_mock = mock.Mock(return_value=expected_fake_client)121 partial = factory._get_partial_class(klass_mock, auth_provider, params)122 # Class has not be initialised yet123 klass_mock.assert_not_called()124 # Use partial and assert on parameters125 client = partial()126 self.assertEqual(expected_fake_client, client)127 klass_mock.assert_called_once_with(auth_provider=auth_provider,128 **params)129 def test__get_partial_class_later_kwargs(self):130 expected_fake_client = 'not_really_a_client'131 self._setup_fake_module(class_names=[])132 auth_provider = fake_auth_provider.FakeAuthProvider()133 params = {'k1': 'v1', 'k2': 'v2'}134 later_params = {'k2': 'v4', 'k3': 'v3'}135 factory = clients.ClientsFactory(136 'fake_path', [], auth_provider, **params)137 klass_mock = mock.Mock(return_value=expected_fake_client)138 partial = factory._get_partial_class(klass_mock, auth_provider, params)139 # Class has not be initialised yet140 klass_mock.assert_not_called()141 # Use partial and assert on parameters142 client = partial(**later_params)143 params.update(later_params)144 self.assertEqual(expected_fake_client, client)145 klass_mock.assert_called_once_with(auth_provider=auth_provider,146 **params)147 def test__get_partial_class_with_alias(self):148 expected_fake_client = 'not_really_a_client'149 client_alias = 'fake_client'150 self._setup_fake_module(class_names=[])151 auth_provider = fake_auth_provider.FakeAuthProvider()152 params = {'k1': 'v1', 'k2': 'v2'}153 later_params = {'k2': 'v4', 'k3': 'v3'}154 factory = clients.ClientsFactory(155 'fake_path', [], auth_provider, **params)156 klass_mock = mock.Mock(return_value=expected_fake_client)157 partial = factory._get_partial_class(klass_mock, auth_provider, params)158 # Class has not be initialised yet159 klass_mock.assert_not_called()160 # Use partial and assert on parameters161 client = partial(alias=client_alias, **later_params)162 params.update(later_params)163 self.assertEqual(expected_fake_client, client)164 klass_mock.assert_called_once_with(auth_provider=auth_provider,165 **params)166 self.assertThat(factory, has_attribute(client_alias))167 self.assertEqual(expected_fake_client, getattr(factory, client_alias))168class TestServiceClients(base.TestCase):169 def setUp(self):170 super(TestServiceClients, self).setUp()171 self.useFixture(fixtures.MockPatch(...

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