Skip to content

Commit

Permalink
adding test for trying to enable sync with invalid remote item id
Browse files Browse the repository at this point in the history
  • Loading branch information
nirajacharya2 committed Apr 19, 2024
1 parent 3f7bb7d commit 6b89696
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,3 +297,49 @@ Feature: enable or disable sync of incoming shares
| resource |
| textfile0.txt |
| FolderToShare |

@issue-8724
Scenario: trying to enable share sync using non-existing remote item-id
Given user "Alice" has uploaded file with content "hello world" to "textfile0.txt"
And user "Alice" has sent the following share invitation:
| resource | textfile0.txt |
| space | Personal |
| sharee | Brian |
| shareType | user |
| permissionsRole | Viewer |
When user "Brian" tries to enable share sync of non-existing item using the Graph API
Then the HTTP status code should be "400"
And the JSON data of the response should match
"""
{
"type": "object",
"required": [
"error"
],
"properties": {
"error": {
"type": "object",
"required": [
"code",
"innererror",
"message"
],
"properties": {
"code" : {
"const": "invalidRequest"
},
"innererror" : {
"type": "object",
"required": [
"date",
"request-id"
]
},
"message" : {
"const": "mounting share failed"
}
}
}
}
}
"""
20 changes: 20 additions & 0 deletions tests/acceptance/features/bootstrap/SharingNgContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,26 @@ public function userEnablesSyncOfShareUsingTheGraphApi(string $user, string $sha
$this->featureContext->setResponse($response);
}

/**
* @When user :user tries to enable share sync of non-existing item using the Graph API
*
* @param string $user
*
* @return void
*/
public function userTriesToEnablsSyncOfShareOfferedByFromSpaceUsingTheGraphApi(string $user):void {
$shareSpaceId = FeatureContext::SHARES_SPACE_ID;
$response = GraphHelper::enableShareSync(
$this->featureContext->getBaseUrl(),
$this->featureContext->getStepLineRef(),
$this->featureContext->getActualUsername($user),
$this->featureContext->getPasswordForUser($user),
"invalid-id",
$shareSpaceId
);
$this->featureContext->setResponse($response);
}

/**
* @Then /^user "([^"]*)" should have sync (enabled|disabled) for share "([^"]*)"$/
*
Expand Down

0 comments on commit 6b89696

Please sign in to comment.