| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 | <?php/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespace Symfony\Component\BrowserKit\Tests;use PHPUnit\Framework\TestCase;use Symfony\Component\BrowserKit\Cookie;use Symfony\Component\BrowserKit\CookieJar;use Symfony\Component\BrowserKit\Response;class CookieJarTest extends TestCase{    public function testSetGet()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie = new Cookie('foo', 'bar'));        $this->assertEquals($cookie, $cookieJar->get('foo'), '->set() sets a cookie');        $this->assertNull($cookieJar->get('foobar'), '->get() returns null if the cookie does not exist');        $cookieJar->set($cookie = new Cookie('foo', 'bar', time() - 86400));        $this->assertNull($cookieJar->get('foo'), '->get() returns null if the cookie is expired');    }    public function testExpire()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie = new Cookie('foo', 'bar'));        $cookieJar->expire('foo');        $this->assertNull($cookieJar->get('foo'), '->get() returns null if the cookie is expired');    }    public function testAll()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar'));        $cookieJar->set($cookie2 = new Cookie('bar', 'foo'));        $this->assertEquals([$cookie1, $cookie2], $cookieJar->all(), '->all() returns all cookies in the jar');    }    public function testClear()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar'));        $cookieJar->set($cookie2 = new Cookie('bar', 'foo'));        $cookieJar->clear();        $this->assertEquals([], $cookieJar->all(), '->clear() expires all cookies');    }    public function testUpdateFromResponse()    {        $response = new Response('', 200, ['Set-Cookie' => 'foo=foo']);        $cookieJar = new CookieJar();        $cookieJar->updateFromResponse($response);        $this->assertEquals('foo', $cookieJar->get('foo')->getValue(), '->updateFromResponse() updates cookies from a Response objects');    }    public function testUpdateFromSetCookie()    {        $setCookies = ['foo=foo'];        $cookieJar = new CookieJar();        $cookieJar->set(new Cookie('bar', 'bar'));        $cookieJar->updateFromSetCookie($setCookies);        $this->assertInstanceOf('Symfony\Component\BrowserKit\Cookie', $cookieJar->get('foo'));        $this->assertInstanceOf('Symfony\Component\BrowserKit\Cookie', $cookieJar->get('bar'));        $this->assertEquals('foo', $cookieJar->get('foo')->getValue(), '->updateFromSetCookie() updates cookies from a Set-Cookie header');        $this->assertEquals('bar', $cookieJar->get('bar')->getValue(), '->updateFromSetCookie() keeps existing cookies');    }    public function testUpdateFromEmptySetCookie()    {        $cookieJar = new CookieJar();        $cookieJar->updateFromSetCookie(['']);        $this->assertEquals([], $cookieJar->all());    }    public function testUpdateFromSetCookieWithMultipleCookies()    {        $timestamp = time() + 3600;        $date = gmdate('D, d M Y H:i:s \G\M\T', $timestamp);        $setCookies = [sprintf('foo=foo; expires=%s; domain=.symfony.com; path=/, bar=bar; domain=.blog.symfony.com, PHPSESSID=id; expires=%1$s', $date)];        $cookieJar = new CookieJar();        $cookieJar->updateFromSetCookie($setCookies);        $fooCookie = $cookieJar->get('foo', '/', '.symfony.com');        $barCookie = $cookieJar->get('bar', '/', '.blog.symfony.com');        $phpCookie = $cookieJar->get('PHPSESSID');        $this->assertInstanceOf('Symfony\Component\BrowserKit\Cookie', $fooCookie);        $this->assertInstanceOf('Symfony\Component\BrowserKit\Cookie', $barCookie);        $this->assertInstanceOf('Symfony\Component\BrowserKit\Cookie', $phpCookie);        $this->assertEquals('foo', $fooCookie->getValue());        $this->assertEquals('bar', $barCookie->getValue());        $this->assertEquals('id', $phpCookie->getValue());        $this->assertEquals($timestamp, $fooCookie->getExpiresTime());        $this->assertNull($barCookie->getExpiresTime());        $this->assertEquals($timestamp, $phpCookie->getExpiresTime());    }    /**     * @dataProvider provideAllValuesValues     */    public function testAllValues($uri, $values)    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo_nothing', 'foo'));        $cookieJar->set($cookie2 = new Cookie('foo_expired', 'foo', time() - 86400));        $cookieJar->set($cookie3 = new Cookie('foo_path', 'foo', null, '/foo'));        $cookieJar->set($cookie4 = new Cookie('foo_domain', 'foo', null, '/', '.example.com'));        $cookieJar->set($cookie4 = new Cookie('foo_strict_domain', 'foo', null, '/', '.www4.example.com'));        $cookieJar->set($cookie5 = new Cookie('foo_secure', 'foo', null, '/', '', true));        $this->assertEquals($values, array_keys($cookieJar->allValues($uri)), '->allValues() returns the cookie for a given URI');    }    public function provideAllValuesValues()    {        return [            ['http://www.example.com', ['foo_nothing', 'foo_domain']],            ['http://www.example.com/', ['foo_nothing', 'foo_domain']],            ['http://foo.example.com/', ['foo_nothing', 'foo_domain']],            ['http://foo.example1.com/', ['foo_nothing']],            ['https://foo.example.com/', ['foo_nothing', 'foo_secure', 'foo_domain']],            ['http://www.example.com/foo/bar', ['foo_nothing', 'foo_path', 'foo_domain']],            ['http://www4.example.com/', ['foo_nothing', 'foo_domain', 'foo_strict_domain']],        ];    }    public function testEncodedValues()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie = new Cookie('foo', 'bar%3Dbaz', null, '/', '', false, true, true));        $this->assertEquals(['foo' => 'bar=baz'], $cookieJar->allValues('/'));        $this->assertEquals(['foo' => 'bar%3Dbaz'], $cookieJar->allRawValues('/'));    }    public function testCookieExpireWithSameNameButDifferentPaths()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar1', null, '/foo'));        $cookieJar->set($cookie2 = new Cookie('foo', 'bar2', null, '/bar'));        $cookieJar->expire('foo', '/foo');        $this->assertNull($cookieJar->get('foo'), '->get() returns null if the cookie is expired');        $this->assertEquals([], array_keys($cookieJar->allValues('http://example.com/')));        $this->assertEquals([], $cookieJar->allValues('http://example.com/foo'));        $this->assertEquals(['foo' => 'bar2'], $cookieJar->allValues('http://example.com/bar'));    }    public function testCookieExpireWithNullPaths()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar1', null, '/'));        $cookieJar->expire('foo', null);        $this->assertNull($cookieJar->get('foo'), '->get() returns null if the cookie is expired');        $this->assertEquals([], array_keys($cookieJar->allValues('http://example.com/')));    }    public function testCookieExpireWithDomain()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar1', null, '/foo', 'http://example2.com/'));        $cookieJar->expire('foo', '/foo', 'http://example2.com/');        $this->assertNull($cookieJar->get('foo'), '->get() returns null if the cookie is expired');        $this->assertEquals([], array_keys($cookieJar->allValues('http://example2.com/')));    }    public function testCookieWithSameNameButDifferentPaths()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar1', null, '/foo'));        $cookieJar->set($cookie2 = new Cookie('foo', 'bar2', null, '/bar'));        $this->assertEquals([], array_keys($cookieJar->allValues('http://example.com/')));        $this->assertEquals(['foo' => 'bar1'], $cookieJar->allValues('http://example.com/foo'));        $this->assertEquals(['foo' => 'bar2'], $cookieJar->allValues('http://example.com/bar'));    }    public function testCookieWithSameNameButDifferentDomains()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar1', null, '/', 'foo.example.com'));        $cookieJar->set($cookie2 = new Cookie('foo', 'bar2', null, '/', 'bar.example.com'));        $this->assertEquals([], array_keys($cookieJar->allValues('http://example.com/')));        $this->assertEquals(['foo' => 'bar1'], $cookieJar->allValues('http://foo.example.com/'));        $this->assertEquals(['foo' => 'bar2'], $cookieJar->allValues('http://bar.example.com/'));    }    public function testCookieGetWithSubdomain()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar', null, '/', '.example.com'));        $cookieJar->set($cookie2 = new Cookie('foo1', 'bar', null, '/', 'test.example.com'));        $this->assertEquals($cookie1, $cookieJar->get('foo', '/', 'foo.example.com'));        $this->assertEquals($cookie1, $cookieJar->get('foo', '/', 'example.com'));        $this->assertEquals($cookie2, $cookieJar->get('foo1', '/', 'test.example.com'));    }    public function testCookieGetWithWrongSubdomain()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo1', 'bar', null, '/', 'test.example.com'));        $this->assertNull($cookieJar->get('foo1', '/', 'foo.example.com'));    }    public function testCookieGetWithSubdirectory()    {        $cookieJar = new CookieJar();        $cookieJar->set($cookie1 = new Cookie('foo', 'bar', null, '/test', '.example.com'));        $cookieJar->set($cookie2 = new Cookie('foo1', 'bar1', null, '/', '.example.com'));        $this->assertNull($cookieJar->get('foo', '/', '.example.com'));        $this->assertNull($cookieJar->get('foo', '/bar', '.example.com'));        $this->assertEquals($cookie1, $cookieJar->get('foo', '/test', 'example.com'));        $this->assertEquals($cookie2, $cookieJar->get('foo1', '/', 'example.com'));        $this->assertEquals($cookie2, $cookieJar->get('foo1', '/bar', 'example.com'));        $this->assertEquals($cookie2, $cookieJar->get('foo1', '/bar'));    }    public function testCookieWithWildcardDomain()    {        $cookieJar = new CookieJar();        $cookieJar->set(new Cookie('foo', 'bar', null, '/', '.example.com'));        $this->assertEquals(['foo' => 'bar'], $cookieJar->allValues('http://www.example.com'));        $this->assertEmpty($cookieJar->allValues('http://wwwexample.com'));    }}
 |