diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-12-28 14:37:06 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-12-28 14:37:06 -0500 |
commit | bcbc1b78c67860a1037e77a97c260899611adcdc (patch) | |
tree | 069c112d583a351f80bb0d3d24a01af6698a3afa /tests/units | |
parent | 91a99c5e6d30f5d8122ba67f9a8ab187cf938453 (diff) |
Add more unit tests
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/ConfigTest.php | 23 | ||||
-rw-r--r-- | tests/units/HelperTest.php | 25 |
2 files changed, 48 insertions, 0 deletions
diff --git a/tests/units/ConfigTest.php b/tests/units/ConfigTest.php index 9ea9bc9a..950d4a09 100644 --- a/tests/units/ConfigTest.php +++ b/tests/units/ConfigTest.php @@ -3,6 +3,7 @@ require_once __DIR__.'/Base.php'; use Model\Config; +use Core\Session; class ConfigTest extends Base { @@ -29,4 +30,26 @@ class ConfigTest extends Base $this->assertEquals('test', $c->get('board_columns', 'test')); $this->assertEquals(0, $c->get('board_columns', 0)); } + + public function testGetWithSession() + { + $this->container['session'] = new Session; + $c = new Config($this->container); + + session_id('test'); + + $this->assertTrue(Session::isOpen()); + + $this->assertEquals('', $c->get('board_columns')); + $this->assertEquals('test', $c->get('board_columns', 'test')); + + $this->container['session']['config'] = array( + 'board_columns' => 'foo', + 'empty_value' => 0 + ); + + $this->assertEquals('foo', $c->get('board_columns')); + $this->assertEquals('foo', $c->get('board_columns', 'test')); + $this->assertEquals('test', $c->get('empty_value', 'test')); + } } diff --git a/tests/units/HelperTest.php b/tests/units/HelperTest.php new file mode 100644 index 00000000..72f84a24 --- /dev/null +++ b/tests/units/HelperTest.php @@ -0,0 +1,25 @@ +<?php + +require_once __DIR__.'/Base.php'; + +use Core\Helper; + +class HelperTest extends Base +{ + public function testMarkdown() + { + $h = new Helper($this->container); + + $this->assertEquals('<p>Test</p>', $h->markdown('Test')); + + $this->assertEquals( + '<p>Task <a href="?controller=task&action=show&task_id=123" class="" title="" >#123</a></p>', + $h->markdown('Task #123') + ); + + $this->assertEquals( + '<p>Task <a href="?controller=a&action=b&c=d&task_id=123" class="" title="" >#123</a></p>', + $h->markdown('Task #123', array('controller' => 'a', 'action' => 'b', 'params' => array('c' => 'd'))) + ); + } +} |