Also use new dav-path for empty-trashbin local scenarios

This commit is contained in:
Phil Davis
2020-08-27 13:39:30 +05:45
parent 0a8f935e4b
commit e1cc04c604

View File

@@ -22,7 +22,7 @@ Feature: files and folders can be deleted from the trashbin
# because of @issue-product-178 we cannot perform this test using new dav, so only old dav is being used
Given user "Alice" has uploaded file with content "file with comma" to "sample,0.txt"
And user "Alice" has uploaded file with content "file with comma" to "sample,1.txt"
And using old DAV path
And using <dav-path> DAV path
And user "Alice" has deleted file "<filename1>"
And user "Alice" has deleted file "<filename2>"
And as "Alice" file "<filename1>" should exist in the trashbin
@@ -31,9 +31,11 @@ Feature: files and folders can be deleted from the trashbin
Then as "Alice" the file with original path "<filename1>" should exist in the trashbin
And as "Alice" the file with original path "<filename2>" should exist in the trashbin
Examples:
| filename1 | filename2 |
| textfile0.txt | textfile1.txt |
| sample,0.txt | sample,1.txt |
| dav-path | filename1 | filename2 |
| old | textfile0.txt | textfile1.txt |
| old | sample,0.txt | sample,1.txt |
| new | textfile0.txt | textfile1.txt |
| new | sample,0.txt | sample,1.txt |
@smokeTest
@issue-ocis-reva-118