| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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
- * For full copyright and license information, please see the LICENSE.txt
- * 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.2.12
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Auth\Storage;
- use Cake\Auth\Storage\MemoryStorage;
- use Cake\TestSuite\TestCase;
- /**
- * Test case for MemoryStorage
- */
- class MemoryStorageTest extends TestCase
- {
- /**
- * @var \Cake\Auth\Storage\MemoryStorage
- */
- protected $storage;
- /**
- * @var array
- */
- protected $user;
- /**
- * Setup
- */
- public function setUp(): void
- {
- parent::setUp();
- $this->storage = new MemoryStorage();
- $this->user = ['username' => 'giantGummyLizard'];
- }
- /**
- * Test write.
- */
- public function testWrite(): void
- {
- $this->storage->write($this->user);
- $this->assertSame($this->user, $this->storage->read());
- }
- /**
- * Test read.
- */
- public function testRead(): void
- {
- $this->assertNull($this->storage->read());
- }
- /**
- * Test delete.
- */
- public function testDelete(): void
- {
- $this->storage->write($this->user);
- $this->storage->delete();
- $this->assertNull($this->storage->read());
- }
- /**
- * Test redirectUrl.
- */
- public function testRedirectUrl(): void
- {
- $this->assertNull($this->storage->redirectUrl());
- $this->storage->redirectUrl('/posts/the-gummy-lizards');
- $this->assertSame('/posts/the-gummy-lizards', $this->storage->redirectUrl());
- $this->assertNull($this->storage->redirectUrl(false));
- $this->assertNull($this->storage->redirectUrl());
- }
- }
|