summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Config_test.php
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2011-04-21 03:44:54 +0200
committerPascal Kriete <pascal.kriete@ellislab.com>2011-04-21 03:44:54 +0200
commit69c97a71476e4eaa6c629022fcd4ec7f36d4ec0d (patch)
tree5cba214cb636df83b41a3aa7f29f9b191c3ab70b /tests/codeigniter/core/Config_test.php
parentba2430b5778b5b2414b94b818354fa1ff7cfd0db (diff)
Adding early bootstrap ideas for core test suite
Diffstat (limited to 'tests/codeigniter/core/Config_test.php')
-rw-r--r--tests/codeigniter/core/Config_test.php107
1 files changed, 107 insertions, 0 deletions
diff --git a/tests/codeigniter/core/Config_test.php b/tests/codeigniter/core/Config_test.php
new file mode 100644
index 000000000..628fc630b
--- /dev/null
+++ b/tests/codeigniter/core/Config_test.php
@@ -0,0 +1,107 @@
+<?php
+
+class Config_test extends CodeIgniterTestCase {
+
+ public function setUp()
+ {
+ $cls =& $this->ci_core_class('cfg');
+
+ $stub = $this->getMock($cls, NULL, array(), '', FALSE);
+
+ //I would prefer this, but it currently
+ // does not work as when you try to pass
+ // null to setMethods it fails on an internal
+ // function call that expects an array =(
+ /*
+ $stub = $this->getMockBuilder($cls)
+ ->disableOriginalConstructor()
+ ->setMethods(null)
+ ->getMock();
+ */
+
+
+ // set predictable config values
+ $stub->config = array(
+ 'index_page' => 'index.php',
+ 'base_url' => 'http://example.com/',
+ 'subclass_prefix' => 'MY_'
+ );
+
+ $this->config = $stub;
+ }
+
+ // --------------------------------------------------------------------
+
+ public function testItem()
+ {
+ $this->assertEquals('http://example.com/', $this->config->item('base_url'));
+
+ // Bad Config value
+ $this->assertFalse($this->config->item('no_good_item'));
+
+ // Index
+ $this->assertFalse($this->config->item('no_good_item', 'bad_index'));
+ $this->assertFalse($this->config->item('no_good_item', 'default'));
+ }
+
+ // --------------------------------------------------------------------
+
+ public function testSetItem()
+ {
+ $this->assertFalse($this->config->item('not_yet_set'));
+
+ $this->config->set_item('not_yet_set', 'is set');
+
+ $this->assertEquals('is set', $this->config->item('not_yet_set'));
+ }
+
+ // --------------------------------------------------------------------
+
+ public function testSlashItem()
+ {
+ // Bad Config value
+ $this->assertFalse($this->config->slash_item('no_good_item'));
+
+ $this->assertEquals('http://example.com/', $this->config->slash_item('base_url'));
+
+ $this->assertEquals('MY_/', $this->config->slash_item('subclass_prefix'));
+ }
+
+ // --------------------------------------------------------------------
+
+ public function testSiteUrl()
+ {
+ $this->assertEquals('http://example.com/index.php', $this->config->site_url());
+
+ $base_url = $this->config->item('base_url');
+
+ $this->config->set_item('base_url', '');
+
+ $q_string = $this->config->item('enable_query_strings');
+
+ $this->config->set_item('enable_query_strings', FALSE);
+
+ $this->assertEquals('/index.php/test', $this->config->site_url('test'));
+ $this->assertEquals('/index.php/test/1', $this->config->site_url(array('test', '1')));
+
+ $this->config->set_item('enable_query_strings', TRUE);
+
+ $this->assertEquals('/index.php?test', $this->config->site_url('test'));
+ $this->assertEquals('/index.php?0=test&1=1', $this->config->site_url(array('test', '1')));
+
+ $this->config->set_item('base_url', $base_url);
+
+ $this->assertEquals('http://example.com/index.php?test', $this->config->site_url('test'));
+
+ // back to home base
+ $this->config->set_item('enable_query_strings', $q_string);
+ }
+
+ // --------------------------------------------------------------------
+
+ public function testSystemUrl()
+ {
+ $this->assertEquals('http://example.com/system/', $this->config->system_url());
+ }
+
+} \ No newline at end of file