From 3495e899f5ef791b7776c8a647609c17432b95cd Mon Sep 17 00:00:00 2001 From: Prarup Gurung Date: Thu, 22 Dec 2022 14:05:15 +0545 Subject: [PATCH] Added extra check for group: --- .../webUISharingInternalUsers1/createShareWithUsers.feature | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/acceptance/features/webUISharingInternalUsers1/createShareWithUsers.feature b/tests/acceptance/features/webUISharingInternalUsers1/createShareWithUsers.feature index 645bf7cc3f1f..a71963bae197 100644 --- a/tests/acceptance/features/webUISharingInternalUsers1/createShareWithUsers.feature +++ b/tests/acceptance/features/webUISharingInternalUsers1/createShareWithUsers.feature @@ -425,12 +425,15 @@ Feature: Sharing files and folders with internal users | Alice | | Brian | | Carol | + | David | And group "Brian,Carol" has been created + And user "David" has been added to group "Brian,Carol" And user "Alice" has uploaded file "filesForUpload/lorem.txt" to "lorem.txt" And user "Alice" has logged in using the webUI When the user shares file "lorem.txt" with users "Brian,Carol" using the webUI Then as "Brian" file "lorem.txt" should exist And as "Carol" file "lorem.txt" should exist + And as "David" file "lorem.txt" should not exist Scenario: user shares folder with multiple users having exact same group name @@ -439,9 +442,12 @@ Feature: Sharing files and folders with internal users | Alice | | Brian | | Carol | + | David | And group "Brian,Carol" has been created + And user "David" has been added to group "Brian,Carol" And user "Alice" has created folder "simple-folder" And user "Alice" has logged in using the webUI When the user shares folder "simple-folder" with users "Brian,Carol" using the webUI Then as "Brian" folder "simple-folder" should exist And as "Carol" folder "simple-folder" should exist + And as "David" folder "simple-folder" should not exist