diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-26 15:07:01 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-26 15:07:01 +0100 |
commit | 95896411fb19ea1f9fb6682bbca50ca04e8f8d89 (patch) | |
tree | 79255a91bca5c30a4d7a02673181b0edd63355cf | |
parent | 4d22c75d49aac0447b6b8039aa85459ea10bfd2e (diff) | |
parent | 094a1bc7cbb6dda3efb55cacf188bd679c9d1e11 (diff) | |
download | nextcloud-server-95896411fb19ea1f9fb6682bbca50ca04e8f8d89.tar.gz nextcloud-server-95896411fb19ea1f9fb6682bbca50ca04e8f8d89.zip |
Merge pull request #20755 from owncloud/integration_test_not_sharee_requesting
Added test case about a user without a share requesting it
-rw-r--r-- | build/integration/features/sharing-v1.feature | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/integration/features/sharing-v1.feature b/build/integration/features/sharing-v1.feature index 063a40b1d3c..32bb943d2d7 100644 --- a/build/integration/features/sharing-v1.feature +++ b/build/integration/features/sharing-v1.feature @@ -353,6 +353,16 @@ Feature: sharing Then the OCS status code should be "404" And the HTTP status code should be "200" + Scenario: Get a share with a user which didn't received the share + Given user "user0" exists + And user "user1" exists + And user "user2" exists + And file "textfile0.txt" from user "user0" is shared with user "user1" + And As an "user2" + When Getting info of last share + Then the OCS status code should be "404" + And the HTTP status code should be "200" + Scenario: Delete all group shares Given As an "admin" And user "user0" exists |