| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.5.0
- * @license https://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Http\Cookie;
- use Cake\Chronos\Chronos;
- use Cake\Http\Cookie\Cookie;
- use Cake\Http\Cookie\CookieInterface;
- use Cake\Http\Cookie\SameSiteEnum;
- use Cake\TestSuite\TestCase;
- use DateTimeInterface;
- use InvalidArgumentException;
- use PHPUnit\Framework\Attributes\DataProvider;
- use ValueError;
- /**
- * HTTP cookies test.
- */
- class CookieTest extends TestCase
- {
- /**
- * Generate invalid cookie names.
- *
- * @return array
- */
- public static function invalidNameProvider(): array
- {
- return [
- ['no='],
- ["no\rnewline"],
- ["no\nnewline"],
- ["no\ttab"],
- ['no,comma'],
- ['no;semi'],
- ];
- }
- /**
- * Test invalid cookie name
- */
- #[DataProvider('invalidNameProvider')]
- public function testValidateNameInvalidChars(string $name): void
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage('contains invalid characters.');
- new Cookie($name, 'value');
- }
- /**
- * Test empty cookie name
- */
- public function testValidateNameEmptyName(): void
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage('The cookie name cannot be empty.');
- new Cookie('', '');
- }
- /**
- * Tests the header value
- */
- public function testToHeaderValue(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $result = $cookie->toHeaderValue();
- $this->assertSame('cakephp=cakephp-rocks; path=/', $result);
- $date = Chronos::createFromFormat('m/d/Y h:i:s', '12/1/2027 12:00:00');
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $cookie = $cookie->withDomain('cakephp.org')
- ->withExpiry($date)
- ->withHttpOnly(true)
- ->withSameSite(CookieInterface::SAMESITE_STRICT)
- ->withSecure(true);
- $result = $cookie->toHeaderValue();
- $expected = 'cakephp=cakephp-rocks; expires=Wed, 01-Dec-2027 12:00:00 GMT; path=/; domain=cakephp.org; samesite=Strict; secure; httponly';
- $this->assertSame($expected, $result);
- }
- /**
- * Test getting the value from the cookie
- */
- public function testGetValue(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $result = $cookie->getValue();
- $this->assertSame('cakephp-rocks', $result);
- $cookie = new Cookie('cakephp', '');
- $result = $cookie->getValue();
- $this->assertSame('', $result);
- }
- /**
- * Test setting values in cookies
- */
- public function testWithValue(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withValue('new');
- $this->assertNotSame($new, $cookie, 'Should make a clone');
- $this->assertSame('cakephp-rocks', $cookie->getValue(), 'old instance not modified');
- $this->assertSame('new', $new->getValue());
- }
- /**
- * Test setting domain in cookies
- */
- public function testWithDomain(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withDomain('example.com');
- $this->assertNotSame($new, $cookie, 'Should make a clone');
- $this->assertStringNotContainsString('example.com', $cookie->toHeaderValue(), 'old instance not modified');
- $this->assertStringContainsString('domain=example.com', $new->toHeaderValue());
- }
- /**
- * Test setting path in cookies
- */
- public function testWithPath(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withPath('/api');
- $this->assertNotSame($new, $cookie, 'Should make a clone');
- $this->assertStringNotContainsString('path=/api', $cookie->toHeaderValue(), 'old instance not modified');
- $this->assertStringContainsString('path=/api', $new->toHeaderValue());
- }
- /**
- * Test setting SameSite in cookies
- */
- public function testWithSameSite(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withSameSite(CookieInterface::SAMESITE_LAX);
- $this->assertNotSame($new, $cookie, 'Should make a clone');
- $this->assertStringNotContainsString('samesite=Lax', $cookie->toHeaderValue(), 'old instance not modified');
- $this->assertStringContainsString('samesite=Lax', $new->toHeaderValue());
- $new = $cookie->withSameSite(SameSiteEnum::STRICT);
- $this->assertStringContainsString('samesite=Strict', $new->toHeaderValue());
- }
- /**
- * Test setting SameSite in cookies
- */
- public function testWithSameSiteException(): void
- {
- $this->expectException(ValueError::class);
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $cookie->withSameSite('invalid');
- }
- public function testGetSameSite(): void
- {
- $cookie = new Cookie(name: 'cakephp', value: 'cakephp-rocks', sameSite: 'NONE');
- $this->assertSame(SameSiteEnum::NONE, $cookie->getSameSite());
- }
- /**
- * Test default path in cookies
- */
- public function testDefaultPath(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $this->assertStringContainsString('path=/', $cookie->toHeaderValue());
- }
- /**
- * Test setting httponly in cookies
- */
- public function testWithHttpOnly(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withHttpOnly(true);
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertFalse($cookie->isHttpOnly());
- $this->assertTrue($new->isHttpOnly());
- }
- /**
- * Test setting secure in cookies
- */
- public function testWithSecure(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withSecure(true);
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertFalse($cookie->isSecure());
- $this->assertTrue($new->isSecure());
- }
- /**
- * Test the never expiry method
- */
- public function testWithNeverExpire(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withNeverExpire();
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertStringContainsString('01-Jan-2038', $new->toHeaderValue());
- }
- /**
- * Test the expired method
- */
- public function testWithExpired(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withExpired();
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertStringNotContainsString('expiry', $cookie->toHeaderValue());
- $this->assertStringContainsString('01-Jan-1970', $new->toHeaderValue());
- }
- /**
- * Test the expired method
- */
- public function testWithExpiredNotUtc(): void
- {
- date_default_timezone_set('Europe/Paris');
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withExpired();
- date_default_timezone_set('UTC');
- $this->assertStringContainsString('01-Jan-1970 00:00:01 GMT+0000', $new->toHeaderValue());
- }
- /**
- * Test the withExpiry method
- */
- public function testWithExpiry(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withExpiry(Chronos::createFromDate(2022, 6, 15));
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertStringNotContainsString('expires', $cookie->toHeaderValue());
- $this->assertStringContainsString('expires=Wed, 15-Jun-2022', $new->toHeaderValue());
- }
- /**
- * Test the withExpiry method changes timezone
- */
- public function testWithExpiryChangesTimezone(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $date = Chronos::createFromDate(2022, 6, 15);
- $date = $date->setTimezone('America/New_York');
- $new = $cookie->withExpiry($date);
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertStringNotContainsString('expires', $cookie->toHeaderValue());
- $this->assertStringContainsString('expires=Wed, 15-Jun-2022', $new->toHeaderValue());
- $this->assertStringContainsString('GMT', $new->toHeaderValue());
- $this->assertSame((int)$date->format('U'), $new->getExpiresTimestamp());
- }
- /**
- * Test the isExpired method
- */
- public function testIsExpired(): void
- {
- $date = Chronos::now();
- $cookie = new Cookie('cakephp', 'yay');
- $this->assertFalse($cookie->isExpired($date));
- $cookie = new Cookie('cakephp', 'yay', $date);
- $this->assertFalse($cookie->isExpired($date), 'same time, not expired');
- $date = $date->modify('+10 seconds');
- $this->assertTrue($cookie->isExpired($date), 'future now');
- $date = $date->modify('-1 minute');
- $this->assertFalse($cookie->isExpired($date), 'expires later');
- }
- /**
- * Test the withName method
- */
- public function testWithName(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $new = $cookie->withName('user');
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertNotSame('user', $cookie->getName());
- $this->assertSame('user', $new->getName());
- }
- /**
- * Test the withAddedValue method
- */
- public function testWithAddedValue(): void
- {
- $cookie = new Cookie('cakephp', '{"type":"mvc", "icing": true}');
- $new = $cookie->withAddedValue('type', 'mvc')
- ->withAddedValue('user.name', 'mark');
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertNull($cookie->read('user.name'));
- $this->assertSame('mvc', $new->read('type'));
- $this->assertSame('mark', $new->read('user.name'));
- }
- /**
- * Test the withoutAddedValue method
- */
- public function testWithoutAddedValue(): void
- {
- $cookie = new Cookie('cakephp', '{"type":"mvc", "user": {"name":"mark"}}');
- $new = $cookie->withoutAddedValue('type')
- ->withoutAddedValue('user.name');
- $this->assertNotSame($new, $cookie, 'Should clone');
- $this->assertNotNull($cookie->read('type'));
- $this->assertNull($new->read('type'));
- $this->assertNull($new->read('user.name'));
- }
- /**
- * Test check() with serialized source data.
- */
- public function testCheckStringSourceData(): void
- {
- $cookie = new Cookie('cakephp', '{"type":"mvc", "user": {"name":"mark"}}');
- $this->assertTrue($cookie->check('type'));
- $this->assertTrue($cookie->check('user.name'));
- $this->assertFalse($cookie->check('nope'));
- $this->assertFalse($cookie->check('user.nope'));
- }
- /**
- * Test check() with array source data.
- */
- public function testCheckArraySourceData(): void
- {
- $data = [
- 'type' => 'mvc',
- 'user' => ['name' => 'mark'],
- ];
- $cookie = new Cookie('cakephp', $data);
- $this->assertTrue($cookie->check('type'));
- $this->assertTrue($cookie->check('user.name'));
- $this->assertFalse($cookie->check('nope'));
- $this->assertFalse($cookie->check('user.nope'));
- }
- /**
- * test read() and set on different types
- */
- public function testReadExpandsOnDemand(): void
- {
- $data = [
- 'username' => 'florian',
- 'profile' => [
- 'profession' => 'developer',
- ],
- ];
- $cookie = new Cookie('cakephp', json_encode($data));
- $this->assertFalse($cookie->isExpanded());
- $this->assertSame('developer', $cookie->read('profile.profession'));
- $this->assertTrue($cookie->isExpanded(), 'Cookies expand when read.');
- $cookie = $cookie->withValue(json_encode($data));
- $this->assertTrue($cookie->check('profile.profession'), 'Cookies expand when read.');
- $this->assertTrue($cookie->isExpanded());
- $cookie = $cookie->withValue(json_encode($data))
- ->withAddedValue('face', 'punch');
- $this->assertTrue($cookie->isExpanded());
- $this->assertSame('punch', $cookie->read('face'));
- }
- /**
- * test read() on structured data.
- */
- public function testReadComplexData(): void
- {
- $data = [
- 'username' => 'florian',
- 'profile' => [
- 'profession' => 'developer',
- ],
- ];
- $cookie = new Cookie('cakephp', $data);
- $result = $cookie->getValue();
- $this->assertEquals($data, $result);
- $result = $cookie->read('foo');
- $this->assertNull($result);
- $result = $cookie->read();
- $this->assertEquals($data, $result);
- $result = $cookie->read('profile.profession');
- $this->assertSame('developer', $result);
- }
- /**
- * Test reading complex data serialized in 1.x and early 2.x
- */
- public function testReadLegacyComplexData(): void
- {
- $data = 'key|value,key2|value2';
- $cookie = new Cookie('cakephp', $data);
- $this->assertSame('value', $cookie->read('key'));
- $this->assertNull($cookie->read('nope'));
- }
- /**
- * Test that toHeaderValue() collapses data.
- */
- public function testToHeaderValueCollapsesComplexData(): void
- {
- $data = [
- 'username' => 'florian',
- 'profile' => [
- 'profession' => 'developer',
- ],
- ];
- $cookie = new Cookie('cakephp', $data);
- $this->assertSame('developer', $cookie->read('profile.profession'));
- $expected = '{"username":"florian","profile":{"profession":"developer"}}';
- $this->assertStringContainsString(urlencode($expected), $cookie->toHeaderValue());
- }
- /**
- * Tests getting the id
- */
- public function testGetId(): void
- {
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $this->assertSame('cakephp;;/', $cookie->getId());
- $cookie = new Cookie('CAKEPHP', 'cakephp-rocks');
- $this->assertSame('CAKEPHP;;/', $cookie->getId());
- $cookie = new Cookie('test', 'val', null, '/path', 'example.com');
- $this->assertSame('test;example.com;/path', $cookie->getId());
- }
- public function testCreateFromHeaderStringInvalidSamesite(): void
- {
- $header = 'cakephp=cakephp-rocks; expires=Wed, 01-Dec-2027 12:00:00 GMT; path=/; domain=cakephp.org; samesite=invalid; secure; httponly';
- $result = Cookie::createFromHeaderString($header);
- // Ignore invalid value when parsing headers
- // https://tools.ietf.org/html/draft-west-first-party-cookies-07#section-4.1
- $this->assertNull($result->getSameSite());
- }
- public function testCreateFromHeaderStringEmptyValue(): void
- {
- // Invalid cookie with no = separator or value.
- $header = 'cakephp; expires=Wed, 01-Dec-2027 12:00:00 GMT; path=/; domain=cakephp.org;';
- $result = Cookie::createFromHeaderString($header);
- $this->assertSame('', $result->getValue());
- }
- public function testDefaults(): void
- {
- Cookie::setDefaults(['path' => '/cakephp', 'expires' => time()]);
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $this->assertSame('/cakephp', $cookie->getPath());
- $this->assertInstanceOf(DateTimeInterface::class, $cookie->getExpiry());
- Cookie::setDefaults(['path' => '/', 'expires' => null]);
- $cookie = new Cookie('cakephp', 'cakephp-rocks');
- $this->assertSame('/', $cookie->getPath());
- $this->assertNull($cookie->getExpiry());
- }
- public function testInvalidSameSiteForDefaults(): void
- {
- $this->expectException(ValueError::class);
- Cookie::setDefaults(['samesite' => 'ompalompa']);
- new Cookie('cakephp', 'cakephp-rocks');
- }
- }
|