add tests to check 425 too early behavior

add tests to check 425 too early behavior

add delay postprocessing suite pipeline

add step def
This commit is contained in:
Saw-jan
2023-01-02 16:20:53 +05:45
parent c37d76ffbf
commit 335144e50b
6 changed files with 165 additions and 19 deletions
@@ -0,0 +1,26 @@
@api
Feature: delay post-processing of uploaded files
Background:
Given user "Alice" has been created with default attributes and without skeleton files
And user "Alice" has uploaded file with content "uploaded content" to "/file.txt"
Scenario Outline: user sends GET request to the file while it's still being processed
When user "Alice" requests "<dav_path>" with "GET" without retrying
Then the HTTP status code should be "425"
Examples:
| dav_path |
| /remote.php/webdav/file.txt |
| /remote.php/dav/files/%username%/file.txt |
| /dav/spaces/%spaceid%/file.txt |
Scenario Outline: user sends PROPFIND request to the file while it's still being processed
When user "Alice" requests "<dav_path>" with "PROPFIND" without retrying
Then the HTTP status code should be "425"
Examples:
| dav_path |
| /remote.php/webdav/file.txt |
| /remote.php/dav/files/%username%/file.txt |
| /dav/spaces/%spaceid%/file.txt |