123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <?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\Flash;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\HttpFoundation\Session\Flash\AutoExpireFlashBag as FlashBag;
- /**
- * AutoExpireFlashBagTest.
- *
- * @author Drak <drak@zikula.org>
- */
- class AutoExpireFlashBagTest extends TestCase
- {
- /**
- * @var \Symfony\Component\HttpFoundation\Session\Flash\AutoExpireFlashBag
- */
- private $bag;
- protected $array = [];
- protected function setUp()
- {
- parent::setUp();
- $this->bag = new FlashBag();
- $this->array = ['new' => ['notice' => ['A previous flash message']]];
- $this->bag->initialize($this->array);
- }
- protected function tearDown()
- {
- $this->bag = null;
- parent::tearDown();
- }
- public function testInitialize()
- {
- $bag = new FlashBag();
- $array = ['new' => ['notice' => ['A previous flash message']]];
- $bag->initialize($array);
- $this->assertEquals(['A previous flash message'], $bag->peek('notice'));
- $array = ['new' => [
- 'notice' => ['Something else'],
- 'error' => ['a'],
- ]];
- $bag->initialize($array);
- $this->assertEquals(['Something else'], $bag->peek('notice'));
- $this->assertEquals(['a'], $bag->peek('error'));
- }
- public function testGetStorageKey()
- {
- $this->assertEquals('_symfony_flashes', $this->bag->getStorageKey());
- $attributeBag = new FlashBag('test');
- $this->assertEquals('test', $attributeBag->getStorageKey());
- }
- public function testGetSetName()
- {
- $this->assertEquals('flashes', $this->bag->getName());
- $this->bag->setName('foo');
- $this->assertEquals('foo', $this->bag->getName());
- }
- public function testPeek()
- {
- $this->assertEquals([], $this->bag->peek('non_existing'));
- $this->assertEquals(['default'], $this->bag->peek('non_existing', ['default']));
- $this->assertEquals(['A previous flash message'], $this->bag->peek('notice'));
- $this->assertEquals(['A previous flash message'], $this->bag->peek('notice'));
- }
- public function testSet()
- {
- $this->bag->set('notice', 'Foo');
- $this->assertEquals(['A previous flash message'], $this->bag->peek('notice'));
- }
- public function testHas()
- {
- $this->assertFalse($this->bag->has('nothing'));
- $this->assertTrue($this->bag->has('notice'));
- }
- public function testKeys()
- {
- $this->assertEquals(['notice'], $this->bag->keys());
- }
- public function testPeekAll()
- {
- $array = [
- 'new' => [
- 'notice' => 'Foo',
- 'error' => 'Bar',
- ],
- ];
- $this->bag->initialize($array);
- $this->assertEquals([
- 'notice' => 'Foo',
- 'error' => 'Bar',
- ], $this->bag->peekAll()
- );
- $this->assertEquals([
- 'notice' => 'Foo',
- 'error' => 'Bar',
- ], $this->bag->peekAll()
- );
- }
- public function testGet()
- {
- $this->assertEquals([], $this->bag->get('non_existing'));
- $this->assertEquals(['default'], $this->bag->get('non_existing', ['default']));
- $this->assertEquals(['A previous flash message'], $this->bag->get('notice'));
- $this->assertEquals([], $this->bag->get('notice'));
- }
- public function testSetAll()
- {
- $this->bag->setAll(['a' => 'first', 'b' => 'second']);
- $this->assertFalse($this->bag->has('a'));
- $this->assertFalse($this->bag->has('b'));
- }
- public function testAll()
- {
- $this->bag->set('notice', 'Foo');
- $this->bag->set('error', 'Bar');
- $this->assertEquals([
- 'notice' => ['A previous flash message'],
- ], $this->bag->all()
- );
- $this->assertEquals([], $this->bag->all());
- }
- public function testClear()
- {
- $this->assertEquals(['notice' => ['A previous flash message']], $this->bag->clear());
- }
- public function testDoNotRemoveTheNewFlashesWhenDisplayingTheExistingOnes()
- {
- $this->bag->add('success', 'Something');
- $this->bag->all();
- $this->assertEquals(['new' => ['success' => ['Something']], 'display' => []], $this->array);
- }
- }
|