Add new uploadFile bug demo scenario from core PR 37795

This commit is contained in:
Phil Davis
2020-08-11 16:58:08 +05:45
parent a4e2e4e4f2
commit 8ef228eb3b
3 changed files with 23 additions and 1 deletions
@@ -18,3 +18,20 @@ Feature: upload file
| dav_version | file_name |
| old | "file ?2.txt" |
| new | "file ?2.txt" |
@issue-product-127
# after fixing all issues delete this Scenario and use the one from oC10 core
Scenario Outline: uploading a file inside a folder changes its etag
Given using <dav_version> DAV path
And user "Alice" has created folder "/upload"
And user "Alice" has stored etag of element "/<element>"
When user "Alice" uploads file with content "uploaded content" to "/upload/file.txt" using the WebDAV API
Then the content of file "/upload/file.txt" for user "Alice" should be "uploaded content"
# And the etag of element "/<element>" of user "Alice" should have changed
And the etag of element "/<element>" of user "Alice" should not have changed
Examples:
| dav_version | element |
| old | |
| old | upload |
| new | |
| new | upload |