summaryrefslogtreecommitdiff
path: root/tests/units/Core/Session/SessionStorageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/Core/Session/SessionStorageTest.php')
-rw-r--r--tests/units/Core/Session/SessionStorageTest.php60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/units/Core/Session/SessionStorageTest.php b/tests/units/Core/Session/SessionStorageTest.php
deleted file mode 100644
index dd0040d5..00000000
--- a/tests/units/Core/Session/SessionStorageTest.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-
-require_once __DIR__.'/../../Base.php';
-
-use Kanboard\Core\Session\SessionStorage;
-
-class SessionStorageTest extends Base
-{
- public function testNotPersistentStorage()
- {
- $storage = new SessionStorage();
- $storage->something = array('a' => 'b');
- $this->assertEquals(array('a' => 'b'), $storage->something);
- $this->assertTrue(isset($storage->something));
- $this->assertFalse(isset($storage->something->x));
- $this->assertFalse(isset($storage->notFound));
- $this->assertFalse(isset($storage->notFound->x));
- $this->assertFalse(isset($storage->notFound['x']));
- }
-
- public function testPersistentStorage()
- {
- $session = array('d' => 'e');
-
- $storage = new SessionStorage();
- $storage->setStorage($session);
- $storage->something = array('a' => 'b');
-
- $this->assertEquals(array('a' => 'b'), $storage->something);
- $this->assertEquals('e', $storage->d);
-
- $storage->something['a'] = 'c';
- $this->assertEquals('c', $storage->something['a']);
-
- $storage = null;
- $this->assertEquals(array('something' => array('a' => 'c'), 'd' => 'e'), $session);
- }
-
- public function testFlush()
- {
- $session = array('d' => 'e');
-
- $storage = new SessionStorage();
- $storage->setStorage($session);
- $storage->something = array('a' => 'b');
-
- $this->assertEquals(array('a' => 'b'), $storage->something);
- $this->assertEquals('e', $storage->d);
-
- $storage->flush();
-
- $this->assertFalse(isset($storage->d));
- $this->assertFalse(isset($storage->something));
-
- $storage->foo = 'bar';
-
- $storage = null;
- $this->assertEquals(array('foo' => 'bar'), $session);
- }
-}