]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add intergration test 706/head
authorRoeland Jago Douma <roeland@famdouma.nl>
Tue, 2 Aug 2016 08:58:27 +0000 (10:58 +0200)
committerJoas Schilling <coding@schilljs.com>
Wed, 3 Aug 2016 07:17:57 +0000 (09:17 +0200)
build/integration/features/sharing-v1.feature

index 75f98521e3a05f14f31de9f1b9cdb0dc45f7bf27..cd5be9cfe526e3c841215958a93d1b04d017b0ad 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"