diff --git a/tests/acceptance/features/bootstrap/OccContext.php b/tests/acceptance/features/bootstrap/OccContext.php index 07a4cf74e..1c366a6b0 100644 --- a/tests/acceptance/features/bootstrap/OccContext.php +++ b/tests/acceptance/features/bootstrap/OccContext.php @@ -867,27 +867,6 @@ class OccContext implements Context { ); } - /** - * @When the administrator has set depth_infinity_allowed to :depth_infinity_allowed - * - * @param int $depthInfinityAllowed - * - * @return void - * @throws Exception - */ - public function theAdministratorHasSetDepthInfinityAllowedTo($depthInfinityAllowed) { - $depthInfinityAllowedString = (string) $depthInfinityAllowed; - $this->addSystemConfigKeyUsingTheOccCommand( - "dav.propfind.depth_infinity", - $depthInfinityAllowedString - ); - if ($depthInfinityAllowedString === "0") { - $this->featureContext->davPropfindDepthInfinityDisabled(); - } else { - $this->featureContext->davPropfindDepthInfinityEnabled(); - } - } - /** * @Given the administrator has set the mail smtpmode to :smtpmode * diff --git a/tests/acceptance/features/coreApiWebdavOperations/listFiles.feature b/tests/acceptance/features/coreApiWebdavOperations/listFiles.feature index d2040308f..b9dfd0009 100644 --- a/tests/acceptance/features/coreApiWebdavOperations/listFiles.feature +++ b/tests/acceptance/features/coreApiWebdavOperations/listFiles.feature @@ -76,7 +76,6 @@ Feature: list files @depthInfinityPropfindEnabled Scenario Outline: Get the list of resources in the root folder with depth infinity Given using DAV path - And the administrator has set depth_infinity_allowed to 1 When user "Alice" lists the resources in "/" with depth "infinity" using the WebDAV API Then the HTTP status code should be "207" And the last DAV response for user "Alice" should contain these nodes @@ -158,7 +157,6 @@ Feature: list files @depthInfinityPropfindEnabled Scenario Outline: Get the list of resources in a folder with depth infinity Given using DAV path - And the administrator has set depth_infinity_allowed to 1 When user "Alice" lists the resources in "/simple-folder" with depth "infinity" using the WebDAV API Then the HTTP status code should be "207" And the last DAV response for user "Alice" should contain these nodes @@ -238,7 +236,6 @@ Feature: list files @depthInfinityPropfindEnabled Scenario Outline: Get the list of resources in a folder shared through public link with depth infinity Given using DAV path - And the administrator has set depth_infinity_allowed to 1 And user "Alice" has created the following folders | path | | /simple-folder/simple-folder1/simple-folder2/simple-folder3 | @@ -329,7 +326,6 @@ Feature: list files @depthInfinityPropfindEnabled Scenario Outline: Get the list of files in the trashbin with depth infinity Given using DAV path - And the administrator has set depth_infinity_allowed to 1 And user "Alice" has deleted the following resources | path | | textfile0.txt | diff --git a/tests/acceptance/features/coreApiWebdavOperations/propfind.feature b/tests/acceptance/features/coreApiWebdavOperations/propfind.feature index 5fd6caebd..402115ec2 100644 --- a/tests/acceptance/features/coreApiWebdavOperations/propfind.feature +++ b/tests/acceptance/features/coreApiWebdavOperations/propfind.feature @@ -18,26 +18,19 @@ Feature: PROPFIND Scenario Outline: PROPFIND to "/remote.php/dav/(files|spaces)" with depth header Given user "Alice" has been created with default attributes and without skeleton files - And the administrator has set depth_infinity_allowed to When user "Alice" requests "" with "PROPFIND" using basic auth and with headers | header | value | | depth | | Then the HTTP status code should be "" - @skipOnOcV10 @depthInfinityPropfindEnabled Examples: - | dav_path | depth_infinity_allowed | depth | http_status | - | /remote.php/dav/files/alice | 1 | 0 | 207 | - | /remote.php/dav/files/alice | 1 | infinity | 207 | - @skipOnOcV10 @personalSpace @depthInfinityPropfindDisabled + | dav_path | depth | http_status | + | /remote.php/dav/files/alice | 0 | 207 | + | /remote.php/dav/files/alice | infinity | 207 | + @personalSpace Examples: - | dav_path | depth_infinity_allowed | depth | http_status | - | /remote.php/dav/spaces/%spaceid% | 0 | 0 | 207 | - | /remote.php/dav/spaces/%spaceid% | 0 | infinity | 207 | - @skipOnOcV10 @personalSpace @depthInfinityPropfindEnabled - Examples: - | dav_path | depth_infinity_allowed | depth | http_status | - | /remote.php/dav/spaces/%spaceid% | 1 | 0 | 207 | - | /remote.php/dav/spaces/%spaceid% | 1 | infinity | 207 | + | dav_path | depth | http_status | + | /remote.php/dav/spaces/%spaceid% | 0 | 207 | + | /remote.php/dav/spaces/%spaceid% | infinity | 207 | Scenario: send PROPFIND request to a public link