Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-06-07 11:37:45 +0300
committerGitHub <noreply@github.com>2021-06-07 11:37:45 +0300
commit541260521960fb83035fb246affad0dcbce598a0 (patch)
tree631dba33fba9b1bcf85e3ac283f3f4bdd07e6ce6 /tests
parent87363686b7068cba46367f5b14638d43a3b1545e (diff)
parentd838108deaa90a2f2d78af4e608452fb105fcd15 (diff)
Merge pull request #27359 from nextcloud/backport/27354/stable21
[stable21] Escape filename in Content-Disposition
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/AppFramework/Http/DownloadResponseTest.php36
1 files changed, 25 insertions, 11 deletions
diff --git a/tests/lib/AppFramework/Http/DownloadResponseTest.php b/tests/lib/AppFramework/Http/DownloadResponseTest.php
index 6c509b8bc59..89de248cea0 100644
--- a/tests/lib/AppFramework/Http/DownloadResponseTest.php
+++ b/tests/lib/AppFramework/Http/DownloadResponseTest.php
@@ -30,22 +30,36 @@ class ChildDownloadResponse extends DownloadResponse {
class DownloadResponseTest extends \Test\TestCase {
-
- /**
- * @var ChildDownloadResponse
- */
- protected $response;
-
protected function setUp(): void {
parent::setUp();
- $this->response = new ChildDownloadResponse('file', 'content');
}
-
public function testHeaders() {
- $headers = $this->response->getHeaders();
+ $response = new ChildDownloadResponse('file', 'content');
+ $headers = $response->getHeaders();
+
+ $this->assertEquals('attachment; filename="file"', $headers['Content-Disposition']);
+ $this->assertEquals('content', $headers['Content-Type']);
+ }
+
+ /**
+ * @dataProvider filenameEncodingProvider
+ */
+ public function testFilenameEncoding(string $input, string $expected) {
+ $response = new ChildDownloadResponse($input, 'content');
+ $headers = $response->getHeaders();
+
+ $this->assertEquals('attachment; filename="'.$expected.'"', $headers['Content-Disposition']);
+ }
- $this->assertStringContainsString('attachment; filename="file"', $headers['Content-Disposition']);
- $this->assertStringContainsString('content', $headers['Content-Type']);
+ public function filenameEncodingProvider() : array {
+ return [
+ ['TestName.txt', 'TestName.txt'],
+ ['A "Quoted" Filename.txt', 'A \\"Quoted\\" Filename.txt'],
+ ['A "Quoted" Filename.txt', 'A \\"Quoted\\" Filename.txt'],
+ ['A "Quoted" Filename With A Backslash \\.txt', 'A \\"Quoted\\" Filename With A Backslash \\\\.txt'],
+ ['A "Very" Weird Filename \ / & <> " >\'""""\.text', 'A \\"Very\\" Weird Filename \\\\ / & <> \\" >\'\\"\\"\\"\\"\\\\.text'],
+ ['\\\\\\\\\\\\', '\\\\\\\\\\\\\\\\\\\\\\\\'],
+ ];
}
}