From 6753d017c76205b37681de1f8aff6650ac160452 Mon Sep 17 00:00:00 2001 From: prashant-gurung899 Date: Tue, 10 Dec 2024 10:40:29 +0545 Subject: [PATCH] add test to list drives by federation user Signed-off-by: prashant-gurung899 --- tests/acceptance/features/apiOcm/share.feature | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/acceptance/features/apiOcm/share.feature b/tests/acceptance/features/apiOcm/share.feature index 9fd1e0db627..7b2dc02c6c0 100755 --- a/tests/acceptance/features/apiOcm/share.feature +++ b/tests/acceptance/features/apiOcm/share.feature @@ -1229,3 +1229,21 @@ Feature: an user shares resources using ScienceMesh application } } """ + + @issue-10689 + Scenario: federation user lists all the spaces + Given using server "REMOTE" + And "Brian" has created the federation share invitation + And using server "LOCAL" + And "Alice" has accepted invitation + And user "Alice" has created folder "folderToShare" + And user "Alice" has sent the following resource share invitation to federated user: + | resource | folderToShare | + | space | Personal | + | sharee | Brian | + | shareType | user | + | permissionsRole | Editor | + And using server "REMOTE" + When user "Brian" lists all available spaces via the Graph API + Then the HTTP status code should be "200" + And the json responded should not contain a space with name "folderToShare"