123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <?php
- namespace GuzzleHttp\Tests\CookieJar;
- use GuzzleHttp\Cookie\SetCookie;
- use PHPUnit\Framework\TestCase;
- /**
- * @covers \GuzzleHttp\Cookie\SetCookie
- */
- class SetCookieTest extends TestCase
- {
- public function testInitializesDefaultValues()
- {
- $cookie = new SetCookie();
- self::assertSame('/', $cookie->getPath());
- }
- public function testConvertsDateTimeMaxAgeToUnixTimestamp()
- {
- $cookie = new SetCookie(['Expires' => 'November 20, 1984']);
- self::assertIsInt($cookie->getExpires());
- }
- public function testAddsExpiresBasedOnMaxAge()
- {
- $t = \time();
- $cookie = new SetCookie(['Max-Age' => 100]);
- self::assertEquals($t + 100, $cookie->getExpires());
- }
- public function testHoldsValues()
- {
- $t = \time();
- $data = [
- 'Name' => 'foo',
- 'Value' => 'baz',
- 'Path' => '/bar',
- 'Domain' => 'baz.com',
- 'Expires' => $t,
- 'Max-Age' => 100,
- 'Secure' => true,
- 'Discard' => true,
- 'HttpOnly' => true,
- 'foo' => 'baz',
- 'bar' => 'bam',
- ];
- $cookie = new SetCookie($data);
- self::assertEquals($data, $cookie->toArray());
- self::assertSame('foo', $cookie->getName());
- self::assertSame('baz', $cookie->getValue());
- self::assertSame('baz.com', $cookie->getDomain());
- self::assertSame('/bar', $cookie->getPath());
- self::assertSame($t, $cookie->getExpires());
- self::assertSame(100, $cookie->getMaxAge());
- self::assertTrue($cookie->getSecure());
- self::assertTrue($cookie->getDiscard());
- self::assertTrue($cookie->getHttpOnly());
- self::assertSame('baz', $cookie->toArray()['foo']);
- self::assertSame('bam', $cookie->toArray()['bar']);
- $cookie->setName('a');
- $cookie->setValue('b');
- $cookie->setPath('c');
- $cookie->setDomain('bar.com');
- $cookie->setExpires(10);
- $cookie->setMaxAge(200);
- $cookie->setSecure(false);
- $cookie->setHttpOnly(false);
- $cookie->setDiscard(false);
- self::assertSame('a', $cookie->getName());
- self::assertSame('b', $cookie->getValue());
- self::assertSame('c', $cookie->getPath());
- self::assertSame('bar.com', $cookie->getDomain());
- self::assertSame(10, $cookie->getExpires());
- self::assertSame(200, $cookie->getMaxAge());
- self::assertFalse($cookie->getSecure());
- self::assertFalse($cookie->getDiscard());
- self::assertFalse($cookie->getHttpOnly());
- }
- public function testDeterminesIfExpired()
- {
- $c = new SetCookie();
- $c->setExpires(10);
- self::assertTrue($c->isExpired());
- $c->setExpires(\time() + 10000);
- self::assertFalse($c->isExpired());
- }
- public function testMatchesDomain()
- {
- $cookie = new SetCookie();
- self::assertTrue($cookie->matchesDomain('baz.com'));
- $cookie->setDomain('baz.com');
- self::assertTrue($cookie->matchesDomain('baz.com'));
- self::assertFalse($cookie->matchesDomain('bar.com'));
- $cookie->setDomain('.baz.com');
- self::assertTrue($cookie->matchesDomain('.baz.com'));
- self::assertTrue($cookie->matchesDomain('foo.baz.com'));
- self::assertFalse($cookie->matchesDomain('baz.bar.com'));
- self::assertTrue($cookie->matchesDomain('baz.com'));
- $cookie->setDomain('.127.0.0.1');
- self::assertTrue($cookie->matchesDomain('127.0.0.1'));
- $cookie->setDomain('127.0.0.1');
- self::assertTrue($cookie->matchesDomain('127.0.0.1'));
- $cookie->setDomain('.com.');
- self::assertFalse($cookie->matchesDomain('baz.com'));
- $cookie->setDomain('.local');
- self::assertTrue($cookie->matchesDomain('example.local'));
- $cookie->setDomain('example.com/'); // malformed domain
- self::assertFalse($cookie->matchesDomain('example.com'));
- }
- public function pathMatchProvider()
- {
- return [
- ['/foo', '/foo', true],
- ['/foo', '/Foo', false],
- ['/foo', '/fo', false],
- ['/foo', '/foo/bar', true],
- ['/foo', '/foo/bar/baz', true],
- ['/foo', '/foo/bar//baz', true],
- ['/foo', '/foobar', false],
- ['/foo/bar', '/foo', false],
- ['/foo/bar', '/foobar', false],
- ['/foo/bar', '/foo/bar', true],
- ['/foo/bar', '/foo/bar/', true],
- ['/foo/bar', '/foo/bar/baz', true],
- ['/foo/bar/', '/foo/bar', false],
- ['/foo/bar/', '/foo/bar/', true],
- ['/foo/bar/', '/foo/bar/baz', true],
- ];
- }
- /**
- * @dataProvider pathMatchProvider
- */
- public function testMatchesPath($cookiePath, $requestPath, $isMatch)
- {
- $cookie = new SetCookie();
- $cookie->setPath($cookiePath);
- self::assertSame($isMatch, $cookie->matchesPath($requestPath));
- }
- public function cookieValidateProvider()
- {
- return [
- ['foo', 'baz', 'bar', true],
- ['0', '0', '0', true],
- ['foo[bar]', 'baz', 'bar', true],
- ['foo', '', 'bar', true],
- ['', 'baz', 'bar', 'The cookie name must not be empty'],
- ['foo', null, 'bar', 'The cookie value must not be empty'],
- ['foo', 'baz', '', 'The cookie domain must not be empty'],
- ["foo\r", 'baz', '0', 'Cookie name must not contain invalid characters: ASCII Control characters (0-31;127), space, tab and the following characters: ()<>@,;:\"/?={}'],
- ];
- }
- /**
- * @dataProvider cookieValidateProvider
- */
- public function testValidatesCookies($name, $value, $domain, $result)
- {
- $cookie = new SetCookie([
- 'Name' => $name,
- 'Value' => $value,
- 'Domain' => $domain,
- ]);
- self::assertSame($result, $cookie->validate());
- }
- public function testDoesNotMatchIp()
- {
- $cookie = new SetCookie(['Domain' => '192.168.16.']);
- self::assertFalse($cookie->matchesDomain('192.168.16.121'));
- }
- public function testConvertsToString()
- {
- $t = 1382916008;
- $cookie = new SetCookie([
- 'Name' => 'test',
- 'Value' => '123',
- 'Domain' => 'foo.com',
- 'Expires' => $t,
- 'Path' => '/abc',
- 'HttpOnly' => true,
- 'Secure' => true,
- ]);
- self::assertSame(
- 'test=123; Domain=foo.com; Path=/abc; Expires=Sun, 27 Oct 2013 23:20:08 GMT; Secure; HttpOnly',
- (string) $cookie
- );
- }
- /**
- * Provides the parsed information from a cookie
- *
- * @return array
- */
- public function cookieParserDataProvider()
- {
- return [
- [
- 'ASIHTTPRequestTestCookie=This+is+the+value; expires=Sat, 26-Jul-2008 17:00:42 GMT; path=/tests; domain=allseeing-i.com; PHPSESSID=6c951590e7a9359bcedde25cda73e43c; path=/;',
- [
- 'Domain' => 'allseeing-i.com',
- 'Path' => '/',
- 'PHPSESSID' => '6c951590e7a9359bcedde25cda73e43c',
- 'Max-Age' => null,
- 'Expires' => 'Sat, 26-Jul-2008 17:00:42 GMT',
- 'Secure' => null,
- 'Discard' => null,
- 'Name' => 'ASIHTTPRequestTestCookie',
- 'Value' => 'This+is+the+value',
- 'HttpOnly' => false,
- ],
- ],
- ['', []],
- ['foo', []],
- ['; foo', []],
- [
- 'foo="bar"',
- [
- 'Name' => 'foo',
- 'Value' => '"bar"',
- 'Discard' => null,
- 'Domain' => null,
- 'Expires' => null,
- 'Max-Age' => null,
- 'Path' => '/',
- 'Secure' => null,
- 'HttpOnly' => false,
- ],
- ],
- // Test setting a blank value for a cookie
- [[
- 'foo=', 'foo =', 'foo =;', 'foo= ;', 'foo =', 'foo= ', ],
- [
- 'Name' => 'foo',
- 'Value' => '',
- 'Discard' => null,
- 'Domain' => null,
- 'Expires' => null,
- 'Max-Age' => null,
- 'Path' => '/',
- 'Secure' => null,
- 'HttpOnly' => false,
- ],
- ],
- // Test setting a value and removing quotes
- [[
- 'foo=1', 'foo =1', 'foo =1;', 'foo=1 ;', 'foo =1', 'foo= 1', 'foo = 1 ;', ],
- [
- 'Name' => 'foo',
- 'Value' => '1',
- 'Discard' => null,
- 'Domain' => null,
- 'Expires' => null,
- 'Max-Age' => null,
- 'Path' => '/',
- 'Secure' => null,
- 'HttpOnly' => false,
- ],
- ],
- // Some of the following tests are based on https://github.com/zendframework/zf1/blob/master/tests/Zend/Http/CookieTest.php
- [
- 'justacookie=foo; domain=example.com',
- [
- 'Name' => 'justacookie',
- 'Value' => 'foo',
- 'Domain' => 'example.com',
- 'Discard' => null,
- 'Expires' => null,
- 'Max-Age' => null,
- 'Path' => '/',
- 'Secure' => null,
- 'HttpOnly' => false,
- ],
- ],
- [
- 'expires=tomorrow; secure; path=/Space Out/; expires=Tue, 21-Nov-2006 08:33:44 GMT; domain=.example.com',
- [
- 'Name' => 'expires',
- 'Value' => 'tomorrow',
- 'Domain' => '.example.com',
- 'Path' => '/Space Out/',
- 'Expires' => 'Tue, 21-Nov-2006 08:33:44 GMT',
- 'Discard' => null,
- 'Secure' => true,
- 'Max-Age' => null,
- 'HttpOnly' => false,
- ],
- ],
- [
- 'domain=unittests; expires=Tue, 21-Nov-2006 08:33:44 GMT; domain=example.com; path=/some value/',
- [
- 'Name' => 'domain',
- 'Value' => 'unittests',
- 'Domain' => 'example.com',
- 'Path' => '/some value/',
- 'Expires' => 'Tue, 21-Nov-2006 08:33:44 GMT',
- 'Secure' => false,
- 'Discard' => null,
- 'Max-Age' => null,
- 'HttpOnly' => false,
- ],
- ],
- [
- 'path=indexAction; path=/; domain=.foo.com; expires=Tue, 21-Nov-2006 08:33:44 GMT',
- [
- 'Name' => 'path',
- 'Value' => 'indexAction',
- 'Domain' => '.foo.com',
- 'Path' => '/',
- 'Expires' => 'Tue, 21-Nov-2006 08:33:44 GMT',
- 'Secure' => false,
- 'Discard' => null,
- 'Max-Age' => null,
- 'HttpOnly' => false,
- ],
- ],
- [
- 'secure=sha1; secure; SECURE; domain=some.really.deep.domain.com; version=1; Max-Age=86400',
- [
- 'Name' => 'secure',
- 'Value' => 'sha1',
- 'Domain' => 'some.really.deep.domain.com',
- 'Path' => '/',
- 'Secure' => true,
- 'Discard' => null,
- 'Expires' => \time() + 86400,
- 'Max-Age' => 86400,
- 'HttpOnly' => false,
- 'version' => '1',
- ],
- ],
- [
- 'PHPSESSID=123456789+abcd%2Cef; secure; discard; domain=.localdomain; path=/foo/baz; expires=Tue, 21-Nov-2006 08:33:44 GMT;',
- [
- 'Name' => 'PHPSESSID',
- 'Value' => '123456789+abcd%2Cef',
- 'Domain' => '.localdomain',
- 'Path' => '/foo/baz',
- 'Expires' => 'Tue, 21-Nov-2006 08:33:44 GMT',
- 'Secure' => true,
- 'Discard' => true,
- 'Max-Age' => null,
- 'HttpOnly' => false,
- ],
- ],
- [
- 'fr=synced; Max-Age=604800 Expires=Mon, 12 Dec 2022 13:27:50 GMT; Domain=.example.com; Path=/; SameSite=None; Secure; HttpOnly',
- [
- 'Name' => 'fr',
- 'Value' => 'synced',
- 'Domain' => '.example.com',
- 'Path' => '/',
- 'Expires' => null,
- 'Secure' => true,
- 'Discard' => false,
- 'Max-Age' => null,
- 'HttpOnly' => true,
- 'SameSite' => 'None',
- ],
- ],
- [
- 'SESS3a6f27284c4d8b34b6f4ff98cb87703e=Ts-5YeSyvOCMS%2CzkEb9eDfW4C4ZNFOcRYdu-3JpEAXIm58aH; expires=Wed, 07-Jun-2023 15:56:35 GMT; Max-Age=2000000; path=/; domain=.example.com; HttpOnly; SameSite=Lax',
- [
- 'Name' => 'SESS3a6f27284c4d8b34b6f4ff98cb87703e',
- 'Value' => 'Ts-5YeSyvOCMS%2CzkEb9eDfW4C4ZNFOcRYdu-3JpEAXIm58aH',
- 'Domain' => '.example.com',
- 'Path' => '/',
- 'Expires' => 'Wed, 07-Jun-2023 15:56:35 GMT',
- 'Secure' => false,
- 'Discard' => false,
- 'Max-Age' => 2000000,
- 'HttpOnly' => true,
- 'SameSite' => 'Lax',
- ],
- ],
- [
- 'SESS3a6f27284c4d8b34b6f4ff98cb87703e=Ts-5YeSyvOCMS%2CzkEb9eDfW4C4ZNFOcRYdu-3JpEAXIm58aH; expires=Wed, 07-Jun-2023 15:56:35 GMT; Max-Age=qwerty; path=/; domain=.example.com; HttpOnly; SameSite=Lax',
- [
- 'Name' => 'SESS3a6f27284c4d8b34b6f4ff98cb87703e',
- 'Value' => 'Ts-5YeSyvOCMS%2CzkEb9eDfW4C4ZNFOcRYdu-3JpEAXIm58aH',
- 'Domain' => '.example.com',
- 'Path' => '/',
- 'Expires' => 'Wed, 07-Jun-2023 15:56:35 GMT',
- 'Secure' => false,
- 'Discard' => false,
- 'Max-Age' => null,
- 'HttpOnly' => true,
- 'SameSite' => 'Lax',
- ],
- ],
- ];
- }
- /**
- * @dataProvider cookieParserDataProvider
- */
- public function testParseCookie($cookie, $parsed)
- {
- foreach ((array) $cookie as $v) {
- $c = SetCookie::fromString($v);
- $p = $c->toArray();
- if (isset($p['Expires'])) {
- $delta = 40;
- $parsedExpires = \is_numeric($parsed['Expires']) ? $parsed['Expires'] : \strtotime($parsed['Expires']);
- self::assertLessThan($delta, \abs($p['Expires'] - $parsedExpires), 'Comparing Expires '.\var_export($p['Expires'], true).' : '.\var_export($parsed, true).' | '.\var_export($p, true));
- unset($p['Expires']);
- unset($parsed['Expires']);
- }
- if (!empty($parsed)) {
- foreach ($parsed as $key => $value) {
- self::assertEquals($parsed[$key], $p[$key], 'Comparing '.$key.' '.\var_export($value, true).' : '.\var_export($parsed, true).' | '.\var_export($p, true));
- }
- foreach ($p as $key => $value) {
- self::assertEquals($p[$key], $parsed[$key], 'Comparing '.$key.' '.\var_export($value, true).' : '.\var_export($parsed, true).' | '.\var_export($p, true));
- }
- } else {
- self::assertSame([
- 'Name' => null,
- 'Value' => null,
- 'Domain' => null,
- 'Path' => '/',
- 'Max-Age' => null,
- 'Expires' => null,
- 'Secure' => false,
- 'Discard' => false,
- 'HttpOnly' => false,
- ], $p);
- }
- }
- }
- /**
- * Provides the data for testing isExpired
- *
- * @return array
- */
- public function isExpiredProvider()
- {
- return [
- [
- 'FOO=bar; expires=Thu, 01 Jan 1970 00:00:00 GMT;',
- true,
- ],
- [
- 'FOO=bar; expires=Thu, 01 Jan 1970 00:00:01 GMT;',
- true,
- ],
- [
- 'FOO=bar; expires='.\date(\DateTime::RFC1123, \time() + 10).';',
- false,
- ],
- [
- 'FOO=bar; expires='.\date(\DateTime::RFC1123, \time() - 10).';',
- true,
- ],
- [
- 'FOO=bar;',
- false,
- ],
- ];
- }
- /**
- * @dataProvider isExpiredProvider
- */
- public function testIsExpired($cookie, $expired)
- {
- self::assertSame(
- $expired,
- SetCookie::fromString($cookie)->isExpired()
- );
- }
- }
|