diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-02-26 16:05:32 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-02-26 16:05:32 +0100 |
commit | b116e80c5629caab679e158813f1b3fda13cb501 (patch) | |
tree | 5008b318097cf35d4d15eb2a0f65911211fb308e /build | |
parent | 5fa6d3ea5802c705c2883edf1d24bbd330defdcb (diff) | |
download | nextcloud-server-b116e80c5629caab679e158813f1b3fda13cb501.tar.gz nextcloud-server-b116e80c5629caab679e158813f1b3fda13cb501.zip |
Relax rootfolder check
* Updated unit tests
* Added intergration test
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/sharing-v1.feature | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/build/integration/features/sharing-v1.feature b/build/integration/features/sharing-v1.feature index 462915cf5ba..bfd52ec6605 100644 --- a/build/integration/features/sharing-v1.feature +++ b/build/integration/features/sharing-v1.feature @@ -513,4 +513,16 @@ Feature: sharing When creating a share with | path | / | | shareType | 3 | - Then the OCS status code should be "403"
\ No newline at end of file + Then the OCS status code should be "403" + + Scenario: Allow modification of reshare + Given user "user0" exists + And user "user1" exists + And user "user2" exists + And user "user0" created a folder "/TMP" + And file "TMP" of user "user0" is shared with user "user1" + And file "TMP" of user "user1" is shared with user "user2" + And As an "user1" + When Updating last share with + | permissions | 1 | + Then the OCS status code should be "100" |