diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-17 10:10:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-17 10:10:00 +0100 |
commit | 3f331e02f99d7943c091f2fa3598769100e008d1 (patch) | |
tree | 4278ea9bdacd0b9278a70474ad29a6bedb9f7e33 /build/integration/features/sharing-v1.feature | |
parent | e548d27d3a2e561152a66a4ee462e78d49cd6538 (diff) | |
parent | 5d29e841188fbb0900935fb892beaae3c23b2f4f (diff) | |
download | nextcloud-server-3f331e02f99d7943c091f2fa3598769100e008d1.tar.gz nextcloud-server-3f331e02f99d7943c091f2fa3598769100e008d1.zip |
Merge pull request #3893 from nextcloud/downstream-27069
Add integration test for trashbin
Diffstat (limited to 'build/integration/features/sharing-v1.feature')
-rw-r--r-- | build/integration/features/sharing-v1.feature | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/build/integration/features/sharing-v1.feature b/build/integration/features/sharing-v1.feature index 4ce32654ba4..973aa803e41 100644 --- a/build/integration/features/sharing-v1.feature +++ b/build/integration/features/sharing-v1.feature @@ -988,3 +988,33 @@ Feature: sharing And Updating last share with | publicUpload | true | Then the OCS status code should be "404" + And the HTTP status code should be "200" + + Scenario: deleting file out of a share as recipient creates a backup for the owner + Given As an "admin" + And user "user0" exists + And user "user1" exists + And user "user0" created a folder "/shared" + And User "user0" moved file "/textfile0.txt" to "/shared/shared_file.txt" + And folder "/shared" of user "user0" is shared with user "user1" + When User "user1" deletes file "/shared/shared_file.txt" + Then as "user1" the file "/shared/shared_file.txt" does not exist + And as "user0" the file "/shared/shared_file.txt" does not exist + And as "user0" the file "/shared_file.txt" exists in trash + And as "user1" the file "/shared_file.txt" exists in trash + + Scenario: deleting folder out of a share as recipient creates a backup for the owner + Given As an "admin" + And user "user0" exists + And user "user1" exists + And user "user0" created a folder "/shared" + And user "user0" created a folder "/shared/sub" + And User "user0" moved file "/textfile0.txt" to "/shared/sub/shared_file.txt" + And folder "/shared" of user "user0" is shared with user "user1" + When User "user1" deletes folder "/shared/sub" + Then as "user1" the folder "/shared/sub" does not exist + And as "user0" the folder "/shared/sub" does not exist + And as "user0" the folder "/sub" exists in trash + And as "user0" the file "/sub/shared_file.txt" exists in trash + And as "user1" the folder "/sub" exists in trash + And as "user1" the file "/sub/shared_file.txt" exists in trash |