]> source.dussan.org Git - nextcloud-server.git/commitdiff
Do not create folders with admin user
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Fri, 21 Jun 2019 10:16:27 +0000 (12:16 +0200)
committerBackportbot <backportbot-noreply@rullzer.com>
Thu, 27 Jun 2019 14:30:53 +0000 (14:30 +0000)
The admin user is not deleted after each integration test is run, so
folders created by the admin user in one test are still there when the
next tests run; tests should be independent one from each other, so a
regular user that is created and deleted for each test should be used
instead.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
build/integration/features/sharing-v1-part3.feature

index 6ab7cfdf9a0faa0c99cc541a67f545d70004a1e0..9ef57682534c4f163efc7f96d42bc1b384a233e4 100644 (file)
@@ -339,14 +339,16 @@ Feature: sharing
 
   Scenario: do not allow to increase link share permissions on reshare
     Given As an "admin"
-    And user "admin" created a folder "/TMP"
     And user "user0" exists
+    And user "user1" exists
+    And user "user0" created a folder "/TMP"
+    And As an "user0"
     And creating a share with
       | path | TMP |
       | shareType | 0 |
-      | shareWith | user0 |
+      | shareWith | user1 |
       | permissions | 17  |
-    When As an "user0"
+    When As an "user1"
     And creating a share with
       | path | TMP |
       | shareType | 3 |