Best Python code snippet using localstack_python
fixtures.py
Source:fixtures.py
...938 iam_client.delete_user(UserName=username)939 except Exception:940 LOG.debug("Error deleting user '%s' during test cleanup", username)941@pytest.fixture942def wait_and_assume_role(sts_client):943 def _wait_and_assume_role(role_arn: str, session_name: str = None):944 if not session_name:945 session_name = f"session-{short_uid()}"946 def assume_role():947 return sts_client.assume_role(RoleArn=role_arn, RoleSessionName=session_name)[948 "Credentials"949 ]950 # need to retry a couple of times before we are allowed to assume this role in AWS951 keys = retry(assume_role, sleep=5, retries=4)952 return keys953 return _wait_and_assume_role954@pytest.fixture955def create_role(iam_client):956 role_names = []957 def _create_role(**kwargs):...
test_iam.py
Source:test_iam.py
...67 )["Role"]["Arn"]68 iam_client.put_role_policy(69 RoleName=role_name, PolicyName=policy_name, PolicyDocument=GET_USER_POLICY_DOC70 )71 keys = wait_and_assume_role(role_arn=created_role_arn, session_name=session_name)72 iam_client_as_role = create_client_with_keys("iam", keys=keys)73 with pytest.raises(ClientError) as e:74 iam_client_as_role.get_user()75 e.match("Must specify userName when calling with non-User credentials")76 def test_create_user_with_permission_boundary(self, iam_client, create_user, create_policy):77 user_name = f"user-{short_uid()}"78 policy_name = f"policy-{short_uid()}"79 policy_arn = create_policy(PolicyName=policy_name, PolicyDocument=GET_USER_POLICY_DOC)[80 "Policy"81 ]["Arn"]82 create_user_reply = create_user(UserName=user_name, PermissionsBoundary=policy_arn)83 assert "PermissionsBoundary" in create_user_reply["User"]84 assert {85 "PermissionsBoundaryArn": policy_arn,...
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!!