Best Python code snippet using tempest_python
test_oauth_token_client.py
Source:test_oauth_token_client.py  
...156            self.FAKE_ACCESS_TOKEN_INFO,157            user_id='ce9e07',158            access_token_id=self.FAKE_ACCESS_TOKEN_INFO['access_token']['id'],159            status=200)160    def test_list_access_tokens(self):161        self.check_service_client_function(162            self.client.list_access_tokens,163            'tempest.lib.common.rest_client.RestClient.get',164            self.FAKE_LIST_ACCESS_TOKENS,165            user_id='ce9e07',166            status=200)167    def test_revoke_access_token(self):168        self.check_service_client_function(169            self.client.revoke_access_token,170            'tempest.lib.common.rest_client.RestClient.delete',171            {},172            user_id=self.FAKE_ACCESS_TOKEN_INFO['access_token']['consumer_id'],173            access_token_id=self.FAKE_ACCESS_TOKEN_INFO['access_token']['id'],174            status=204)...test_oauth_tokens_rbac.py
Source:test_oauth_tokens_rbac.py  
...90                self.user_id, access_token, self.role_ids[0])91    @rbac_rule_validation.action(service="keystone",92                                 rules=["identity:list_access_tokens"])93    @decorators.idempotent_id('0f148510-63bf-11e6-4522-080044d0d979')94    def test_list_access_tokens(self):95        with self.override_role():96            self.oauth_token_client.list_access_tokens(self.user_id)97    @rbac_rule_validation.action(service="keystone",98                                 rules=["identity:list_access_token_roles"])99    @decorators.idempotent_id('0f148510-63bf-11e6-4522-080044d0d978')100    def test_list_access_token_roles(self):101        access_token = self._create_access_token()102        with self.override_role():103            self.oauth_token_client.list_access_token_roles(104                self.user_id, access_token)105    @rbac_rule_validation.action(service="keystone",106                                 rules=["identity:delete_access_token"])107    @decorators.idempotent_id('0f148510-63bf-11e6-4522-080044d0d981')108    def test_revoke_access_token(self):...auth_test.py
Source:auth_test.py  
...57        self.api.delete(f'/oauth/token/{token}', token=token).expect(code=200)58        59        # Missing token in subsequent delete.60        self.api.delete(f'/oauth/token/{token}', token=token).expect(code=401)61    def test_list_access_tokens(self):62        self.api.create_member(unhashed_password=DEFAULT_PASSWORD)63        username = self.api.member['email']64        token = self.api\65            .post("/oauth/token", data=dict(grant_type='password', username=username, password=DEFAULT_PASSWORD))\66            .expect(code=200).get('access_token')67        68        tokens = self.api.get('/oauth/token', token=token).expect(code=200).data69        ...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!!
