black linting
This commit is contained in:
parent
fd9ac4b9a5
commit
743dd46399
36 changed files with 383 additions and 154 deletions
|
|
@ -347,7 +347,11 @@ def test_create_target_group_and_listeners():
|
|||
Protocol="HTTPS",
|
||||
Port=443,
|
||||
Certificates=[
|
||||
{"CertificateArn": "arn:aws:iam:{}:server-certificate/test-cert".format(ACCOUNT_ID)}
|
||||
{
|
||||
"CertificateArn": "arn:aws:iam:{}:server-certificate/test-cert".format(
|
||||
ACCOUNT_ID
|
||||
)
|
||||
}
|
||||
],
|
||||
DefaultActions=[
|
||||
{"Type": "forward", "TargetGroupArn": target_group.get("TargetGroupArn")}
|
||||
|
|
@ -357,7 +361,13 @@ def test_create_target_group_and_listeners():
|
|||
listener.get("Port").should.equal(443)
|
||||
listener.get("Protocol").should.equal("HTTPS")
|
||||
listener.get("Certificates").should.equal(
|
||||
[{"CertificateArn": "arn:aws:iam:{}:server-certificate/test-cert".format(ACCOUNT_ID)}]
|
||||
[
|
||||
{
|
||||
"CertificateArn": "arn:aws:iam:{}:server-certificate/test-cert".format(
|
||||
ACCOUNT_ID
|
||||
)
|
||||
}
|
||||
]
|
||||
)
|
||||
listener.get("DefaultActions").should.equal(
|
||||
[{"TargetGroupArn": target_group.get("TargetGroupArn"), "Type": "forward"}]
|
||||
|
|
@ -1903,7 +1913,9 @@ def test_cognito_action_listener_rule():
|
|||
action = {
|
||||
"Type": "authenticate-cognito",
|
||||
"AuthenticateCognitoConfig": {
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(ACCOUNT_ID),
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(
|
||||
ACCOUNT_ID
|
||||
),
|
||||
"UserPoolClientId": "abcd1234abcd",
|
||||
"UserPoolDomain": "testpool",
|
||||
},
|
||||
|
|
@ -1978,7 +1990,9 @@ def test_cognito_action_listener_rule_cloudformation():
|
|||
{
|
||||
"Type": "authenticate-cognito",
|
||||
"AuthenticateCognitoConfig": {
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(ACCOUNT_ID),
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(
|
||||
ACCOUNT_ID
|
||||
),
|
||||
"UserPoolClientId": "abcd1234abcd",
|
||||
"UserPoolDomain": "testpool",
|
||||
},
|
||||
|
|
@ -2007,7 +2021,9 @@ def test_cognito_action_listener_rule_cloudformation():
|
|||
{
|
||||
"Type": "authenticate-cognito",
|
||||
"AuthenticateCognitoConfig": {
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(ACCOUNT_ID),
|
||||
"UserPoolArn": "arn:aws:cognito-idp:us-east-1:{}:userpool/us-east-1_ABCD1234".format(
|
||||
ACCOUNT_ID
|
||||
),
|
||||
"UserPoolClientId": "abcd1234abcd",
|
||||
"UserPoolDomain": "testpool",
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue