Skip to content

Commit

Permalink
add tests to remove access of shared resource to federated user
Browse files Browse the repository at this point in the history
Signed-off-by: prashant-gurung899 <[email protected]>
  • Loading branch information
prashant-gurung899 committed Nov 27, 2024
1 parent e4778ec commit f9f042c
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions tests/acceptance/features/apiOcm/share.feature
Original file line number Diff line number Diff line change
Expand Up @@ -753,3 +753,45 @@ Feature: an user shares resources using ScienceMesh application
Then the HTTP status code should be "200"
And the downloaded image should be "32" pixels wide and "32" pixels high
And the downloaded preview content should match with "thumbnail.png" fixtures preview content

@issue-10213
Scenario: local user deletes access of shared resource to federated user
Given using spaces DAV path
And using server "LOCAL"
And user "Alice" has created a folder "FOLDER" in space "Personal"
And "Alice" has created the federation share invitation
And using server "REMOTE"
And "Brian" has accepted invitation
And using server "LOCAL"
And user "Alice" has sent the following resource share invitation to federated user:
| resource | FOLDER |
| space | Personal |
| sharee | Brian |
| shareType | user |
| permissionsRole | Editor |
When user "Alice" removes the access of user "Brian" from resource "FOLDER" of space "Personal" using the Graph API
Then the HTTP status code should be "204"
When using server "REMOTE"
And for user "Brian" the space "Shares" should not contain these entries:
| FOLDER |

@issue-10213
Scenario: federation user deletes access of shared resource to local user
Given using spaces DAV path
And using server "LOCAL"
And "Alice" has created the federation share invitation
And using server "REMOTE"
And "Brian" has accepted invitation
And user "Brian" has created a folder "FOLDER" in space "Personal"
And user "Brian" has sent the following resource share invitation to federated user:
| resource | FOLDER |
| space | Personal |
| sharee | Alice |
| shareType | user |
| permissionsRole | Editor |
And using server "REMOTE"
When user "Brian" removes the access of user "Alice" from resource "FOLDER" of space "Personal" using the Graph API
Then the HTTP status code should be "204"
When using server "LOCAL"
And for user "Alice" the space "Shares" should not contain these entries:
| FOLDER |

0 comments on commit f9f042c

Please sign in to comment.