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 29, 2024
1 parent b87118b commit 7135198
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
12 changes: 9 additions & 3 deletions tests/acceptance/bootstrap/SharingNgContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -1808,16 +1808,22 @@ public function checkIfShareExists(string $share, string $sharee, string $sharer
}

/**
* @Then user :sharee should have a share :share shared by user :sharer
* @Then /^user "([^"]*)" should (not |)have a share "([^"]*)" shared by user "([^"]*)"$/
*
* @param string $sharee
* @param string $shouldOrNot
* @param string $share
* @param string $sharer
*
* @return void
* @throws Exception
*/
public function userShouldHaveShare(string $sharee, string $share, string $sharer): void {
$this->checkIfShareExists($share, $sharee, $sharer);
public function userShouldHaveShare(string $sharee, string $shouldOrNot, string $share, string $sharer): void {
if (trim($shouldOrNot) === "not") {
Assert::assertFalse($this->checkIfShareExists($share, $sharee, $sharer), "Share $share should not be available for a user");
} else {
Assert::assertTrue($this->checkIfShareExists($share, $sharee, $sharer), "Space $share should be available for a user '$sharee' but not found");
}
}

/**
Expand Down
42 changes: 42 additions & 0 deletions tests/acceptance/features/apiOcm/share.feature
Original file line number Diff line number Diff line change
Expand Up @@ -776,3 +776,45 @@ Feature: an user shares resources using ScienceMesh application
And for user "Brian" the content of file "textfile.txt" of federated share "textfile.txt" should be "this is a new content"
And using server "LOCAL"
And for user "Alice" the content of the file "textfile.txt" of the space "Personal" should be "this is a new content"

@issue-10213
Scenario: local user deletes access of shared resource to federated user
Given using spaces DAV path
And 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 a folder "FOLDER" in space "Personal"
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 user "Brian" lists the shares shared with him without retry using the Graph API
Then the HTTP status code should be "200"
And user "Brian" should have a share "FOLDER" shared by user "Alice"

@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 |
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 user "Alice" lists the shares shared with her without retry using the Graph API
Then the HTTP status code should be "200"
And user "Alice" should not have a share "FOLDER" shared by user "Brian"

0 comments on commit 7135198

Please sign in to comment.