| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797 |
- <?php
- /**
- * AppTest file.
- *
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @package Cake.Test.Case.Core
- * @since CakePHP(tm) v 2.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- /**
- * AppTest class
- *
- * @package Cake.Test.Case.Core
- */
- class AppTest extends CakeTestCase {
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown() {
- CakePlugin::unload();
- }
- /**
- * testBuild method
- *
- * @return void
- */
- public function testBuild() {
- $old = App::path('Model');
- $expected = array(
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $old);
- App::build(array('Model' => array('/path/to/models/')));
- $new = App::path('Model');
- $expected = array(
- '/path/to/models/',
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $new);
- App::build();
- App::build(array('Model' => array('/path/to/models/')), App::PREPEND);
- $new = App::path('Model');
- $expected = array(
- '/path/to/models/',
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $new);
- App::build();
- App::build(array('Model' => array('/path/to/models/')), App::APPEND);
- $new = App::path('Model');
- $expected = array(
- APP . 'Model' . DS,
- APP . 'models' . DS,
- '/path/to/models/'
- );
- $this->assertEqual($expected, $new);
- App::build();
- App::build(array(
- 'Model' => array('/path/to/models/'),
- 'Controller' => array('/path/to/controllers/'),
- ), App::APPEND);
- $new = App::path('Model');
- $expected = array(
- APP . 'Model' . DS,
- APP . 'models' . DS,
- '/path/to/models/'
- );
- $this->assertEqual($expected, $new);
- $new = App::path('Controller');
- $expected = array(
- APP . 'Controller' . DS,
- APP . 'controllers' . DS,
- '/path/to/controllers/'
- );
- $this->assertEqual($expected, $new);
- App::build(); //reset defaults
- $defaults = App::path('Model');
- $this->assertEqual($old, $defaults);
- }
- /**
- * tests that it is possible to set up paths using the cake 1.3 notation for them (models, behaviors, controllers...)
- *
- * @return void
- */
- public function testCompatibleBuild() {
- $old = App::path('models');
- $expected = array(
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $old);
- App::build(array('models' => array('/path/to/models/')));
- $new = App::path('models');
- $expected = array(
- '/path/to/models/',
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $new);
- $this->assertEqual($expected, App::path('Model'));
- App::build(array('datasources' => array('/path/to/datasources/')));
- $expected = array(
- '/path/to/datasources/',
- APP . 'Model' . DS . 'Datasource' . DS,
- APP . 'models' . DS . 'datasources' . DS
- );
- $result = App::path('datasources');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('Model/Datasource'));
- App::build(array('behaviors' => array('/path/to/behaviors/')));
- $expected = array(
- '/path/to/behaviors/',
- APP . 'Model' . DS . 'Behavior' . DS,
- APP . 'models' . DS . 'behaviors' . DS
- );
- $result = App::path('behaviors');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('Model/Behavior'));
- App::build(array('controllers' => array('/path/to/controllers/')));
- $expected = array(
- '/path/to/controllers/',
- APP . 'Controller' . DS,
- APP . 'controllers' . DS
- );
- $result = App::path('controllers');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('Controller'));
- App::build(array('components' => array('/path/to/components/')));
- $expected = array(
- '/path/to/components/',
- APP . 'Controller' . DS . 'Component' . DS,
- APP . 'controllers' . DS . 'components' . DS
- );
- $result = App::path('components');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('Controller/Component'));
- App::build(array('views' => array('/path/to/views/')));
- $expected = array(
- '/path/to/views/',
- APP . 'View' . DS,
- APP . 'views' . DS
- );
- $result = App::path('views');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('View'));
- App::build(array('helpers' => array('/path/to/helpers/')));
- $expected = array(
- '/path/to/helpers/',
- APP . 'View' . DS . 'Helper' .DS,
- APP . 'views' . DS . 'helpers' . DS
- );
- $result = App::path('helpers');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('View/Helper'));
- App::build(array('shells' => array('/path/to/shells/')));
- $expected = array(
- '/path/to/shells/',
- APP . 'Console' . DS . 'Command' . DS,
- APP . 'console' . DS . 'shells' . DS,
- );
- $result = App::path('shells');
- $this->assertEqual($expected, $result);
- $this->assertEqual($expected, App::path('Console/Command'));
- App::build(); //reset defaults
- $defaults = App::path('Model');
- $this->assertEqual($old, $defaults);
- }
- /**
- * test path() with a plugin.
- *
- * @return void
- */
- public function testPathWithPlugins() {
- $basepath = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS;
- App::build(array(
- 'Plugin' => array($basepath),
- ));
- CakePlugin::load('TestPlugin');
- $result = App::path('Vendor', 'TestPlugin');
- $this->assertEquals($basepath . 'TestPlugin' . DS . 'Vendor' . DS, $result[0]);
- }
- /**
- * testBuildWithReset method
- *
- * @return void
- */
- public function testBuildWithReset() {
- $old = App::path('Model');
- $expected = array(
- APP . 'Model' . DS,
- APP . 'models' . DS
- );
- $this->assertEqual($expected, $old);
- App::build(array('Model' => array('/path/to/models/')), App::RESET);
- $new = App::path('Model');
- $expected = array(
- '/path/to/models/'
- );
- $this->assertEqual($expected, $new);
- App::build(); //reset defaults
- $defaults = App::path('Model');
- $this->assertEqual($old, $defaults);
- }
- /**
- * testCore method
- *
- * @return void
- */
- public function testCore() {
- $model = App::core('Model');
- $this->assertEqual(array(CAKE . 'Model' . DS), $model);
- $view = App::core('View');
- $this->assertEqual(array(CAKE . 'View' . DS), $view);
- $controller = App::core('Controller');
- $this->assertEqual(array(CAKE . 'Controller' . DS), $controller);
- $component = App::core('Controller/Component');
- $this->assertEqual(array(CAKE . 'Controller' . DS . 'Component' . DS), str_replace('/', DS, $component));
- $auth = App::core('Controller/Component/Auth');
- $this->assertEqual(array(CAKE . 'Controller' . DS . 'Component' . DS . 'Auth' . DS), str_replace('/', DS, $auth));
- $datasource = App::core('Model/Datasource');
- $this->assertEqual(array(CAKE . 'Model' . DS . 'Datasource' . DS), str_replace('/', DS, $datasource));
- }
- /**
- * testListObjects method
- *
- * @return void
- */
- public function testListObjects() {
- $result = App::objects('class', CAKE . 'Routing', false);
- $this->assertTrue(in_array('Dispatcher', $result));
- $this->assertTrue(in_array('Router', $result));
- App::build(array(
- 'Model/Behavior' => App::core('Model/Behavior'),
- 'Controller' => App::core('Controller'),
- 'Controller/Component' => App::core('Controller/Component'),
- 'View' => App::core('View'),
- 'Model' => App::core('Model'),
- 'View/Helper' => App::core('View/Helper'),
- ), App::RESET);
- $result = App::objects('behavior', null, false);
- $this->assertTrue(in_array('TreeBehavior', $result));
- $result = App::objects('Model/Behavior', null, false);
- $this->assertTrue(in_array('TreeBehavior', $result));
- $result = App::objects('controller', null, false);
- $this->assertTrue(in_array('PagesController', $result));
- $result = App::objects('Controller', null, false);
- $this->assertTrue(in_array('PagesController', $result));
- $result = App::objects('component', null, false);
- $this->assertTrue(in_array('AuthComponent', $result));
- $result = App::objects('Controller/Component', null, false);
- $this->assertTrue(in_array('AuthComponent', $result));
- $result = App::objects('view', null, false);
- $this->assertTrue(in_array('MediaView', $result));
- $result = App::objects('View', null, false);
- $this->assertTrue(in_array('MediaView', $result));
- $result = App::objects('helper', null, false);
- $this->assertTrue(in_array('HtmlHelper', $result));
- $result = App::objects('View/Helper', null, false);
- $this->assertTrue(in_array('HtmlHelper', $result));
- $result = App::objects('model', null, false);
- $this->assertTrue(in_array('AcoAction', $result));
- $result = App::objects('Model', null, false);
- $this->assertTrue(in_array('AcoAction', $result));
- $result = App::objects('file');
- $this->assertFalse($result);
- $result = App::objects('file', 'non_existing_configure');
- $expected = array();
- $this->assertEqual($expected, $result);
- $result = App::objects('NonExistingType');
- $this->assertEqual($result, array());
- App::build(array(
- 'plugins' => array(
- CAKE . 'Test' . DS . 'test_app' . DS . 'Lib' . DS
- )
- ));
- $result = App::objects('plugin', null, false);
- $this->assertTrue(in_array('Cache', $result));
- $this->assertTrue(in_array('Log', $result));
- App::build();
- }
- /**
- * Make sure that .svn and friends are excluded from App::objects('plugin')
- */
- public function testListObjectsIgnoreDotDirectories() {
- $path = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS;
- App::build(array(
- 'plugins' => array($path)
- ), App::RESET);
- mkdir($path . '.svn');
- $result = App::objects('plugin', null, false);
- rmdir($path . '.svn');
- $this->assertNotContains('.svn', $result);
- }
- /**
- * Tests listing objects within a plugin
- *
- * @return void
- */
- public function testListObjectsInPlugin() {
- App::build(array(
- 'Model' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Model' . DS),
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ), App::RESET);
- CakePlugin::loadAll();
- $result = App::objects('TestPlugin.model');
- $this->assertTrue(in_array('TestPluginPost', $result));
- $result = App::objects('TestPlugin.Model');
- $this->assertTrue(in_array('TestPluginPost', $result));
- $result = App::objects('TestPlugin.behavior');
- $this->assertTrue(in_array('TestPluginPersisterOne', $result));
- $result = App::objects('TestPlugin.Model/Behavior');
- $this->assertTrue(in_array('TestPluginPersisterOne', $result));
- $result = App::objects('TestPlugin.helper');
- $expected = array('OtherHelperHelper', 'PluggedHelperHelper', 'TestPluginAppHelper');
- $this->assertEquals($expected, $result);
- $result = App::objects('TestPlugin.View/Helper');
- $expected = array('OtherHelperHelper', 'PluggedHelperHelper', 'TestPluginAppHelper');
- $this->assertEquals($expected, $result);
- $result = App::objects('TestPlugin.component');
- $this->assertTrue(in_array('OtherComponent', $result));
- $result = App::objects('TestPlugin.Controller/Component');
- $this->assertTrue(in_array('OtherComponent', $result));
- $result = App::objects('TestPluginTwo.behavior');
- $this->assertEquals($result, array());
- $result = App::objects('TestPluginTwo.Model/Behavior');
- $this->assertEquals($result, array());
- $result = App::objects('model', null, false);
- $this->assertTrue(in_array('Comment', $result));
- $this->assertTrue(in_array('Post', $result));
- $result = App::objects('Model', null, false);
- $this->assertTrue(in_array('Comment', $result));
- $this->assertTrue(in_array('Post', $result));
- App::build();
- }
- /**
- * test that pluginPath can find paths for plugins.
- *
- * @return void
- */
- public function testPluginPath() {
- App::build(array(
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ));
- CakePlugin::loadAll();
- $path = App::pluginPath('TestPlugin');
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS . 'TestPlugin' . DS;
- $this->assertEqual($path, $expected);
- $path = App::pluginPath('TestPluginTwo');
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS . 'TestPluginTwo' . DS;
- $this->assertEqual($path, $expected);
- App::build();
- }
- /**
- * test that pluginPath can find paths for plugins.
- *
- * @return void
- */
- public function testThemePath() {
- App::build(array(
- 'View' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS)
- ));
- $path = App::themePath('test_theme');
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Themed' . DS . 'TestTheme' . DS;
- $this->assertEqual($path, $expected);
- $path = App::themePath('TestTheme');
- $expected = CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Themed' . DS . 'TestTheme' . DS;
- $this->assertEqual($path, $expected);
- App::build();
- }
- /**
- * testClassLoading method
- *
- * @return void
- */
- public function testClassLoading() {
- $file = App::import('Model', 'Model', false);
- $this->assertTrue($file);
- $this->assertTrue(class_exists('Model'));
- $file = App::import('Controller', 'Controller', false);
- $this->assertTrue($file);
- $this->assertTrue(class_exists('Controller'));
- $file = App::import('Component', 'Auth', false);
- $this->assertTrue($file);
- $this->assertTrue(class_exists('AuthComponent'));
- $file = App::import('Shell', 'Shell', false);
- $this->assertTrue($file);
- $this->assertTrue(class_exists('Shell'));
- $file = App::import('Configure', 'PhpReader');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('PhpReader'));
- $file = App::import('Model', 'SomeRandomModelThatDoesNotExist', false);
- $this->assertFalse($file);
- $file = App::import('Model', 'AppModel', false);
- $this->assertTrue($file);
- $this->assertTrue(class_exists('AppModel'));
- $file = App::import('WrongType', null, true, array(), '');
- $this->assertFalse($file);
- $file = App::import('Model', 'NonExistingPlugin.NonExistingModel', false);
- $this->assertFalse($file);
- $file = App::import('Model', array('NonExistingPlugin.NonExistingModel'), false);
- $this->assertFalse($file);
- if (!class_exists('AppController', false)) {
- $classes = array_flip(get_declared_classes());
- $this->assertFalse(isset($classes['PagesController']));
- $this->assertFalse(isset($classes['AppController']));
- $file = App::import('Controller', 'Pages');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('PagesController'));
- $classes = array_flip(get_declared_classes());
- $this->assertTrue(isset($classes['PagesController']));
- $this->assertTrue(isset($classes['AppController']));
- $file = App::import('Behavior', 'Containable');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('ContainableBehavior'));
- $file = App::import('Component', 'RequestHandler');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('RequestHandlerComponent'));
- $file = App::import('Helper', 'Form');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('FormHelper'));
- $file = App::import('Model', 'NonExistingModel');
- $this->assertFalse($file);
- $file = App::import('Datasource', 'DboSource');
- $this->assertTrue($file);
- $this->assertTrue(class_exists('DboSource'));
- }
- App::build();
- }
- /**
- * test import() with plugins
- *
- * @return void
- */
- public function testPluginImporting() {
- App::build(array(
- 'libs' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Lib' . DS),
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ));
- CakePlugin::loadAll();
- $result = App::import('Controller', 'TestPlugin.Tests');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('TestPluginAppController'));
- $this->assertTrue(class_exists('TestsController'));
- $result = App::import('Lib', 'TestPlugin.TestPluginLibrary');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('TestPluginLibrary'));
- $result = App::import('Lib', 'Library');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('Library'));
- $result = App::import('Helper', 'TestPlugin.OtherHelper');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('OtherHelperHelper'));
- $result = App::import('Helper', 'TestPlugin.TestPluginApp');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('TestPluginAppHelper'));
- $result = App::import('Datasource', 'TestPlugin.TestSource');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('TestSource'));
- App::build();
- }
- /**
- * test that building helper paths actually works.
- *
- * @return void
- * @link http://cakephp.lighthouseapp.com/projects/42648/tickets/410
- */
- public function testImportingHelpersFromAlternatePaths() {
- $this->assertFalse(class_exists('BananaHelper', false), 'BananaHelper exists, cannot test importing it.');
- App::build(array(
- 'View/Helper' => array(
- CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS . 'Helper' . DS
- )
- ));
- $this->assertFalse(class_exists('BananaHelper', false), 'BananaHelper exists, cannot test importing it.');
- App::import('Helper', 'Banana');
- $this->assertTrue(class_exists('BananaHelper', false), 'BananaHelper was not loaded.');
- App::build();
- }
- /**
- * testFileLoading method
- *
- * @return void
- */
- public function testFileLoading () {
- $file = App::import('File', 'RealFile', false, array(), CAKE . 'Config' . DS . 'config.php');
- $this->assertTrue($file);
- $file = App::import('File', 'NoFile', false, array(), CAKE . 'Config' . DS . 'cake' . DS . 'config.php');
- $this->assertFalse($file);
- }
- /**
- * testFileLoadingWithArray method
- *
- * @return void
- */
- public function testFileLoadingWithArray() {
- $type = array('type' => 'File', 'name' => 'SomeName', 'parent' => false,
- 'file' => CAKE . DS . 'Config' . DS . 'config.php');
- $file = App::import($type);
- $this->assertTrue($file);
- $type = array('type' => 'File', 'name' => 'NoFile', 'parent' => false,
- 'file' => CAKE . 'Config' . DS . 'cake' . DS . 'config.php');
- $file = App::import($type);
- $this->assertFalse($file);
- }
- /**
- * testFileLoadingReturnValue method
- *
- * @return void
- */
- public function testFileLoadingReturnValue () {
- $file = App::import('File', 'Name', false, array(), CAKE . 'Config' . DS . 'config.php', true);
- $this->assertTrue(!empty($file));
- $this->assertTrue(isset($file['Cake.version']));
- $type = array('type' => 'File', 'name' => 'OtherName', 'parent' => false,
- 'file' => CAKE . 'Config' . DS . 'config.php', 'return' => true);
- $file = App::import($type);
- $this->assertTrue(!empty($file));
- $this->assertTrue(isset($file['Cake.version']));
- }
- /**
- * testLoadingWithSearch method
- *
- * @return void
- */
- public function testLoadingWithSearch () {
- $file = App::import('File', 'NewName', false, array(CAKE . 'Config' . DS), 'config.php');
- $this->assertTrue($file);
- $file = App::import('File', 'AnotherNewName', false, array(CAKE), 'config.php');
- $this->assertFalse($file);
- }
- /**
- * testLoadingWithSearchArray method
- *
- * @return void
- */
- public function testLoadingWithSearchArray() {
- $type = array(
- 'type' => 'File',
- 'name' => 'RandomName',
- 'parent' => false,
- 'file' => 'config.php',
- 'search' => array(CAKE . 'Config' . DS)
- );
- $file = App::import($type);
- $this->assertTrue($file);
- $type = array(
- 'type' => 'File',
- 'name' => 'AnotherRandomName',
- 'parent' => false,
- 'file' => 'config.php',
- 'search' => array(CAKE)
- );
- $file = App::import($type);
- $this->assertFalse($file);
- }
- /**
- * testMultipleLoading method
- *
- * @return void
- */
- public function testMultipleLoading() {
- if (class_exists('PersisterOne', false) || class_exists('PersisterTwo', false)) {
- $this->markTestSkipped('Cannot test loading of classes that exist.');
- }
- App::build(array(
- 'Model' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Model' . DS)
- ));
- $toLoad = array('PersisterOne', 'PersisterTwo');
- $load = App::import('Model', $toLoad);
- $this->assertTrue($load);
- $classes = array_flip(get_declared_classes());
- $this->assertTrue(isset($classes['PersisterOne']));
- $this->assertTrue(isset($classes['PersisterTwo']));
- $load = App::import('Model', array('PersisterOne', 'SomeNotFoundClass', 'PersisterTwo'));
- $this->assertFalse($load);
- }
- public function testLoadingVendor() {
- App::build(array(
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS),
- 'vendors' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Vendor'. DS),
- ), App::RESET);
- CakePlugin::loadAll();
- ob_start();
- $result = App::import('Vendor', 'css/TestAsset', array('ext' => 'css'));
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'this is the test asset css file');
- $result = App::import('Vendor', 'TestPlugin.sample/SamplePlugin');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('SamplePluginClassTestName'));
- $result = App::import('Vendor', 'sample/ConfigureTestVendorSample');
- $this->assertTrue($result);
- $this->assertTrue(class_exists('ConfigureTestVendorSample'));
- ob_start();
- $result = App::import('Vendor', 'SomeNameInSubfolder', array('file' => 'somename/some.name.php'));
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'This is a file with dot in file name');
- ob_start();
- $result = App::import('Vendor', 'TestHello', array('file' => 'Test'.DS.'hello.php'));
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'This is the hello.php file in Test directory');
- ob_start();
- $result = App::import('Vendor', 'MyTest', array('file' => 'Test'.DS.'MyTest.php'));
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'This is the MyTest.php file');
- ob_start();
- $result = App::import('Vendor', 'Welcome');
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'This is the welcome.php file in vendors directory');
- ob_start();
- $result = App::import('Vendor', 'TestPlugin.Welcome');
- $text = ob_get_clean();
- $this->assertTrue($result);
- $this->assertEqual($text, 'This is the welcome.php file in test_plugin/vendors directory');
- }
- /**
- * Tests that the automatic class loader will also find in "libs" folder for both
- * app and plugins if it does not find the class in other configured paths
- *
- */
- public function testLoadClassInLibs() {
- App::build(array(
- 'libs' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Lib' . DS),
- 'plugins' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)
- ), App::RESET);
- CakePlugin::loadAll();
- $this->assertFalse(class_exists('CustomLibClass', false));
- App::uses('CustomLibClass', 'TestPlugin.Custom/Package');
- $this->assertTrue(class_exists('CustomLibClass'));
- $this->assertFalse(class_exists('TestUtilityClass', false));
- App::uses('TestUtilityClass', 'Utility');
- $this->assertTrue(class_exists('CustomLibClass'));
- }
- /**
- * Tests that App::location() returns the defined path for a class
- *
- * @return void
- */
- public function testClassLocation() {
- App::uses('MyCustomClass', 'MyPackage/Name');
- $this->assertEquals('MyPackage/Name', App::location('MyCustomClass'));
- }
- /**
- * Test that paths() works.
- *
- * @return void
- */
- public function testPaths() {
- $result = App::paths();
- $this->assertArrayHasKey('Plugin', $result);
- $this->assertArrayHasKey('Controller', $result);
- $this->assertArrayHasKey('Controller/Component', $result);
- }
- }
|