[tests-only] Removed unused steps from AuthContext (#7407)

* removed unsed steps from Archiver and Auth contexts

fix methods

fix sendRequest method

fix steps

add missing step

* move steps from OCS to Auth context

add missing step

fix null

fix variable name

fix variable name

* fix password
This commit is contained in:
Sawjan Gurung
2023-10-10 16:29:09 +05:45
committed by GitHub
parent 7dde3a1175
commit 3f99d182bf
4 changed files with 353 additions and 1075 deletions
@@ -55,7 +55,7 @@ Feature: make webdav request with special urls
Scenario: send LOCK requests to webDav endpoints with 2 slashes
When the user "Alice" requests these endpoints with "LOCK" to get property "d:shared" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "LOCK" to get property "d:shared" about user "Alice"
| endpoint |
| //remote.php/webdav/textfile0.txt |
| //remote.php//dav/files/%username%/textfile1.txt |
@@ -66,7 +66,7 @@ Feature: make webdav request with special urls
Scenario: send LOCK requests to webDav endpoints with 2 slashes using the spaces WebDAV API
When the user "Alice" requests these endpoints with "LOCK" to get property "d:shared" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "LOCK" to get property "d:shared" about user "Alice"
| endpoint |
| //remote.php/dav/spaces/%spaceid%/textfile0.txt |
| //remote.php//dav/spaces/%spaceid%/PARENT/parent.txt |
@@ -142,7 +142,7 @@ Feature: make webdav request with special urls
Scenario: send PROPFIND requests to webDav endpoints with 2 slashes
When the user "Alice" requests these endpoints with "PROPFIND" to get property "d:href" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "PROPFIND" to get property "d:href" about user "Alice"
| endpoint |
| //remote.php/webdav/textfile0.txt |
| //remote.php//dav/files/%username%/textfile1.txt |
@@ -153,7 +153,7 @@ Feature: make webdav request with special urls
@skipOnRevaMaster
Scenario: send PROPFIND requests to webDav endpoints with 2 slashes using the spaces WebDAV API
When the user "Alice" requests these endpoints with "PROPFIND" to get property "d:href" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "PROPFIND" to get property "d:href" about user "Alice"
| endpoint |
| //remote.php//dav/spaces/%spaceid%/textfile1.txt |
| /remote.php//dav/spaces/%spaceid%/PARENT/parent.txt |
@@ -163,7 +163,7 @@ Feature: make webdav request with special urls
Scenario: send PROPPATCH requests to webDav endpoints with 2 slashes
When the user "Alice" requests these endpoints with "PROPPATCH" to set property "d:getlastmodified" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "PROPPATCH" to set property "d:getlastmodified" about user "Alice"
| endpoint |
| //remote.php/webdav/textfile0.txt |
| //remote.php//dav/files/%username%/textfile1.txt |
@@ -174,7 +174,7 @@ Feature: make webdav request with special urls
@skipOnRevaMaster
Scenario: send PROPPATCH requests to webDav endpoints with 2 slashes using the spaces WebDAV API
When the user "Alice" requests these endpoints with "PROPPATCH" to set property "d:getlastmodified" with password "%regular%" about user "Alice"
When user "Alice" requests these endpoints with "PROPPATCH" to set property "d:getlastmodified" about user "Alice"
| endpoint |
| //remote.php//dav/spaces/%spaceid%/textfile1.txt |
| /remote.php//dav/spaces/%spaceid%/PARENT/parent.txt |