Add new uploadFile bug demo scenario from core PR 37795

This commit is contained in:
Phil Davis
2020-08-11 16:52:11 +05:45
parent 09d466a1b4
commit 96990291a3
3 changed files with 24 additions and 1 deletions
+5
View File
@@ -840,6 +840,11 @@ apiWebdavProperties2/getFileProperties.feature:561
apiWebdavUpload1/uploadFile.feature:123
apiWebdavUpload1/uploadFile.feature:124
#
apiWebdavUpload1/uploadFile.feature:208
apiWebdavUpload1/uploadFile.feature:209
apiWebdavUpload1/uploadFile.feature:210
apiWebdavUpload1/uploadFile.feature:211
#
# https://github.com/owncloud/ocis-reva/issues/56 remote.php/dav/uploads endpoint does not exist
apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:14
apiWebdavUpload1/uploadFileAsyncUsingNewChunking.feature:31
@@ -18,3 +18,21 @@ Feature: upload file
| dav_version | file_name |
| old | "file ?2.txt" |
| new | "file ?2.txt" |
@skipOnOcis-OC-Storage @issue-product-127
# this scenario passes/fails intermittently on OC storage, so do not run it in CI
# 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 |