| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 3.5.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Http\Cookie;
- use Cake\Http\Client\Request as ClientRequest;
- use Cake\Http\Cookie\Cookie;
- use Cake\Http\Cookie\CookieCollection;
- use Cake\Http\Response;
- use Cake\Http\ServerRequest;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Security;
- use DateTime;
- /**
- * Cookie collection test.
- */
- class CookieCollectionTest extends TestCase
- {
- /**
- * Test constructor
- *
- * @return void
- */
- public function testConstructorWithEmptyArray()
- {
- $collection = new CookieCollection([]);
- $this->assertCount(0, $collection);
- }
- /**
- * Test valid cookies
- *
- * @return void
- */
- public function testConstructorWithCookieArray()
- {
- $cookies = [
- new Cookie('one', 'one'),
- new Cookie('two', 'two'),
- ];
- $collection = new CookieCollection($cookies);
- $this->assertCount(2, $collection);
- }
- /**
- * Test iteration
- *
- * @return void
- */
- public function testIteration()
- {
- $cookies = [
- new Cookie('remember_me', 'a'),
- new Cookie('gtm', 'b'),
- new Cookie('three', 'tree'),
- ];
- $collection = new CookieCollection($cookies);
- $names = [];
- foreach ($collection as $cookie) {
- $names[] = $cookie->getName();
- }
- $this->assertSame(['remember_me', 'gtm', 'three'], $names);
- }
- /**
- * Test adding cookies
- *
- * @return void
- */
- public function testAdd()
- {
- $cookies = [];
- $collection = new CookieCollection($cookies);
- $this->assertCount(0, $collection);
- $remember = new Cookie('remember_me', 'a');
- $new = $collection->add($remember);
- $this->assertNotSame($new, $collection->add($remember));
- $this->assertCount(0, $collection, 'Original instance not modified');
- $this->assertCount(1, $new);
- $this->assertFalse($collection->has('remember_me'), 'Original instance not modified');
- $this->assertTrue($new->has('remember_me'));
- $this->assertSame($remember, $new->get('remember_me'));
- }
- /**
- * Cookie collections need to support duplicate cookie names because
- * of use cases in Http\Client
- *
- * @return void
- */
- public function testAddDuplicates()
- {
- $remember = new Cookie('remember_me', 'yes');
- $rememberNo = new Cookie('remember_me', 'no', null, '/path2');
- $this->assertNotEquals($remember->getId(), $rememberNo->getId(), 'Cookies should have different ids');
- $collection = new CookieCollection([]);
- $new = $collection->add($remember)->add($rememberNo);
- $this->assertCount(2, $new, 'Cookies with different ids create duplicates.');
- $this->assertNotSame($new, $collection);
- $this->assertSame($remember, $new->get('remember_me'), 'get() fetches first cookie');
- }
- /**
- * Test has()
- *
- * @return void
- */
- public function testHas()
- {
- $cookies = [
- new Cookie('remember_me', 'a'),
- new Cookie('gtm', 'b'),
- ];
- $collection = new CookieCollection($cookies);
- $this->assertFalse($collection->has('nope'));
- $this->assertTrue($collection->has('remember_me'));
- $this->assertTrue($collection->has('REMEMBER_me'), 'case insensitive cookie names');
- }
- /**
- * Test removing cookies
- *
- * @return void
- */
- public function testRemove()
- {
- $cookies = [
- new Cookie('remember_me', 'a'),
- new Cookie('gtm', 'b'),
- ];
- $collection = new CookieCollection($cookies);
- $this->assertInstanceOf(Cookie::class, $collection->get('REMEMBER_me'), 'case insensitive cookie names');
- $new = $collection->remove('remember_me');
- $this->assertTrue($collection->has('remember_me'), 'old instance not modified');
- $this->assertNotSame($new, $collection);
- $this->assertFalse($new->has('remember_me'), 'should be removed');
- $this->assertNull($new->get('remember_me'), 'should be removed');
- }
- /**
- * Test getting cookies by name
- *
- * @return void
- */
- public function testGetByName()
- {
- $cookies = [
- new Cookie('remember_me', 'a'),
- new Cookie('gtm', 'b'),
- ];
- $collection = new CookieCollection($cookies);
- $this->assertNull($collection->get('nope'));
- $this->assertInstanceOf(Cookie::class, $collection->get('REMEMBER_me'), 'case insensitive cookie names');
- $this->assertInstanceOf(Cookie::class, $collection->get('remember_me'));
- $this->assertSame($cookies[0], $collection->get('remember_me'));
- }
- /**
- * Test that the constructor takes only an array of objects implementing
- * the CookieInterface
- *
- * @return void
- */
- public function testConstructorWithInvalidCookieObjects()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('Expected `Cake\Http\Cookie\CookieCollection[]` as $cookies but instead got `array` at index 1');
- $array = [
- new Cookie('one', 'one'),
- [],
- ];
- new CookieCollection($array);
- }
- /**
- * Test adding cookies from a response.
- *
- * @return void
- */
- public function testAddFromResponse()
- {
- $collection = new CookieCollection();
- $request = new ServerRequest([
- 'url' => '/app',
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', 'test=value')
- ->withAddedHeader('Set-Cookie', 'expiring=soon; Expires=Wed, 14-Jun-2023 10:18:14 GMT; Path=/; HttpOnly; Secure;')
- ->withAddedHeader('Set-Cookie', 'session=123abc; Domain=www.example.com')
- ->withAddedHeader('Set-Cookie', 'maxage=value; Max-Age=60; Expires=Wed, 09-Jun-2021 10:18:14 GMT;');
- $new = $collection->addFromResponse($response, $request);
- $this->assertNotSame($new, $collection, 'Should clone collection');
- $this->assertTrue($new->has('test'));
- $this->assertTrue($new->has('session'));
- $this->assertTrue($new->has('expiring'));
- $this->assertSame('value', $new->get('test')->getValue());
- $this->assertSame('123abc', $new->get('session')->getValue());
- $this->assertSame('soon', $new->get('expiring')->getValue());
- $this->assertSame('value', $new->get('maxage')->getValue());
- $this->assertSame('/app', $new->get('test')->getPath(), 'cookies should inherit request path');
- $this->assertSame('/', $new->get('expiring')->getPath(), 'path attribute should be used.');
- $this->assertNull($new->get('test')->getExpiry(), 'No expiry');
- $this->assertSame(
- '2023-06-14 10:18:14',
- $new->get('expiring')->getExpiry()->format('Y-m-d H:i:s'),
- 'Has expiry'
- );
- $session = $new->get('session');
- $this->assertNull($session->getExpiry(), 'No expiry');
- $this->assertSame('www.example.com', $session->getDomain(), 'Has domain');
- $maxage = $new->get('maxage');
- $this->assertLessThanOrEqual(
- (new DateTime('60 seconds'))->format('Y-m-d H:i:s'),
- $maxage->getExpiry()->format('Y-m-d H:i:s'),
- 'Has max age'
- );
- }
- /**
- * Test adding cookies that contain URL encoded data
- *
- * @return void
- */
- public function testAddFromResponseValueUrldecodeData()
- {
- $collection = new CookieCollection();
- $request = new ServerRequest([
- 'url' => '/app',
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', 'test=val%3Bue; Path=/example; Secure;');
- $new = $collection->addFromResponse($response, $request);
- $this->assertTrue($new->has('test'));
- $test = $new->get('test');
- $this->assertSame('val;ue', $test->getValue());
- $this->assertSame('/example', $test->getPath());
- }
- /**
- * Test adding cookies from a response ignores empty headers
- *
- * @return void
- */
- public function testAddFromResponseIgnoreEmpty()
- {
- $collection = new CookieCollection();
- $request = new ServerRequest([
- 'url' => '/app',
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', '');
- $new = $collection->addFromResponse($response, $request);
- $this->assertCount(0, $new, 'no cookies parsed');
- }
- /**
- * Test adding cookies from a response ignores expired cookies
- *
- * @return void
- */
- public function testAddFromResponseIgnoreExpired()
- {
- $collection = new CookieCollection();
- $request = new ServerRequest([
- 'url' => '/app',
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', 'test=value')
- ->withAddedHeader('Set-Cookie', 'expired=soon; Expires=Wed, 09-Jun-2012 10:18:14 GMT; Path=/;');
- $new = $collection->addFromResponse($response, $request);
- $this->assertFalse($new->has('expired'), 'Should drop expired cookies');
- }
- /**
- * Test adding cookies from a response removes existing cookies if
- * the new response marks them as expired.
- *
- * @return void
- */
- public function testAddFromResponseRemoveExpired()
- {
- $collection = new CookieCollection([
- new Cookie('expired', 'not yet', null, '/', 'example.com'),
- ]);
- $request = new ServerRequest([
- 'url' => '/app',
- 'environment' => [
- 'HTTP_HOST' => 'example.com',
- ],
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', 'test=value')
- ->withAddedHeader('Set-Cookie', 'expired=soon; Expires=Wed, 09-Jun-2012 10:18:14 GMT; Path=/;');
- $new = $collection->addFromResponse($response, $request);
- $this->assertFalse($new->has('expired'), 'Should drop expired cookies');
- }
- /**
- * Test adding cookies from a response with bad expires values
- *
- * @return void
- */
- public function testAddFromResponseInvalidExpires()
- {
- $collection = new CookieCollection();
- $request = new ServerRequest([
- 'url' => '/app',
- ]);
- $response = (new Response())
- ->withAddedHeader('Set-Cookie', 'test=value')
- ->withAddedHeader('Set-Cookie', 'expired=no; Expires=1w; Path=/; HttpOnly; Secure;');
- $new = $collection->addFromResponse($response, $request);
- $this->assertTrue($new->has('test'));
- $this->assertTrue($new->has('expired'));
- $expired = $new->get('expired');
- $this->assertNull($expired->getExpiry());
- }
- /**
- * Test adding cookies from responses updates cookie values.
- *
- * @return void
- */
- public function testAddFromResponseUpdateExisting()
- {
- $collection = new CookieCollection([
- new Cookie('key', 'old value', null, '/', 'example.com'),
- ]);
- $request = new ServerRequest([
- 'url' => '/',
- 'environment' => [
- 'HTTP_HOST' => 'example.com',
- ],
- ]);
- $response = (new Response())->withAddedHeader('Set-Cookie', 'key=new value');
- $new = $collection->addFromResponse($response, $request);
- $this->assertTrue($new->has('key'));
- $this->assertSame('new value', $new->get('key')->getValue());
- }
- /**
- * Test adding cookies from the collection to request.
- *
- * @return void
- */
- public function testAddToRequest()
- {
- $collection = new CookieCollection();
- $collection = $collection
- ->add(new Cookie('default', '1', null, '/', 'example.com'))
- ->add(new Cookie('api', 'A', null, '/api', 'example.com'))
- ->add(new Cookie('blog', 'b', null, '/blog', 'blog.example.com'))
- ->add(new Cookie('expired', 'ex', new DateTime('-2 seconds'), '/', 'example.com'));
- $request = new ClientRequest('http://example.com/api');
- $request = $collection->addToRequest($request);
- $this->assertSame('default=1; api=A', $request->getHeaderLine('Cookie'));
- $request = new ClientRequest('http://example.com/');
- $request = $collection->addToRequest($request);
- $this->assertSame('default=1', $request->getHeaderLine('Cookie'));
- $request = new ClientRequest('http://example.com');
- $request = $collection->addToRequest($request);
- $this->assertSame('default=1', $request->getHeaderLine('Cookie'));
- $request = new ClientRequest('http://example.com/blog');
- $request = $collection->addToRequest($request);
- $this->assertSame('default=1', $request->getHeaderLine('Cookie'), 'domain matching should apply');
- $request = new ClientRequest('http://foo.blog.example.com/blog');
- $request = $collection->addToRequest($request);
- $this->assertSame('default=1; blog=b', $request->getHeaderLine('Cookie'));
- }
- /**
- * Test adding no cookies
- *
- * @return void
- */
- public function testAddToRequestNoCookies()
- {
- $collection = new CookieCollection();
- $request = new ClientRequest('http://example.com/api');
- $request = $collection->addToRequest($request);
- $this->assertFalse($request->hasHeader('Cookie'), 'No header should be set.');
- }
- /**
- * Testing the cookie size limit warning
- *
- * @expectedException \PHPUnit\Framework\Error\Warning
- * @expectedExceptionMessage The cookie `default` exceeds the recommended maximum cookie length of 4096 bytes.
- * @return void
- */
- public function testCookieSizeWarning()
- {
- $string = Security::insecureRandomBytes(9000);
- $collection = new CookieCollection();
- $collection = $collection
- ->add(new Cookie('default', $string, null, '/', 'example.com'));
- $request = new ClientRequest('http://example.com/api');
- $collection->addToRequest($request);
- }
- /**
- * Test adding cookies from the collection to request.
- *
- * @return void
- */
- public function testAddToRequestExtraCookies()
- {
- $collection = new CookieCollection();
- $collection = $collection
- ->add(new Cookie('api', 'A', null, '/api', 'example.com'))
- ->add(new Cookie('blog', 'b', null, '/blog', 'blog.example.com'))
- ->add(new Cookie('expired', 'ex', new DateTime('-2 seconds'), '/', 'example.com'));
- $request = new ClientRequest('http://example.com/api');
- $request = $collection->addToRequest($request, ['b' => 'B']);
- $this->assertSame('api=A; b=B', $request->getHeaderLine('Cookie'));
- $request = new ClientRequest('http://example.com/api');
- $request = $collection->addToRequest($request, ['api' => 'custom']);
- $this->assertSame('api=custom', $request->getHeaderLine('Cookie'), 'Extra cookies overwrite values in jar');
- }
- /**
- * Test adding cookies ignores leading dot
- *
- * @return void
- */
- public function testAddToRequestLeadingDot()
- {
- $collection = new CookieCollection();
- $collection = $collection
- ->add(new Cookie('public', 'b', null, '/', '.example.com'));
- $request = new ClientRequest('http://example.com/blog');
- $request = $collection->addToRequest($request);
- $this->assertSame('public=b', $request->getHeaderLine('Cookie'));
- }
- /**
- * Test adding cookies checks the secure crumb
- *
- * @return void
- */
- public function testAddToRequestSecureCrumb()
- {
- $collection = new CookieCollection();
- $collection = $collection
- ->add(new Cookie('secret', 'A', null, '/', 'example.com', true))
- ->add(new Cookie('public', 'b', null, '/', '.example.com', false));
- $request = new ClientRequest('https://example.com/api');
- $request = $collection->addToRequest($request);
- $this->assertSame('secret=A; public=b', $request->getHeaderLine('Cookie'));
- // no HTTPS set.
- $request = new ClientRequest('http://example.com/api');
- $request = $collection->addToRequest($request);
- $this->assertSame('public=b', $request->getHeaderLine('Cookie'));
- }
- /**
- * test createFromHeader() building cookies from a header string.
- *
- * @return void
- */
- public function testCreateFromHeader()
- {
- $header = [
- 'http=name; HttpOnly; Secure;',
- 'expires=expiring; Expires=Wed, 15-Jun-2022 10:22:22; Path=/api; HttpOnly; Secure;',
- 'expired=expired; version=1; Expires=Wed, 15-Jun-2015 10:22:22;',
- ];
- $cookies = CookieCollection::createFromHeader($header);
- $this->assertCount(3, $cookies);
- $this->assertTrue($cookies->has('http'));
- $this->assertTrue($cookies->has('expires'));
- $this->assertFalse($cookies->has('version'));
- $this->assertTrue($cookies->has('expired'), 'Expired cookies should be present');
- }
- /**
- * test createFromServerRequest() building cookies from a header string.
- *
- * @return void
- */
- public function testCreateFromServerRequest()
- {
- $request = new ServerRequest(['cookies' => ['name' => 'val', 'cakephp' => 'rocks']]);
- $cookies = CookieCollection::createFromServerRequest($request);
- $this->assertCount(2, $cookies);
- $this->assertTrue($cookies->has('name'));
- $this->assertTrue($cookies->has('cakephp'));
- $cookie = $cookies->get('name');
- $this->assertSame('val', $cookie->getValue());
- $this->assertSame('/', $cookie->getPath());
- $this->assertSame('', $cookie->getDomain(), 'No domain on request cookies');
- }
- }
|