diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-10 11:03:19 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-06-13 10:50:10 +0200 |
commit | 81761b87e4d29989329b398d4f797f0ccb47b144 (patch) | |
tree | 1eeec3ad2117bdf9d03133f196b37eb8d2ae3aa7 /build | |
parent | 851b7ca27f34ea8a0db9a755808c3eaf1ca847c0 (diff) | |
download | nextcloud-server-81761b87e4d29989329b398d4f797f0ccb47b144.tar.gz nextcloud-server-81761b87e4d29989329b398d4f797f0ccb47b144.zip |
DAV now returns file name with Content-Disposition header
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/webdav-related.feature | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/webdav-related.feature b/build/integration/features/webdav-related.feature index ee841f9eb5b..45a36499251 100644 --- a/build/integration/features/webdav-related.feature +++ b/build/integration/features/webdav-related.feature @@ -73,7 +73,7 @@ Feature: webdav-related And As an "admin" When Downloading file "/welcome.txt" Then The following headers should be set - |Content-Disposition|attachment| + |Content-Disposition|attachment; filename*=UTF-8''welcome.txt; filename="welcome.txt"| |Content-Security-Policy|default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src * data: blob:; font-src 'self' data:; media-src *; connect-src *| |X-Content-Type-Options |nosniff| |X-Download-Options|noopen| @@ -88,7 +88,7 @@ Feature: webdav-related And As an "admin" When Downloading file "/welcome.txt" Then The following headers should be set - |Content-Disposition|attachment| + |Content-Disposition|attachment; filename*=UTF-8''welcome.txt; filename="welcome.txt"| |Content-Security-Policy|default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src * data: blob:; font-src 'self' data:; media-src *; connect-src *| |X-Content-Type-Options |nosniff| |X-Download-Options|noopen| |