Skip to content

Commit

Permalink
tests to check webdav requests with locktoken in header
Browse files Browse the repository at this point in the history
  • Loading branch information
individual-it committed Feb 1, 2019
1 parent 9f82ad1 commit acb0247
Show file tree
Hide file tree
Showing 4 changed files with 204 additions and 2 deletions.
102 changes: 102 additions & 0 deletions tests/acceptance/features/apiWebdavLocks/requestsWithToken.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
@api
Feature: actions on a locked item are possible if the token is send with the request

Background:
Given user "user0" has been created with default attributes

Scenario Outline: rename a file in a locked folder
Given using <dav-path> DAV path
And user "user0" has locked folder "PARENT" setting following properties
| lockscope | <lock-scope> |
When user "user0" moves file "/PARENT/parent.txt" to "/PARENT/renamed-file.txt" sending the locktoken of folder "PARENT" using the WebDAV API
Then the HTTP status code should be "201"
And as "user0" file "/PARENT/parent.txt" should not exist
But as "user0" file "/PARENT/renamed-file.txt" should exist
Examples:
| dav-path | lock-scope |
| old | shared |
| old | exclusive |
| new | shared |
| new | exclusive |

Scenario Outline: move a file into a locked folder
Given using <dav-path> DAV path
And user "user0" has locked folder "FOLDER" setting following properties
| lockscope | <lock-scope> |
When user "user0" moves file "/PARENT/parent.txt" to "/FOLDER/moved-file.txt" sending the locktoken of folder "FOLDER" using the WebDAV API
Then the HTTP status code should be "201"
And as "user0" file "/PARENT/parent.txt" should not exist
But as "user0" file "/FOLDER/moved-file.txt" should exist
Examples:
| dav-path | lock-scope |
| old | shared |
| old | exclusive |
| new | shared |
| new | exclusive |

Scenario Outline: move a file into a locked folder is impossible when using the wrong token
Given using <dav-path> DAV path
And user "user0" has locked folder "FOLDER" setting following properties
| lockscope | <lock-scope> |
And user "user0" has locked folder "PARENT/CHILD" setting following properties
| lockscope | <lock-scope> |
When user "user0" moves file "/PARENT/parent.txt" to "/FOLDER/moved-file.txt" sending the locktoken of folder "PARENT/CHILD" using the WebDAV API
Then the HTTP status code should be "423"
And as "user0" file "/PARENT/parent.txt" should exist
But as "user0" file "/FOLDER/moved-file.txt" should not exist
Examples:
| dav-path | lock-scope |
| old | shared |
| old | exclusive |
| new | shared |
| new | exclusive |

@issue-34338
Scenario Outline: share receiver cannot rename a file in a folder locked by the owner even when sending the locktoken
Given using <dav-path> DAV path
And user "user1" has been created with default attributes
And user "user0" has shared folder "PARENT" with user "user1"
And user "user0" has locked folder "PARENT" setting following properties
| lockscope | <lock-scope> |
When user "user1" moves file "PARENT (2)/parent.txt" to "PARENT (2)/renamed-file.txt" sending the locktoken of file "PARENT" of user "user0" using the WebDAV API
#When the issue is fixed, remove the following steps and replace with the commented-out steps
Then the HTTP status code should be "403"
And as "user0" file "/PARENT/parent.txt" should not exist
But as "user0" file "/PARENT/renamed-file.txt" should exist
#Then the HTTP status code should be "423"
#And as "user0" file "/PARENT/parent.txt" should exist
#But as "user0" file "/PARENT/renamed-file.txt" should not exist
Examples:
| dav-path | lock-scope |
| old | shared |
| old | exclusive |
| new | shared |
| new | exclusive |

Scenario Outline: public cannot overwrite a file in a folder locked by the owner even when sending the locktoken
Given user "user0" has created a public link share of folder "PARENT" with change permission
And user "user0" has locked folder "PARENT" setting following properties
| lockscope | <lock-scope> |
When the public uploads file "parent.txt" with content "test" sending the locktoken of file "PARENT" of user "user0" using the public WebDAV API
Then the HTTP status code should be "423"
And the content of file "/PARENT/parent.txt" for user "user0" should be "ownCloud test text file parent" plus end-of-line
Examples:
| lock-scope |
| shared |
| exclusive |

@issue-34341
Scenario Outline: public can overwrite a file locked by itself when sending the locktoken
Given user "user0" has created a public link share of folder "PARENT" with change permission
And the public has locked "/parent.txt" in the last public shared folder setting following properties
| lockscope | <lock-scope> |
When the public uploads file "parent.txt" with content "test" sending the locktoken of "/parent.txt" of the public using the public WebDAV API
#When the issue is fixed, remove the following steps and replace with the commented-out steps
Then the HTTP status code should be "423"
And the content of file "/PARENT/parent.txt" for user "user0" should be "ownCloud test text file parent" plus end-of-line
#Then the HTTP status code should be "204"
#And the content of file "/PARENT/parent.txt" for user "user0" should be "test"
Examples:
| lock-scope |
| shared |
| exclusive |
5 changes: 4 additions & 1 deletion tests/acceptance/features/bootstrap/PublicWebDavContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,16 @@ public function publiclyUploadingShouldWork() {
* @param string $password
* @param string $body
* @param bool $autorename
* @param array $additionalHeaders
*
* @return void
*/
public function publicUploadContent(
$filename,
$password = '',
$body = 'test',
$autorename = false
$autorename = false,
$additionalHeaders = []
) {
$password = $this->featureContext->getActualPassword($password);
$url = $this->featureContext->getBaseUrl() . "/public.php/webdav/";
Expand All @@ -275,6 +277,7 @@ public function publicUploadContent(
if ($autorename) {
$headers['OC-Autorename'] = 1;
}
$headers = \array_merge($headers, $additionalHeaders);
$response = HttpRequestHelper::put(
$url, $token, $password, $headers, $body
);
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/WebDav.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function slowdownDavRequests($method, $seconds) {
*
* @return string
*/
private function destinationHeaderValue($user, $fileDestination) {
public function destinationHeaderValue($user, $fileDestination) {
$fullUrl = $this->getBaseUrl() . '/' . $this->getDavFilesPath($user);
return $fullUrl . '/' . \ltrim($fileDestination, '/');
}
Expand Down
97 changes: 97 additions & 0 deletions tests/acceptance/features/bootstrap/WebDavLockingContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use Behat\Behat\Context\Context;
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
use Behat\Gherkin\Node\TableNode;
use GuzzleHttp\Exception\ConnectException;
use TestHelpers\WebDavHelper;

require_once 'bootstrap.php';
Expand All @@ -37,6 +38,13 @@ class WebDavLockingContext implements Context {
* @var FeatureContext
*/
private $featureContext;

/**
*
* @var PublicWebDavContext
*/
private $publicWebDavContext;

/**
*
* @var string[][]
Expand Down Expand Up @@ -275,6 +283,94 @@ public function unlockItemAsPublicUsingWebDavAPI($itemToUnlock) {
);
}

/**
* @When /^user "([^"]*)" moves (?:file|folder|entry) "([^"]*)" to "([^"]*)" sending the locktoken of (?:file|folder|entry) "([^"]*)" using the WebDAV API$/
*
* @param string $user
* @param string $fileSource
* @param string $fileDestination
* @param string $itemToUseLockOf
*
* @return void
*/
public function moveItemSendingLockToken(
$user, $fileSource, $fileDestination, $itemToUseLockOf
) {
$this->moveItemSendingLockTokenOfUser(
$user, $fileSource, $fileDestination, $itemToUseLockOf, $user
);
}

/**
* @When /^user "([^"]*)" moves (?:file|folder|entry) "([^"]*)" to "([^"]*)" sending the locktoken of (?:file|folder|entry) "([^"]*)" of user "([^"]*)" using the WebDAV API$/
*
* @param string $user
* @param string $fileSource
* @param string $fileDestination
* @param string $itemToUseLockOf
* @param string $lockOwner
*
* @return void
*/
public function moveItemSendingLockTokenOfUser(
$user, $fileSource, $fileDestination, $itemToUseLockOf, $lockOwner
) {
$destination = $this->featureContext->destinationHeaderValue(
$user, $fileDestination
);
$token = $this->tokenOfLastLock[$lockOwner][$itemToUseLockOf];
$headers = [
"Destination" => $destination,
"If" => "(<$token>)"
];
try {
$response = $this->featureContext->makeDavRequest(
$user, "MOVE", $fileSource, $headers
);
$this->featureContext->setResponse($response);
} catch (ConnectException $e) {
}
}

/**
* @When the public uploads file :filename with content :content sending the locktoken of file :itemToUseLockOf of user :lockOwner using the public WebDAV API
*
* @param string $filename
* @param string $content
* @param string $itemToUseLockOf
* @param string $lockOwner
*
* @return void
*
*/
public function publicUploadFileSendingLockTokenOfUser(
$filename, $content, $itemToUseLockOf, $lockOwner
) {
$headers = [
"If" => "(<" . $this->tokenOfLastLock[$lockOwner][$itemToUseLockOf] . ">)"
];
$this->publicWebDavContext->publicUploadContent(
$filename, '', $content, false, $headers
);
}

/**
* @When the public uploads file :filename with content :content sending the locktoken of :itemToUseLockOf of the public using the public WebDAV API
*
* @param string $filename
* @param string $content
* @param string $itemToUseLockOf
*
* @return void
*/
public function publicUploadFileSendingLockTokenOfPublic(
$filename, $content, $itemToUseLockOf
) {
$lockOwner = (string)$this->featureContext->getLastShareData()->data->token;
$this->publicUploadFileSendingLockTokenOfUser(
$filename, $content, $itemToUseLockOf, $lockOwner
);
}
/**
* @Then :count locks should be reported for file/folder :file of user :user by the WebDAV API
*
Expand Down Expand Up @@ -320,5 +416,6 @@ public function before(BeforeScenarioScope $scope) {
$environment = $scope->getEnvironment();
// Get all the contexts you need in this context
$this->featureContext = $environment->getContext('FeatureContext');
$this->publicWebDavContext = $environment->getContext('PublicWebDavContext');
}
}

0 comments on commit acb0247

Please sign in to comment.