123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?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\HttpFoundation\Tests\Session;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
- use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
- use Symfony\Component\HttpFoundation\Session\Session;
- use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
- /**
- * SessionTest.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- * @author Robert Schönthal <seroscho@googlemail.com>
- * @author Drak <drak@zikula.org>
- */
- class SessionTest extends TestCase
- {
- /**
- * @var \Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface
- */
- protected $storage;
- /**
- * @var \Symfony\Component\HttpFoundation\Session\SessionInterface
- */
- protected $session;
- protected function setUp()
- {
- $this->storage = new MockArraySessionStorage();
- $this->session = new Session($this->storage, new AttributeBag(), new FlashBag());
- }
- protected function tearDown()
- {
- $this->storage = null;
- $this->session = null;
- }
- public function testStart()
- {
- $this->assertEquals('', $this->session->getId());
- $this->assertTrue($this->session->start());
- $this->assertNotEquals('', $this->session->getId());
- }
- public function testIsStarted()
- {
- $this->assertFalse($this->session->isStarted());
- $this->session->start();
- $this->assertTrue($this->session->isStarted());
- }
- public function testSetId()
- {
- $this->assertEquals('', $this->session->getId());
- $this->session->setId('0123456789abcdef');
- $this->session->start();
- $this->assertEquals('0123456789abcdef', $this->session->getId());
- }
- public function testSetIdAfterStart()
- {
- $this->session->start();
- $id = $this->session->getId();
- $e = null;
- try {
- $this->session->setId($id);
- } catch (\Exception $e) {
- }
- $this->assertNull($e);
- try {
- $this->session->setId('different');
- } catch (\Exception $e) {
- }
- $this->assertInstanceOf('\LogicException', $e);
- }
- public function testSetName()
- {
- $this->assertEquals('MOCKSESSID', $this->session->getName());
- $this->session->setName('session.test.com');
- $this->session->start();
- $this->assertEquals('session.test.com', $this->session->getName());
- }
- public function testGet()
- {
- // tests defaults
- $this->assertNull($this->session->get('foo'));
- $this->assertEquals(1, $this->session->get('foo', 1));
- }
- /**
- * @dataProvider setProvider
- */
- public function testSet($key, $value)
- {
- $this->session->set($key, $value);
- $this->assertEquals($value, $this->session->get($key));
- }
- /**
- * @dataProvider setProvider
- */
- public function testHas($key, $value)
- {
- $this->session->set($key, $value);
- $this->assertTrue($this->session->has($key));
- $this->assertFalse($this->session->has($key.'non_value'));
- }
- public function testReplace()
- {
- $this->session->replace(['happiness' => 'be good', 'symfony' => 'awesome']);
- $this->assertEquals(['happiness' => 'be good', 'symfony' => 'awesome'], $this->session->all());
- $this->session->replace([]);
- $this->assertEquals([], $this->session->all());
- }
- /**
- * @dataProvider setProvider
- */
- public function testAll($key, $value, $result)
- {
- $this->session->set($key, $value);
- $this->assertEquals($result, $this->session->all());
- }
- /**
- * @dataProvider setProvider
- */
- public function testClear($key, $value)
- {
- $this->session->set('hi', 'fabien');
- $this->session->set($key, $value);
- $this->session->clear();
- $this->assertEquals([], $this->session->all());
- }
- public function setProvider()
- {
- return [
- ['foo', 'bar', ['foo' => 'bar']],
- ['foo.bar', 'too much beer', ['foo.bar' => 'too much beer']],
- ['great', 'symfony is great', ['great' => 'symfony is great']],
- ];
- }
- /**
- * @dataProvider setProvider
- */
- public function testRemove($key, $value)
- {
- $this->session->set('hi.world', 'have a nice day');
- $this->session->set($key, $value);
- $this->session->remove($key);
- $this->assertEquals(['hi.world' => 'have a nice day'], $this->session->all());
- }
- public function testInvalidate()
- {
- $this->session->set('invalidate', 123);
- $this->session->invalidate();
- $this->assertEquals([], $this->session->all());
- }
- public function testMigrate()
- {
- $this->session->set('migrate', 321);
- $this->session->migrate();
- $this->assertEquals(321, $this->session->get('migrate'));
- }
- public function testMigrateDestroy()
- {
- $this->session->set('migrate', 333);
- $this->session->migrate(true);
- $this->assertEquals(333, $this->session->get('migrate'));
- }
- public function testSave()
- {
- $this->session->start();
- $this->session->save();
- $this->assertFalse($this->session->isStarted());
- }
- public function testGetId()
- {
- $this->assertEquals('', $this->session->getId());
- $this->session->start();
- $this->assertNotEquals('', $this->session->getId());
- }
- public function testGetFlashBag()
- {
- $this->assertInstanceOf('Symfony\\Component\\HttpFoundation\\Session\\Flash\\FlashBagInterface', $this->session->getFlashBag());
- }
- public function testGetIterator()
- {
- $attributes = ['hello' => 'world', 'symfony' => 'rocks'];
- foreach ($attributes as $key => $val) {
- $this->session->set($key, $val);
- }
- $i = 0;
- foreach ($this->session as $key => $val) {
- $this->assertEquals($attributes[$key], $val);
- ++$i;
- }
- $this->assertEquals(\count($attributes), $i);
- }
- public function testGetCount()
- {
- $this->session->set('hello', 'world');
- $this->session->set('symfony', 'rocks');
- $this->assertCount(2, $this->session);
- }
- public function testGetMeta()
- {
- $this->assertInstanceOf('Symfony\Component\HttpFoundation\Session\Storage\MetadataBag', $this->session->getMetadataBag());
- }
- public function testIsEmpty()
- {
- $this->assertTrue($this->session->isEmpty());
- $this->session->set('hello', 'world');
- $this->assertFalse($this->session->isEmpty());
- $this->session->remove('hello');
- $this->assertTrue($this->session->isEmpty());
- $flash = $this->session->getFlashBag();
- $flash->set('hello', 'world');
- $this->assertFalse($this->session->isEmpty());
- $flash->get('hello');
- $this->assertTrue($this->session->isEmpty());
- }
- }
|