-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: sync cypress test from notifications-dashboards (opensearch-pro…
…ject#776) * feat: sync cypress test from notifications-dashboards Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: rename commands Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: update Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: add larger wait time Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: update Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: update Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: update Signed-off-by: SuZhou-Joe <suzhou@amazon.com> * feat: add refresh before delete all notifications configs Signed-off-by: SuZhou-Joe <suzhou@amazon.com> --------- Signed-off-by: SuZhou-Joe <suzhou@amazon.com>
- Loading branch information
1 parent
356fd53
commit 81f70c3
Showing
14 changed files
with
261 additions
and
15 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
cypress/fixtures/plugins/notifications-dashboards/test_chime_channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"config": { | ||
"name": "Test chime channel", | ||
"description": "A test chime channel", | ||
"config_type": "chime", | ||
"is_enabled": true, | ||
"chime": { | ||
"url": "https://sample-chime-webhook" | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
cypress/fixtures/plugins/notifications-dashboards/test_email_recipient_group.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"config": { | ||
"name": "Test recipient group", | ||
"description": "A test email recipient group", | ||
"config_type": "email_group", | ||
"is_enabled": true, | ||
"email_group": { | ||
"recipient_list": [ | ||
{ | ||
"recipient": "custom.email.1@test.com" | ||
}, | ||
{ | ||
"recipient": "custom.email.2@test.com" | ||
}, | ||
{ | ||
"recipient": "custom.email.3@test.com" | ||
}, | ||
{ | ||
"recipient": "custom.email.4@test.com" | ||
}, | ||
{ | ||
"recipient": "custom.email.5@test.com" | ||
}, | ||
{ | ||
"recipient": "custom.email.6@test.com" | ||
} | ||
] | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
cypress/fixtures/plugins/notifications-dashboards/test_ses_sender.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"config": { | ||
"name": "test-ses-sender", | ||
"description": "A test SES sender", | ||
"config_type": "ses_account", | ||
"is_enabled": true, | ||
"ses_account": { | ||
"region": "us-east-1", | ||
"role_arn": "arn:aws:iam::012345678912:role/NotificationsSESRole", | ||
"from_address": "test@email.com" | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
cypress/fixtures/plugins/notifications-dashboards/test_slack_channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"config": { | ||
"name": "Test slack channel", | ||
"description": "A test slack channel", | ||
"config_type": "slack", | ||
"is_enabled": true, | ||
"slack": { | ||
"url": "https://sample-slack-webhook" | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
cypress/fixtures/plugins/notifications-dashboards/test_smtp_email_channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"config": { | ||
"name": "Test email channel", | ||
"description": "A test SMTP email channel", | ||
"config_type": "email", | ||
"is_enabled": true, | ||
"email": { | ||
"email_account_id": "test_smtp_sender_id", | ||
"recipient_list": [ | ||
{ | ||
"recipient": "custom.email@test.com" | ||
} | ||
], | ||
"email_group_id_list": [] | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
cypress/fixtures/plugins/notifications-dashboards/test_sns_channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"config": { | ||
"name": "test-sns-channel", | ||
"description": "A test SNS channel", | ||
"config_type": "sns", | ||
"is_enabled": true, | ||
"sns": { | ||
"topic_arn": "arn:aws:sns:us-west-2:123456789012:notifications-test", | ||
"role_arn": "arn:aws:iam::012345678901:role/NotificationsSNSRole" | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
cypress/fixtures/plugins/notifications-dashboards/test_ssl_smtp_sender.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"config": { | ||
"name": "test-ssl-sender", | ||
"description": "A test SSL SMTP sender", | ||
"config_type": "smtp_account", | ||
"is_enabled": true, | ||
"smtp_account": { | ||
"host": "test-host.com", | ||
"port": 123, | ||
"method": "ssl", | ||
"from_address": "test@email.com" | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
cypress/fixtures/plugins/notifications-dashboards/test_tls_smtp_sender.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"config_id": "test_smtp_sender_id", | ||
"config": { | ||
"name": "test-tls-sender", | ||
"description": "A test TLS SMTP sender", | ||
"config_type": "smtp_account", | ||
"is_enabled": true, | ||
"smtp_account": { | ||
"host": "test-host.com", | ||
"port": 123, | ||
"method": "start_tls", | ||
"from_address": "test@email.com" | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
cypress/fixtures/plugins/notifications-dashboards/test_webhook_channel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"config": { | ||
"name": "Test webhook channel", | ||
"description": "A test webhook channel", | ||
"config_type": "webhook", | ||
"is_enabled": true, | ||
"webhook": { | ||
"url": "https://custom-webhook-test-url.com:8888/test-path?params1=value1¶ms2=value2¶ms3=value3¶ms4=value4¶ms5=values5¶ms6=values6¶ms7=values7" | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.