summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordchill42 <dchill42@gmail.com>2012-10-22 03:31:19 +0200
committerdchill42 <dchill42@gmail.com>2012-10-22 03:31:19 +0200
commit4f42be55dc5ca3141f3d93f7f59989d3e52bc5a3 (patch)
tree91105470a75942908114e79df84ebd7a0c779e34 /tests
parentb1aad96fa4842cc1615ce0f43c720586070d2c67 (diff)
Raised CI_Loader test coverage to 93%
Signed-off-by: dchill42 <dchill42@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Loader_test.php343
-rw-r--r--tests/mocks/ci_testcase.php1
-rw-r--r--tests/mocks/ci_testconfig.php4
-rw-r--r--tests/mocks/core/common.php7
-rw-r--r--tests/mocks/core/loader.php13
-rw-r--r--tests/mocks/database/schema/skeleton.php2
6 files changed, 235 insertions, 135 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index 69b2afb63..a8a2de78f 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -7,27 +7,29 @@ class Loader_test extends CI_TestCase {
public function set_up()
{
// Instantiate a new loader
- $this->load = new Mock_Core_Loader();
+ $loader = $this->ci_core_class('loader');
+ $this->load = new $loader();
// Get CI instance
$this->ci_obj = $this->ci_instance();
// Set subclass prefix
- $this->ci_set_config('subclass_prefix', 'MY_');
+ $this->prefix = 'MY_';
+ $this->ci_set_config('subclass_prefix', $this->prefix);
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::library
- */
public function test_library()
{
- // Create libraries directory with test library
+ // Create library in VFS
$lib = 'unit_test_lib';
$class = 'CI_'.ucfirst($lib);
$this->ci_vfs_create($lib, '<?php class '.$class.' { }', $this->ci_base_root, 'libraries');
+ // Test is_loaded fail
+ $this->assertFalse($this->load->is_loaded($lib));
+
// Test loading as an array.
$this->assertNull($this->load->library(array($lib)));
$this->assertTrue(class_exists($class), $class.' does not exist');
@@ -38,16 +40,68 @@ class Loader_test extends CI_TestCase {
// Test a string given to params
$this->assertNull($this->load->library($lib, ' '));
+
+ // Create library w/o class
+ $lib = 'bad_test_lib';
+ $this->ci_vfs_create($lib, '', $this->ci_base_root, 'libraries');
+
+ // Test non-existent class
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: Non-existent class: '.$lib
+ );
+ $this->assertNull($this->load->library($lib));
+ }
+
+ // --------------------------------------------------------------------
+
+ public function test_library_extension()
+ {
+ // Create library and extension in VFS
+ $name = 'ext_test_lib';
+ $lib = ucfirst($name);
+ $class = 'CI_'.$lib;
+ $ext = $this->prefix.$lib;
+ $this->ci_vfs_create($lib, '<?php class '.$class.' { }', $this->ci_base_root, 'libraries');
+ $this->ci_vfs_create($ext, '<?php class '.$ext.' extends '.$class.' { }', $this->ci_app_root, 'libraries');
+
+ // Test loading with extension
+ $this->assertNull($this->load->library($lib));
+ $this->assertTrue(class_exists($class), $class.' does not exist');
+ $this->assertTrue(class_exists($ext), $ext.' does not exist');
+ $this->assertAttributeInstanceOf($class, $name, $this->ci_obj);
+ $this->assertAttributeInstanceOf($ext, $name, $this->ci_obj);
+
+ // Test reloading with object name
+ $obj = 'exttest';
+ $this->assertNull($this->load->library($lib, NULL, $obj));
+ $this->assertAttributeInstanceOf($class, $obj, $this->ci_obj);
+ $this->assertAttributeInstanceOf($ext, $obj, $this->ci_obj);
+
+ // Test reloading
+ unset($this->ci_obj->$name);
+ $this->assertNull($this->load->library($lib));
+ $this->assertObjectNotHasAttribute($name, $this->ci_obj);
+
+ // Create baseless library
+ $name = 'ext_baseless_lib';
+ $lib = ucfirst($name);
+ $class = $this->prefix.$lib;
+ $this->ci_vfs_create($class, '<?php class '.$class.' { }', $this->ci_app_root, 'libraries');
+
+ // Test missing base class
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: Unable to load the requested class: '.$lib
+ );
+ $this->assertNull($this->load->library($lib));
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::library
- */
public function test_library_config()
{
- // Create libraries directory with test library
+ // Create library in VFS
$lib = 'unit_test_config_lib';
$class = 'CI_'.ucfirst($lib);
$content = '<?php class '.$class.' { public function __construct($params) { $this->config = $params; } }';
@@ -67,16 +121,16 @@ class Loader_test extends CI_TestCase {
$this->assertTrue(class_exists($class), $class.' does not exist');
$this->assertAttributeInstanceOf($class, $obj, $this->ci_obj);
$this->assertEquals($cfg, $this->ci_obj->$obj->config);
+
+ // Test is_loaded
+ $this->assertEquals($obj, $this->load->is_loaded($lib));
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::library
- */
public function test_load_library_in_application_dir()
{
- // Create libraries directory in app path with test library
+ // Create library in VFS
$lib = 'super_test_library';
$class = ucfirst($lib);
$this->ci_vfs_create($lib, '<?php class '.$class.' { }', $this->ci_app_root, 'libraries');
@@ -91,12 +145,9 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::driver
- */
public function test_driver()
{
- // Create libraries directory with test driver
+ // Create driver in VFS
$driver = 'unit_test_driver';
$dir = ucfirst($driver);
$class = 'CI_'.$dir;
@@ -122,29 +173,11 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::model
- */
- public function test_non_existent_model()
- {
- $this->setExpectedException(
- 'RuntimeException',
- 'CI Error: Unable to locate the model you have specified: ci_test_nonexistent_model.php'
- );
-
- $this->load->model('ci_test_nonexistent_model.php');
- }
-
- // --------------------------------------------------------------------
-
- /**
- * @covers CI_Loader::model
- */
public function test_models()
{
$this->ci_set_core_class('model', 'CI_Model');
- // Create models directory with test model
+ // Create model in VFS
$model = 'unit_test_model';
$class = ucfirst($model);
$content = '<?php class '.$class.' extends CI_Model {} ';
@@ -162,37 +195,88 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
+ public function test_model_subdir()
+ {
+ // Make sure base class is loaded - we'll test _ci_include later
+ $this->ci_core_class('model');
+
+ // Create modelin VFS
+ $model = 'test_sub_model';
+ $base = 'CI_Model';
+ $class = ucfirst($model);
+ $subdir = 'cars';
+ $this->ci_vfs_create($model, '<?php class '.$class.' extends '.$base.' { }', $this->ci_app_root,
+ array('models', $subdir));
+
+ // Load model
+ $name = 'testors';
+ $this->assertNull($this->load->model($subdir.'/'.$model, $name));
+
+ // Was the model class instantiated?
+ $this->assertTrue(class_exists($class));
+ $this->assertObjectHasAttribute($name, $this->ci_obj);
+ $this->assertAttributeInstanceOf($base, $name, $this->ci_obj);
+ $this->assertAttributeInstanceOf($class, $name, $this->ci_obj);
+
+ // Test name conflict
+ $obj = 'conflict';
+ $this->ci_obj->$obj = new StdClass();
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: The model name you are loading is the name of a resource that is already being used: '.$obj
+ );
+ $this->load->model('not_real', $obj);
+ }
+
+ // --------------------------------------------------------------------
+
+ public function test_non_existent_model()
+ {
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: Unable to locate the model you have specified: ci_test_nonexistent_model.php'
+ );
+
+ $this->load->model('ci_test_nonexistent_model.php');
+ }
+
+ // --------------------------------------------------------------------
+
// public function testDatabase()
// {
- // $this->assertEquals(NULL, $this->load->database());
- // $this->assertEquals(NULL, $this->load->dbutil());
+ // $this->assertNull($this->load->database());
+ // $this->assertNull($this->load->dbutil());
// }
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::view
- */
public function test_load_view()
{
- $this->ci_set_core_class('output', 'CI_Output');
-
- // Create views directory with test view
+ // Create view in VFS
$view = 'unit_test_view';
- $content = 'This is my test page. <?php echo $hello; ?>';
- $this->ci_vfs_create($view, $content, $this->ci_app_root, 'views');
-
- // Use the optional return parameter in this test, so the view is not
- // run through the output class.
- $out = $this->load->view($view, array('hello' => "World!"), TRUE);
- $this->assertEquals('This is my test page. World!', $out);
+ $var = 'hello';
+ $value = 'World!';
+ $content = 'This is my test page. ';
+ $this->ci_vfs_create($view, $content.'<?php echo $'.$var.';', $this->ci_app_root, 'views');
+
+ // Test returning view
+ $out = $this->load->view($view, array($var => $value), TRUE);
+ $this->assertEquals($content.$value, $out);
+
+ // Mock output class
+ $class = 'Mock_Load_Output';
+ $prop = 'output';
+ eval('class '.$class.' { public function append_output($out) { $this->'.$prop.' = $out; } }');
+ $this->ci_instance_var('output', new $class());
+
+ // Test view output
+ $this->load->view($view, array($var => $value));
+ $this->assertObjectHasAttribute($prop, $this->ci_obj->output);
+ $this->assertEquals($content.$value, $this->ci_obj->output->$prop);
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::view
- */
public function test_non_existent_view()
{
$this->setExpectedException(
@@ -205,12 +289,9 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::file
- */
public function test_file()
{
- // Create views directory with test file
+ // Create view in VFS
$dir = 'views';
$file = 'ci_test_mock_file';
$content = 'Here is a test file, which we will load now.';
@@ -231,49 +312,66 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::vars
- */
public function test_vars()
{
- $this->assertNull($this->load->vars(array('foo' => 'bar')));
- $this->assertNull($this->load->vars('foo', 'bar'));
+ $key1 = 'foo';
+ $val1 = 'bar';
+ $key2 = 'boo';
+ $val2 = 'hoo';
+ $this->assertNull($this->load->vars(array($key1 => $val1)));
+ $this->assertNull($this->load->vars($key2, $val2));
+ $this->assertEquals($val1, $this->load->get_var($key1));
+ $this->assertEquals(array($key1 => $val1, $key2 => $val2), $this->load->get_vars());
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::helper
- */
public function test_helper()
{
- // Create helper directory in app path with test helper
+ // Create helper in VFS
$helper = 'test';
$func = '_my_helper_test_func';
$content = '<?php function '.$func.'() { return true; } ';
- $this->ci_vfs_create($helper.'_helper', $content, $this->ci_app_root, 'helpers');
+ $this->ci_vfs_create($helper.'_helper', $content, $this->ci_base_root, 'helpers');
+
+ // Create helper extension
+ $exfunc = '_my_extension_func';
+ $content = '<?php function '.$exfunc.'() { return true; } ';
+ $this->ci_vfs_create($this->prefix.$helper.'_helper', $content, $this->ci_app_root, 'helpers');
// Load helper
- $this->assertEquals(NULL, $this->load->helper($helper));
+ $this->assertNull($this->load->helper($helper));
$this->assertTrue(function_exists($func), $func.' does not exist');
+ $this->assertTrue(function_exists($exfunc), $exfunc.' does not exist');
+
+ // Create baseless extension
+ $ext = 'bad_ext';
+ $this->ci_vfs_create($this->prefix.$ext.'_helper', '', $this->ci_app_root, 'helpers');
- // Test non-existent helper
+ // Test bad extension
$this->setExpectedException(
'RuntimeException',
- 'CI Error: Unable to load the requested file: helpers/bad_helper.php'
+ 'CI Error: Unable to load the requested file: helpers/'.$ext.'_helper.php'
);
+ $this->load->helper($ext);
+ }
+
+ // --------------------------------------------------------------------
+ public function test_non_existent_helper()
+ {
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: Unable to load the requested file: helpers/bad_helper.php'
+ );
$this->load->helper('bad');
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::helper
- */
public function test_loading_multiple_helpers()
{
- // Create helper directory in base path with test helpers
+ // Create helpers in VFS
$helpers = array();
$funcs = array();
$files = array();
@@ -287,7 +385,7 @@ class Loader_test extends CI_TestCase {
$this->ci_vfs_create($files, NULL, $this->ci_base_root, 'helpers');
// Load helpers
- $this->assertEquals(NULL, $this->load->helpers($helpers));
+ $this->assertNull($this->load->helpers($helpers));
// Verify helper existence
foreach ($funcs as $func) {
@@ -297,40 +395,36 @@ class Loader_test extends CI_TestCase {
// --------------------------------------------------------------------
- // public function testLanguage()
- // {
- // $this->assertEquals(NULL, $this->load->language('test'));
- // }
+ public function test_language()
+ {
+ // Create mock Lang class with load stub
+ $class = 'Mock_Load_Lang';
+ $prop = '_file';
+ eval('class '.$class.' { public function load($file, $lang) { $this->'.$prop.' = $file; } }');
+ $this->ci_instance_var('lang', new $class());
+
+ // Does the right file get loaded?
+ $file = 'test';
+ $this->assertNull($this->load->language($file));
+ $this->assertObjectHasAttribute($prop, $this->ci_obj->lang);
+ $this->assertEquals($file, $this->ci_obj->lang->$prop);
+ }
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::add_package_path
- * @covers CI_Loader::get_package_paths
- * @covers CI_Loader::remove_package_path
- */
public function test_packages()
{
- // Create third-party directory in app path with model
+ // Create model in VFS package path
$dir = 'third-party';
$lib = 'unit_test_package';
$class = 'CI_'.ucfirst($lib);
- $content = '<?php class '.$class.' { } ';
- $this->ci_vfs_create($lib, $content, $this->ci_app_root, $dir);
-
- // Test failed load without path
- $this->setExpectedException(
- 'RuntimeException',
- 'CI Error: Unable to load the requested class: '.$lib
- );
- $this->load->library($lib);
+ $this->ci_vfs_create($lib, '<?php class '.$class.' { }', $this->ci_app_root, array($dir, 'libraries'));
- // Clear exception and get paths
- $this->setExpectedException(NULL);
+ // Get paths
$paths = $this->load->get_package_paths(TRUE);
// Add path and verify
- $path = APPPATH.$dir;
+ $path = APPPATH.$dir.'/';
$this->assertNull($this->load->add_package_path($path));
$this->assertContains($path, $this->load->get_package_paths(TRUE));
@@ -338,51 +432,63 @@ class Loader_test extends CI_TestCase {
$this->assertNull($this->load->library($lib));
$this->assertTrue(class_exists($class), $class.' does not exist');
+ // Add another path
+ $path2 = APPPATH.'another/';
+ $this->assertNull($this->load->add_package_path($path2));
+ $this->assertContains($path2, $this->load->get_package_paths(TRUE));
+
+ // Remove last path
+ $this->assertNull($this->load->remove_package_path());
+ $this->assertNotContains($path2, $this->load->get_package_paths(TRUE));
+
// Remove path and verify restored paths
$this->assertNull($this->load->remove_package_path($path));
$this->assertEquals($paths, $this->load->get_package_paths(TRUE));
+
+ // Test failed load without path
+ $this->setExpectedException(
+ 'RuntimeException',
+ 'CI Error: Unable to load the requested class: '.$lib
+ );
+ $this->load->library($lib);
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::config
- */
public function test_load_config()
{
- $this->assertNull($this->load->config('config', FALSE));
+ $cfg = 'someconfig';
+ $this->assertNull($this->load->config($cfg, FALSE));
+ $this->assertContains($cfg, $this->ci_obj->config->loaded);
}
// --------------------------------------------------------------------
- /**
- * @covers CI_Loader::_ci_autoloader
- */
- public function test_autoloader()
+ public function test_initialize()
{
- // Create helper directory in app path with test helper
+ // Create helper in VFS
$helper = 'autohelp';
$hlp_func = '_autohelp_test_func';
- $content = '<?php function '.$hlp_func.'() { return true; } ';
+ $content = '<?php function '.$hlp_func.'() { return true; }';
$this->ci_vfs_create($helper.'_helper', $content, $this->ci_app_root, 'helpers');
- // Create libraries directory in base path with test library
+ // Create library in VFS
$lib = 'autolib';
$lib_class = 'CI_'.ucfirst($lib);
$this->ci_vfs_create($lib, '<?php class '.$lib_class.' { }', $this->ci_base_root, 'libraries');
- // Create test driver
+ // Create driver in VFS
$drv = 'autodrv';
$subdir = ucfirst($drv);
$drv_class = 'CI_'.$subdir;
- $this->ci_vfs_create($drv, '<?php class '.$drv_class.' { }', $this->ci_base_root, 'libraries/'.$subdir);
+ $this->ci_vfs_create($drv, '<?php class '.$drv_class.' { }', $this->ci_base_root, array('libraries', $subdir));
- // Create package directory in app path with model
+ // Create model in VFS package path
$dir = 'testdir';
$path = APPPATH.$dir.'/';
$model = 'automod';
$mod_class = ucfirst($model);
- $this->ci_vfs_create($model, '<?php class '.$mod_class.' { }', $this->ci_app_root, $dir.'/models');
+ $this->ci_vfs_create($model, '<?php class '.$mod_class.' { }', $this->ci_app_root, array($dir, 'models'));
// Create autoloader config
$cfg = array(
@@ -391,12 +497,12 @@ class Loader_test extends CI_TestCase {
'libraries' => array($lib),
'drivers' => array($drv),
'model' => array($model),
- 'config' => array()
+ 'config' => array('config1', 'config2')
);
$this->ci_vfs_create('autoload', '<?php $autoload = '.var_export($cfg, TRUE).';', $this->ci_app_root, 'config');
- // Run autoloader
- $this->load->autoload();
+ // Run initialize and autoloader
+ $this->load->initialize();
// Verify path
$this->assertContains($path, $this->load->get_package_paths());
@@ -415,6 +521,9 @@ class Loader_test extends CI_TestCase {
// Verify model
$this->assertTrue(class_exists($mod_class), $mod_class.' does not exist');
$this->assertAttributeInstanceOf($mod_class, $model, $this->ci_obj);
+
+ // Verify config calls
+ $this->assertEquals($cfg['config'], $this->ci_obj->config->loaded);
}
} \ No newline at end of file
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php
index e581d4b02..f16492945 100644
--- a/tests/mocks/ci_testcase.php
+++ b/tests/mocks/ci_testcase.php
@@ -38,6 +38,7 @@ class CI_TestCase extends PHPUnit_Framework_TestCase {
$this->ci_vfs_root = vfsStream::setup();
$this->ci_app_root = vfsStream::newDirectory('application')->at($this->ci_vfs_root);
$this->ci_base_root = vfsStream::newDirectory('system')->at($this->ci_vfs_root);
+ $this->ci_view_root = vfsStream::newDirectory('views')->at($this->ci_app_root);
if (method_exists($this, 'set_up'))
{
diff --git a/tests/mocks/ci_testconfig.php b/tests/mocks/ci_testconfig.php
index eb318ddeb..0c52bb984 100644
--- a/tests/mocks/ci_testconfig.php
+++ b/tests/mocks/ci_testconfig.php
@@ -4,14 +4,16 @@ class CI_TestConfig {
public $config = array();
public $_config_paths = array(APPPATH);
+ public $loaded = array();
public function item($key)
{
return isset($this->config[$key]) ? $this->config[$key] : FALSE;
}
- public function load($arg1, $arg2, $arg3)
+ public function load($file, $arg2 = FALSE, $arg3 = FALSE)
{
+ $this->loaded[] = $file;
return TRUE;
}
diff --git a/tests/mocks/core/common.php b/tests/mocks/core/common.php
index b001074c8..9289b2716 100644
--- a/tests/mocks/core/common.php
+++ b/tests/mocks/core/common.php
@@ -170,9 +170,10 @@ if ( ! function_exists('is_really_writable'))
if ( ! function_exists('is_loaded'))
{
- function is_loaded()
+ function &is_loaded()
{
- throw new Exception('Bad Isolation: mock up environment');
+ $loaded = array();
+ return $loaded;
}
}
@@ -190,4 +191,4 @@ if ( ! function_exists('set_status_header'))
{
return TRUE;
}
-}
+} \ No newline at end of file
diff --git a/tests/mocks/core/loader.php b/tests/mocks/core/loader.php
deleted file mode 100644
index 7ea4da369..000000000
--- a/tests/mocks/core/loader.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
-class Mock_Core_Loader extends CI_Loader {
-
- /**
- * Give public access to _ci_autoloader for testing
- */
- public function autoload()
- {
- $this->_ci_autoloader();
- }
-
-}
diff --git a/tests/mocks/database/schema/skeleton.php b/tests/mocks/database/schema/skeleton.php
index 18e1ddd4d..69e3c187e 100644
--- a/tests/mocks/database/schema/skeleton.php
+++ b/tests/mocks/database/schema/skeleton.php
@@ -30,7 +30,7 @@ class Mock_Database_Schema_Skeleton {
CI_TestCase::instance()->ci_instance_var('db', $db);
- $loader = new Mock_Core_Loader();
+ $loader = new CI_Loader();
$loader->dbforge();
$forge = CI_TestCase::instance()->ci_instance_var('dbforge');