| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Core;
- use Cake\Core\App;
- use Cake\Core\Plugin;
- use Cake\TestSuite\TestCase;
- use TestApp\Core\TestApp;
- /**
- * AppTest class
- */
- class AppTest extends TestCase
- {
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- Plugin::unload();
- }
- /**
- * testClassname
- *
- * $checkCake and $existsInCake are derived from the input parameters
- *
- * @param string $class Class name
- * @param string $type Class type
- * @param string $suffix Class suffix
- * @param bool $existsInBase Whether class exists in base.
- * @param mixed $expected Expected value.
- * @return void
- * @dataProvider classnameProvider
- */
- public function testClassname($class, $type, $suffix = '', $existsInBase = false, $expected = false)
- {
- static::setAppNamespace();
- $i = 0;
- TestApp::$existsInBaseCallback = function ($name, $namespace) use ($existsInBase, $class, $expected, &$i) {
- if ($i++ === 0) {
- return $existsInBase;
- }
- $checkCake = (!$existsInBase || strpos('.', $class));
- if ($checkCake) {
- return (bool)$expected;
- }
- return false;
- };
- $return = TestApp::classname($class, $type, $suffix);
- $this->assertSame($expected, $return);
- }
- /**
- * testShortName
- *
- * @param string $class Class name
- * @param string $type Class type
- * @param string $suffix Class suffix
- * @param mixed $expected Expected value.
- * @return void
- * @dataProvider shortNameProvider
- */
- public function testShortName($class, $type, $suffix = '', $expected = false)
- {
- static::setAppNamespace();
- $return = TestApp::shortName($class, $type, $suffix);
- $this->assertSame($expected, $return);
- }
- /**
- * testShortNameWithNestedAppNamespace
- *
- * @return void
- */
- public function testShortNameWithNestedAppNamespace()
- {
- static::setAppNamespace('TestApp/Nested');
- $return = TestApp::shortName(
- 'TestApp/Nested/Controller/PagesController',
- 'Controller',
- 'Controller'
- );
- $this->assertSame('Pages', $return);
- static::setAppNamespace();
- }
- /**
- * classnameProvider
- *
- * Return test permutations for testClassname method. Format:
- * classname
- * type
- * suffix
- * existsInBase (Base meaning App or plugin namespace)
- * expected return value
- *
- * @return void
- */
- public function classnameProvider()
- {
- return [
- ['Does', 'Not', 'Exist'],
- ['Exists', 'In', 'App', true, 'TestApp\In\ExistsApp'],
- ['Also/Exists', 'In', 'App', true, 'TestApp\In\Also\ExistsApp'],
- ['Also', 'Exists/In', 'App', true, 'TestApp\Exists\In\AlsoApp'],
- ['Also', 'Exists/In/Subfolder', 'App', true, 'TestApp\Exists\In\Subfolder\AlsoApp'],
- ['No', 'Suffix', '', true, 'TestApp\Suffix\No'],
- ['MyPlugin.Exists', 'In', 'Suffix', true, 'MyPlugin\In\ExistsSuffix'],
- ['MyPlugin.Also/Exists', 'In', 'Suffix', true, 'MyPlugin\In\Also\ExistsSuffix'],
- ['MyPlugin.Also', 'Exists/In', 'Suffix', true, 'MyPlugin\Exists\In\AlsoSuffix'],
- ['MyPlugin.Also', 'Exists/In/Subfolder', 'Suffix', true, 'MyPlugin\Exists\In\Subfolder\AlsoSuffix'],
- ['MyPlugin.No', 'Suffix', '', true, 'MyPlugin\Suffix\No'],
- ['Vend/MPlugin.Exists', 'In', 'Suffix', true, 'Vend\MPlugin\In\ExistsSuffix'],
- ['Vend/MPlugin.Also/Exists', 'In', 'Suffix', true, 'Vend\MPlugin\In\Also\ExistsSuffix'],
- ['Vend/MPlugin.Also', 'Exists/In', 'Suffix', true, 'Vend\MPlugin\Exists\In\AlsoSuffix'],
- ['Vend/MPlugin.Also', 'Exists/In/Subfolder', 'Suffix', true, 'Vend\MPlugin\Exists\In\Subfolder\AlsoSuffix'],
- ['Vend/MPlugin.No', 'Suffix', '', true, 'Vend\MPlugin\Suffix\No'],
- ['Exists', 'In', 'Cake', false, 'Cake\In\ExistsCake'],
- ['Also/Exists', 'In', 'Cake', false, 'Cake\In\Also\ExistsCake'],
- ['Also', 'Exists/In', 'Cake', false, 'Cake\Exists\In\AlsoCake'],
- ['Also', 'Exists/In/Subfolder', 'Cake', false, 'Cake\Exists\In\Subfolder\AlsoCake'],
- ['No', 'Suffix', '', false, 'Cake\Suffix\No'],
- // Realistic examples returning nothing
- ['App', 'Core', 'Suffix'],
- ['Auth', 'Controller/Component'],
- ['Unknown', 'Controller', 'Controller'],
- // Real examples returning classnames
- ['App', 'Core', '', false, 'Cake\Core\App'],
- ['Auth', 'Controller/Component', 'Component', false, 'Cake\Controller\Component\AuthComponent'],
- ['File', 'Cache/Engine', 'Engine', false, 'Cake\Cache\Engine\FileEngine'],
- ['Command', 'Shell/Task', 'Task', false, 'Cake\Shell\Task\CommandTask'],
- ['Upgrade/Locations', 'Shell/Task', 'Task', false, 'Cake\Shell\Task\Upgrade\LocationsTask'],
- ['Pages', 'Controller', 'Controller', true, 'TestApp\Controller\PagesController'],
- ];
- }
- /**
- * pluginSplitNameProvider
- *
- * Return test permutations for testClassname method. Format:
- * classname
- * type
- * suffix
- * expected return value
- *
- * @return void
- */
- public function shortNameProvider()
- {
- return [
- ['TestApp\In\ExistsApp', 'In', 'App', 'Exists'],
- ['TestApp\In\Also\ExistsApp', 'In', 'App', 'Also/Exists'],
- ['TestApp\Exists\In\AlsoApp', 'Exists/In', 'App', 'Also'],
- ['TestApp\Exists\In\Subfolder\AlsoApp', 'Exists/In/Subfolder', 'App', 'Also'],
- ['TestApp\Suffix\No', 'Suffix', '', 'No'],
- ['MyPlugin\In\ExistsSuffix', 'In', 'Suffix', 'MyPlugin.Exists'],
- ['MyPlugin\In\Also\ExistsSuffix', 'In', 'Suffix', 'MyPlugin.Also/Exists'],
- ['MyPlugin\Exists\In\AlsoSuffix', 'Exists/In', 'Suffix', 'MyPlugin.Also'],
- ['MyPlugin\Exists\In\Subfolder\AlsoSuffix', 'Exists/In/Subfolder', 'Suffix', 'MyPlugin.Also'],
- ['MyPlugin\Suffix\No', 'Suffix', '', 'MyPlugin.No'],
- ['Vend\MPlugin\In\ExistsSuffix', 'In', 'Suffix', 'Vend/MPlugin.Exists'],
- ['Vend\MPlugin\In\Also\ExistsSuffix', 'In', 'Suffix', 'Vend/MPlugin.Also/Exists'],
- ['Vend\MPlugin\Exists\In\AlsoSuffix', 'Exists/In', 'Suffix', 'Vend/MPlugin.Also'],
- ['Vend\MPlugin\Exists\In\Subfolder\AlsoSuffix', 'Exists/In/Subfolder', 'Suffix', 'Vend/MPlugin.Also'],
- ['Vend\MPlugin\Suffix\No', 'Suffix', '', 'Vend/MPlugin.No'],
- ['Cake\In\ExistsCake', 'In', 'Cake', 'Exists'],
- ['Cake\In\Also\ExistsCake', 'In', 'Cake', 'Also/Exists'],
- ['Cake\Exists\In\AlsoCake', 'Exists/In', 'Cake', 'Also'],
- ['Cake\Exists\In\Subfolder\AlsoCake', 'Exists/In/Subfolder', 'Cake', 'Also'],
- ['Cake\Suffix\No', 'Suffix', '', 'No'],
- ['Muffin\Webservice\Webservice\EndpointWebservice', 'Webservice', 'Webservice', 'Muffin/Webservice.Endpoint'],
- // Real examples returning classnames
- ['Cake\Core\App', 'Core', '', 'App'],
- ['Cake\Controller\Component\AuthComponent', 'Controller/Component', 'Component', 'Auth'],
- ['Cake\Cache\Engine\FileEngine', 'Cache/Engine', 'Engine', 'File'],
- ['Cake\Shell\Task\CommandTask', 'Shell/Task', 'Task', 'Command'],
- ['Cake\Shell\Task\Upgrade\LocationsTask', 'Shell/Task', 'Task', 'Upgrade/Locations'],
- ['TestApp\Controller\PagesController', 'Controller', 'Controller', 'Pages'],
- ];
- }
- /**
- * test path() with a plugin.
- *
- * @return void
- */
- public function testPathWithPlugins()
- {
- $basepath = TEST_APP . 'Plugin' . DS;
- Plugin::load('TestPlugin');
- $result = App::path('Controller', 'TestPlugin');
- $this->assertPathEquals($basepath . 'TestPlugin' . DS . 'src' . DS . 'Controller' . DS, $result[0]);
- Plugin::load('Company/TestPluginThree');
- $result = App::path('Controller', 'Company/TestPluginThree');
- $expected = $basepath . 'Company' . DS . 'TestPluginThree' . DS . 'src' . DS . 'Controller' . DS;
- $this->assertPathEquals($expected, $result[0]);
- }
- /**
- * testCore method
- *
- * @return void
- */
- public function testCore()
- {
- $model = App::core('Model');
- $this->assertEquals([CAKE . 'Model' . DS], $model);
- $view = App::core('View');
- $this->assertEquals([CAKE . 'View' . DS], $view);
- $controller = App::core('Controller');
- $this->assertEquals([CAKE . 'Controller' . DS], $controller);
- $component = App::core('Controller/Component');
- $this->assertEquals([CAKE . 'Controller' . DS . 'Component' . DS], str_replace('/', DS, $component));
- $auth = App::core('Controller/Component/Auth');
- $this->assertEquals([CAKE . 'Controller' . DS . 'Component' . DS . 'Auth' . DS], str_replace('/', DS, $auth));
- $datasource = App::core('Model/Datasource');
- $this->assertEquals([CAKE . 'Model' . DS . 'Datasource' . DS], str_replace('/', DS, $datasource));
- }
- }
|