[tests-only] Run tests with default propfind depth infinity config (#7334)

* use default config for OCDAV_ALLOW_PROPFIND_DEPTH_INFINITY

* remove unnecessary steps

* use default propfind depth infinity value

* use correct step to check the resources

* use correct step to check the resources

* cover depth:infinity enabled test cases

* fix steps

* fix scenario steps

* update expected failure list

* add depth infinity test suite to ci

* update existing tests only

* remove test with depth:infinity
This commit is contained in:
Sawjan Gurung
2023-10-05 09:56:01 +05:45
parent b0ff78c370
commit de42e3e109
14 changed files with 142 additions and 311 deletions
@@ -667,7 +667,7 @@ class SpacesContext implements Context {
$foldersPath,
[],
$this->featureContext->getStepLineRef(),
'infinity',
null,
'files',
WebDavHelper::DAV_VERSION_SPACES
)
@@ -143,7 +143,7 @@ class TrashbinContext implements Context {
* @return array response
* @throws Exception
*/
public function listTopOfTrashbinFolder(?string $user, string $depth = "infinity"):array {
public function listTopOfTrashbinFolder(?string $user, string $depth = "1"):array {
$password = $this->featureContext->getPasswordForUser($user);
$davPathVersion = $this->featureContext->getDavPathVersion();
$response = WebDavHelper::listFolder(
@@ -1982,7 +1982,6 @@ trait WebDav {
$responseXmlObject = $this->listFolderAndReturnResponseXml(
$user,
"/",
"infinity"
);
foreach ($elementsSimplified as $expectedElement) {
// Allow the table of expected elements to have entries that do
@@ -4871,6 +4870,9 @@ trait WebDav {
?string $method = 'REPORT',
?string $folderpath = ''
):void {
if ($folderpath === "/") {
$folderpath = "";
}
$this->verifyTableNodeColumnsCount($expectedFiles, 1);
$elementRows = $expectedFiles->getRows();
$should = ($shouldOrNot !== "not");