]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add integration test for sharing with group, then user in group
authorVincent Petry <pvince81@owncloud.com>
Tue, 5 Jul 2016 09:08:19 +0000 (11:08 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Wed, 31 Aug 2016 09:40:14 +0000 (11:40 +0200)
Add integration test for the use case where a group share exists and
then the same owner creates a direct share to a user in that group.

build/integration/features/sharing-v1.feature

index 500dad32dc1c2cbfbb2e1ad51634b808c5f5bbfb..de9e709a3a54b3749f90f560bf8d60bf5e7d70f6 100644 (file)
@@ -41,6 +41,21 @@ Feature: sharing
     Then the OCS status code should be "100"
     And the HTTP status code should be "200"
 
+  Scenario: Creating a new share with user who already received a share through their group
+    Given As an "admin"
+    And user "user0" exists
+    And user "user1" exists
+    And group "sharing-group" exists
+    And user "user1" belongs to group "sharing-group"
+    And file "welcome.txt" of user "user0" is shared with group "sharing-group"
+    And As an "user0"
+    Then sending "POST" to "/apps/files_sharing/api/v1/shares" with
+      | path | welcome.txt |
+      | shareWith | user1 |
+      | shareType | 0 |
+    Then the OCS status code should be "100"
+    And the HTTP status code should be "200"
+
   Scenario: Creating a new public share
     Given user "user0" exists
     And As an "user0"