Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests-only][full-ci] add e2e test coverage for filename with hash #10812

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions tests/e2e/cucumber/features/smoke/upload.feature
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Feature: Upload
| textfile.txt | txtFile | some random content |
# Coverage for bug: https://github.com/owncloud/ocis/issues/8361
| comma,.txt | txtFile | comma |
# Coverage for bug: https://github.com/owncloud/web/issues/10810
| test#file.txt | txtFile | some content |
| test#folder | folder | |
When "Alice" uploads the following resources
| resource | option |
| new-lorem-big.txt | replace |
Expand All @@ -40,10 +43,13 @@ Feature: Upload
| resource | error |
| lorem-big.txt | Not enough quota |
And "Alice" downloads the following resources using the sidebar panel
| resource | type |
| PARENT | folder |
| resource | type |
| PARENT | folder |
# Coverage for bug: https://github.com/owncloud/ocis/issues/8361
| comma,.txt | file |
| comma,.txt | file |
# Coverage for bug: https://github.com/owncloud/web/issues/10810
| test#file.txt | file |
| test#folder | folder |

# https://github.com/owncloud/web/issues/6348
# Note: uploading folder with empty sub-folder should be done manually
Expand Down