From bee7f0c311ef8459d17f09cb028ab5fa1d74046e Mon Sep 17 00:00:00 2001 From: nirajacharya2 Date: Tue, 27 Jun 2023 12:43:52 +0545 Subject: [PATCH] added test for mail notification to group members if a space is shared with them --- .../apiNotification/emailNotification.feature | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tests/acceptance/features/apiNotification/emailNotification.feature b/tests/acceptance/features/apiNotification/emailNotification.feature index 9a551709c..98e097107 100644 --- a/tests/acceptance/features/apiNotification/emailNotification.feature +++ b/tests/acceptance/features/apiNotification/emailNotification.feature @@ -40,3 +40,33 @@ Feature: Email notification Click here to view it: %base_url%/files/shares/with-me """ + + + Scenario: group members get an email notification when someone shares a project space with the group + Given the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API + And user "Carol" has been created with default attributes and without skeleton files + And group "group1" has been created + And user "Brian" has been added to group "group1" + And user "Carol" has been added to group "group1" + And user "Alice" has created a space "new-space" with the default quota using the GraphApi + When user "Alice" shares a space "new-space" with settings: + | shareWith | group1 | + | shareType | 8 | + | role | viewer | + Then the HTTP status code should be "200" + And user "Brian" should have received the following email from user "Alice" about the share of project space "new-space" + """ + Hello Brian Murphy, + + %displayname% has invited you to join "new-space". + + Click here to view it: %base_url%/f/%space_id% + """ + And user "Carol" should have received the following email from user "Alice" about the share of project space "new-space" + """ + Hello Carol King, + + %displayname% has invited you to join "new-space". + + Click here to view it: %base_url%/f/%space_id% + """