2013-08-17 13:16:48 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - App Framework
|
|
|
|
*
|
|
|
|
* @author Bernhard Posselt
|
2014-05-07 00:25:05 +04:00
|
|
|
* @copyright 2012 Bernhard Posselt <dev@bernhard-posselt.com>
|
2013-08-17 13:16:48 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-18 19:40:34 +03:00
|
|
|
namespace Test\AppFramework\Http;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
use OCP\AppFramework\Http;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OCP\AppFramework\Http\Response;
|
2018-05-29 12:10:07 +03:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
class ResponseTest extends \Test\TestCase {
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2013-08-21 02:41:20 +04:00
|
|
|
/**
|
|
|
|
* @var \OCP\AppFramework\Http\Response
|
|
|
|
*/
|
2013-08-17 13:16:48 +04:00
|
|
|
private $childResponse;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-11-11 01:30:38 +03:00
|
|
|
parent::setUp();
|
2013-08-17 13:16:48 +04:00
|
|
|
$this->childResponse = new Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testAddHeader() {
|
2014-05-08 13:47:18 +04:00
|
|
|
$this->childResponse->addHeader(' hello ', 'world');
|
2013-08-17 13:16:48 +04:00
|
|
|
$headers = $this->childResponse->getHeaders();
|
|
|
|
$this->assertEquals('world', $headers['hello']);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-09 18:30:01 +03:00
|
|
|
public function testSetHeaders() {
|
2020-03-26 11:30:18 +03:00
|
|
|
$expected = [
|
2014-10-28 18:34:04 +03:00
|
|
|
'Last-Modified' => 1,
|
|
|
|
'ETag' => 3,
|
|
|
|
'Something-Else' => 'hi'
|
2020-03-26 11:30:18 +03:00
|
|
|
];
|
2014-10-28 18:34:04 +03:00
|
|
|
|
|
|
|
$this->childResponse->setHeaders($expected);
|
|
|
|
$headers = $this->childResponse->getHeaders();
|
2019-04-03 19:42:34 +03:00
|
|
|
$expected['Content-Security-Policy'] = "default-src 'none';base-uri 'none';manifest-src 'self'";
|
2019-07-27 16:33:55 +03:00
|
|
|
$expected['Feature-Policy'] = "autoplay 'none';camera 'none';fullscreen 'none';geolocation 'none';microphone 'none';payment 'none'";
|
2014-10-28 18:34:04 +03:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $headers);
|
|
|
|
}
|
|
|
|
|
2015-02-09 18:30:01 +03:00
|
|
|
public function testOverwriteCsp() {
|
|
|
|
$expected = [
|
2019-01-07 15:13:34 +03:00
|
|
|
'Content-Security-Policy' => "default-src 'none';base-uri 'none';manifest-src 'self';script-src 'self' 'unsafe-inline';style-src 'self' 'unsafe-inline';img-src 'self';font-src 'self' data:;connect-src 'self';media-src 'self'",
|
2015-02-09 18:30:01 +03:00
|
|
|
];
|
|
|
|
$policy = new Http\ContentSecurityPolicy();
|
|
|
|
$policy->allowInlineScript(true);
|
|
|
|
|
|
|
|
$this->childResponse->setContentSecurityPolicy($policy);
|
|
|
|
$headers = $this->childResponse->getHeaders();
|
|
|
|
|
|
|
|
$this->assertEquals(array_merge($expected, $headers), $headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetCsp() {
|
|
|
|
$policy = new Http\ContentSecurityPolicy();
|
|
|
|
$policy->allowInlineScript(true);
|
|
|
|
|
|
|
|
$this->childResponse->setContentSecurityPolicy($policy);
|
|
|
|
$this->assertEquals($policy, $this->childResponse->getContentSecurityPolicy());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetCspEmpty() {
|
2019-04-03 19:42:34 +03:00
|
|
|
$this->assertEquals(new Http\EmptyContentSecurityPolicy(), $this->childResponse->getContentSecurityPolicy());
|
2015-02-09 18:30:01 +03:00
|
|
|
}
|
2014-10-28 18:34:04 +03:00
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testAddHeaderValueNullDeletesIt() {
|
2013-08-17 13:16:48 +04:00
|
|
|
$this->childResponse->addHeader('hello', 'world');
|
|
|
|
$this->childResponse->addHeader('hello', null);
|
2019-07-27 16:33:55 +03:00
|
|
|
$this->assertEquals(3, count($this->childResponse->getHeaders()));
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testCacheHeadersAreDisabledByDefault() {
|
2013-08-17 13:16:48 +04:00
|
|
|
$headers = $this->childResponse->getHeaders();
|
2017-01-09 23:29:59 +03:00
|
|
|
$this->assertEquals('no-cache, no-store, must-revalidate', $headers['Cache-Control']);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-27 16:19:00 +03:00
|
|
|
public function testAddCookie() {
|
|
|
|
$this->childResponse->addCookie('foo', 'bar');
|
|
|
|
$this->childResponse->addCookie('bar', 'foo', new \DateTime('1970-01-01'));
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$expectedResponse = [
|
|
|
|
'foo' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'bar',
|
|
|
|
'expireDate' => null,
|
2020-06-19 10:31:47 +03:00
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
'bar' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'foo',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => new \DateTime('1970-01-01'),
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
|
|
|
];
|
2014-11-27 16:19:00 +03:00
|
|
|
$this->assertEquals($expectedResponse, $this->childResponse->getCookies());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function testSetCookies() {
|
2020-03-26 11:30:18 +03:00
|
|
|
$expected = [
|
|
|
|
'foo' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'bar',
|
|
|
|
'expireDate' => null,
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
'bar' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'foo',
|
|
|
|
'expireDate' => new \DateTime('1970-01-01')
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
|
|
|
];
|
2014-11-27 16:19:00 +03:00
|
|
|
|
|
|
|
$this->childResponse->setCookies($expected);
|
|
|
|
$cookies = $this->childResponse->getCookies();
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $cookies);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function testInvalidateCookie() {
|
2014-11-27 16:19:00 +03:00
|
|
|
$this->childResponse->addCookie('foo', 'bar');
|
|
|
|
$this->childResponse->invalidateCookie('foo');
|
2020-03-26 11:30:18 +03:00
|
|
|
$expected = [
|
|
|
|
'foo' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'expired',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => new \DateTime('1971-01-01'),
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
|
|
|
];
|
2014-11-27 16:19:00 +03:00
|
|
|
|
|
|
|
$cookies = $this->childResponse->getCookies();
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $cookies);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function testInvalidateCookies() {
|
2014-11-27 16:19:00 +03:00
|
|
|
$this->childResponse->addCookie('foo', 'bar');
|
|
|
|
$this->childResponse->addCookie('bar', 'foo');
|
2020-03-26 11:30:18 +03:00
|
|
|
$expected = [
|
|
|
|
'foo' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'bar',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => null,
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
'bar' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'foo',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => null,
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
|
|
|
];
|
2014-11-27 16:19:00 +03:00
|
|
|
$cookies = $this->childResponse->getCookies();
|
|
|
|
$this->assertEquals($expected, $cookies);
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$this->childResponse->invalidateCookies(['foo', 'bar']);
|
|
|
|
$expected = [
|
|
|
|
'foo' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'expired',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => new \DateTime('1971-01-01'),
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
],
|
|
|
|
'bar' => [
|
2014-11-27 16:19:00 +03:00
|
|
|
'value' => 'expired',
|
2020-06-19 10:31:47 +03:00
|
|
|
'expireDate' => new \DateTime('1971-01-01'),
|
|
|
|
'sameSite' => 'Lax',
|
2020-03-26 11:30:18 +03:00
|
|
|
]
|
|
|
|
];
|
2014-11-27 16:19:00 +03:00
|
|
|
|
|
|
|
$cookies = $this->childResponse->getCookies();
|
|
|
|
$this->assertEquals($expected, $cookies);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testRenderReturnNullByDefault() {
|
2013-08-17 13:16:48 +04:00
|
|
|
$this->assertEquals(null, $this->childResponse->render());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testGetStatus() {
|
|
|
|
$default = $this->childResponse->getStatus();
|
|
|
|
|
|
|
|
$this->childResponse->setStatus(Http::STATUS_NOT_FOUND);
|
|
|
|
|
|
|
|
$this->assertEquals(Http::STATUS_OK, $default);
|
|
|
|
$this->assertEquals(Http::STATUS_NOT_FOUND, $this->childResponse->getStatus());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testGetEtag() {
|
|
|
|
$this->childResponse->setEtag('hi');
|
2014-02-27 12:39:34 +04:00
|
|
|
$this->assertSame('hi', $this->childResponse->getEtag());
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testGetLastModified() {
|
|
|
|
$lastModified = new \DateTime(null, new \DateTimeZone('GMT'));
|
|
|
|
$lastModified->setTimestamp(1);
|
|
|
|
$this->childResponse->setLastModified($lastModified);
|
|
|
|
$this->assertEquals($lastModified, $this->childResponse->getLastModified());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testCacheSecondsZero() {
|
|
|
|
$this->childResponse->cacheFor(0);
|
2014-10-28 18:34:04 +03:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
$headers = $this->childResponse->getHeaders();
|
2015-06-15 19:35:41 +03:00
|
|
|
$this->assertEquals('no-cache, no-store, must-revalidate', $headers['Cache-Control']);
|
2018-05-29 12:10:07 +03:00
|
|
|
$this->assertFalse(isset($headers['Pragma']));
|
|
|
|
$this->assertFalse(isset($headers['Expires']));
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testCacheSeconds() {
|
2018-05-29 12:10:07 +03:00
|
|
|
$time = $this->createMock(ITimeFactory::class);
|
|
|
|
$time->method('getTime')
|
|
|
|
->willReturn('1234567');
|
|
|
|
|
|
|
|
$this->overwriteService(ITimeFactory::class, $time);
|
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
$this->childResponse->cacheFor(33);
|
2014-10-28 18:34:04 +03:00
|
|
|
|
2013-08-17 13:16:48 +04:00
|
|
|
$headers = $this->childResponse->getHeaders();
|
2018-05-29 12:10:07 +03:00
|
|
|
$this->assertEquals('max-age=33, must-revalidate', $headers['Cache-Control']);
|
|
|
|
$this->assertEquals('public', $headers['Pragma']);
|
|
|
|
$this->assertEquals('Thu, 15 Jan 1970 06:56:40 +0000', $headers['Expires']);
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function testEtagLastModifiedHeaders() {
|
|
|
|
$lastModified = new \DateTime(null, new \DateTimeZone('GMT'));
|
|
|
|
$lastModified->setTimestamp(1);
|
|
|
|
$this->childResponse->setLastModified($lastModified);
|
|
|
|
$headers = $this->childResponse->getHeaders();
|
|
|
|
$this->assertEquals('Thu, 01 Jan 1970 00:00:01 +0000', $headers['Last-Modified']);
|
|
|
|
}
|
|
|
|
|
2014-03-10 02:01:16 +04:00
|
|
|
public function testChainability() {
|
|
|
|
$lastModified = new \DateTime(null, new \DateTimeZone('GMT'));
|
|
|
|
$lastModified->setTimestamp(1);
|
|
|
|
|
|
|
|
$this->childResponse->setEtag('hi')
|
|
|
|
->setStatus(Http::STATUS_NOT_FOUND)
|
|
|
|
->setLastModified($lastModified)
|
|
|
|
->cacheFor(33)
|
|
|
|
->addHeader('hello', 'world');
|
|
|
|
|
|
|
|
$headers = $this->childResponse->getHeaders();
|
|
|
|
|
|
|
|
$this->assertEquals('world', $headers['hello']);
|
|
|
|
$this->assertEquals(Http::STATUS_NOT_FOUND, $this->childResponse->getStatus());
|
|
|
|
$this->assertEquals('hi', $this->childResponse->getEtag());
|
|
|
|
$this->assertEquals('Thu, 01 Jan 1970 00:00:01 +0000', $headers['Last-Modified']);
|
2020-05-12 12:49:20 +03:00
|
|
|
$this->assertEquals('private, max-age=33, must-revalidate',
|
2014-03-10 02:01:16 +04:00
|
|
|
$headers['Cache-Control']);
|
|
|
|
}
|
2013-08-17 13:16:48 +04:00
|
|
|
|
2017-04-13 23:50:44 +03:00
|
|
|
public function testThrottle() {
|
|
|
|
$this->assertFalse($this->childResponse->isThrottled());
|
|
|
|
$this->childResponse->throttle();
|
|
|
|
$this->assertTrue($this->childResponse->isThrottled());
|
|
|
|
}
|
2017-07-27 15:14:20 +03:00
|
|
|
|
|
|
|
public function testGetThrottleMetadata() {
|
|
|
|
$this->childResponse->throttle(['foo' => 'bar']);
|
|
|
|
$this->assertSame(['foo' => 'bar'], $this->childResponse->getThrottleMetadata());
|
|
|
|
}
|
2013-08-17 13:16:48 +04:00
|
|
|
}
|