Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-02-26 18:05:32 +0300
committerRoeland Jago Douma <rullzer@owncloud.com>2016-02-26 18:05:32 +0300
commitb116e80c5629caab679e158813f1b3fda13cb501 (patch)
tree5008b318097cf35d4d15eb2a0f65911211fb308e /build
parent5fa6d3ea5802c705c2883edf1d24bbd330defdcb (diff)
Relax rootfolder check
* Updated unit tests * Added intergration test
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/sharing-v1.feature14
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"