]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add intergration test 637/head
authorRoeland Jago Douma <roeland@famdouma.nl>
Tue, 2 Aug 2016 08:58:27 +0000 (10:58 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Tue, 2 Aug 2016 09:12:52 +0000 (11:12 +0200)
build/integration/features/sharing-v1.feature

index 16d04e813308c85f8c831c75e405b6b05c1e1680..94d12ce3e72eb36379dc6ca6b20d35b7bf8caa79 100644 (file)
@@ -759,3 +759,19 @@ Feature: sharing
       | shareType | 0 |
     Then the OCS status code should be "997"
     And the HTTP status code should be "401"
+
+  Scenario: Deleting a group share as user
+    Given As an "admin"
+    And user "user0" exists
+    And user "user1" exists
+    And group "group1" exists
+    And user "user1" belongs to group "group1"
+    And As an "user0"
+    And creating a share with
+      | path | welcome.txt |
+      | shareType | 1 |
+      | shareWith | group1 |
+    When As an "user1"
+    And Deleting last share
+    Then the OCS status code should be "404"
+    And the HTTP status code should be "200"