blob: e6f696ed160800f9d8f45a5ca8dc373378dc4edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\DAV\Tests\unit\Connector\Sabre;
use OCA\DAV\Connector\Sabre\PropfindCompressionPlugin;
use Sabre\HTTP\Request;
use Sabre\HTTP\Response;
use Test\TestCase;
class PropfindCompressionPluginTest extends TestCase {
private PropfindCompressionPlugin $plugin;
protected function setUp(): void {
parent::setUp();
$this->plugin = new PropfindCompressionPlugin();
}
public function testNoHeader(): void {
$request = $this->createMock(Request::class);
$response = $this->createMock(Response::class);
$request->method('getHeader')
->with('Accept-Encoding')
->willReturn(null);
$response->expects($this->never())
->method($this->anything());
$result = $this->plugin->compressResponse($request, $response);
$this->assertSame($response, $result);
}
public function testHeaderButNoGzip(): void {
$request = $this->createMock(Request::class);
$response = $this->createMock(Response::class);
$request->method('getHeader')
->with('Accept-Encoding')
->willReturn('deflate');
$response->expects($this->never())
->method($this->anything());
$result = $this->plugin->compressResponse($request, $response);
$this->assertSame($response, $result);
}
public function testHeaderGzipButNoStringBody(): void {
$request = $this->createMock(Request::class);
$response = $this->createMock(Response::class);
$request->method('getHeader')
->with('Accept-Encoding')
->willReturn('deflate');
$response->method('getBody')
->willReturn(5);
$result = $this->plugin->compressResponse($request, $response);
$this->assertSame($response, $result);
}
public function testProperGzip(): void {
$request = $this->createMock(Request::class);
$response = $this->createMock(Response::class);
$request->method('getHeader')
->with('Accept-Encoding')
->willReturn('gzip, deflate');
$response->method('getBody')
->willReturn('my gzip test');
$response->expects($this->once())
->method('setHeader')
->with(
$this->equalTo('Content-Encoding'),
$this->equalTo('gzip')
);
$response->expects($this->once())
->method('setBody')
->with($this->callback(function ($data) {
$orig = gzdecode($data);
return $orig === 'my gzip test';
}));
$result = $this->plugin->compressResponse($request, $response);
$this->assertSame($response, $result);
}
}
|