Best Python code snippet using tempest_python
test_server_misc_policy_actions_rbac.py
Source:test_server_misc_policy_actions_rbac.py  
...65    @rbac_rule_validation.action(66        service="nova",67        rule="os_compute_api:os-admin-actions:inject_network_info")68    @decorators.idempotent_id('ce48c340-51c1-4cff-9b6e-0cc5ef008630')69    def test_inject_network_info(self):70        """Test inject network info, part of os-admin-actions."""71        self.rbac_utils.switch_role(self, toggle_rbac_role=True)72        self.servers_client.inject_network_info(self.server_id)73    @test.attr(type=['slow'])74    @test.requires_ext(extension='os-admin-actions', service='compute')75    @rbac_rule_validation.action(76        service="nova",77        rule="os_compute_api:os-admin-actions:reset_network")78    @decorators.idempotent_id('2911a242-15c4-4fcb-80d5-80a8930661b0')79    def test_reset_network(self):80        """Test reset network, part of os-admin-actions."""81        self.rbac_utils.switch_role(self, toggle_rbac_role=True)82        self.servers_client.reset_network(self.server_id)83    @testtools.skipUnless(CONF.compute_feature_enabled.change_password,...test_rpcapi.py
Source:test_rpcapi.py  
...99                host='host')100    def test_inject_file(self):101        self._test_compute_api('inject_file', 'cast',102                instance=self.fake_instance, path='path', file_contents='fc')103    def test_inject_network_info(self):104        self._test_compute_api('inject_network_info', 'cast',105                instance=self.fake_instance)106    def test_lock_instance(self):107        self._test_compute_api('lock_instance', 'cast',108                instance=self.fake_instance)109    def test_pause_instance(self):110        self._test_compute_api('pause_instance', 'cast',111                instance=self.fake_instance)112    def test_power_off_instance(self):113        self._test_compute_api('power_off_instance', 'cast',114                instance=self.fake_instance)115    def test_power_on_instance(self):116        self._test_compute_api('power_on_instance', 'cast',117                instance=self.fake_instance)...test_admin_server_actions_rbac.py
Source:test_admin_server_actions_rbac.py  
...42    @rbac_rule_validation.action(43        service="nova",44        rule="os_compute_api:os-admin-actions:inject_network_info")45    @decorators.idempotent_id('ce48c340-51c1-4cff-9b6e-0cc5ef008630')46    def test_inject_network_info(self):47        self.rbac_utils.switch_role(self, toggle_rbac_role=True)48        self.servers_client.inject_network_info(self.server_id)49    @rbac_rule_validation.action(50        service="nova",51        rule="os_compute_api:os-admin-actions:reset_network")52    @decorators.idempotent_id('2911a242-15c4-4fcb-80d5-80a8930661b0')53    def test_reset_network(self):54        self.rbac_utils.switch_role(self, toggle_rbac_role=True)...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!!
