| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console;
- use Cake\Console\TaskRegistry;
- use Cake\Core\App;
- use Cake\Core\Plugin;
- use Cake\TestSuite\TestCase;
- /**
- * Class TaskRegistryTest
- *
- */
- class TaskRegistryTest extends TestCase
- {
- /**
- * setUp
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $shell = $this->getMock('Cake\Console\Shell', [], [], '', false);
- $this->Tasks = new TaskRegistry($shell);
- }
- /**
- * tearDown
- *
- * @return void
- */
- public function tearDown()
- {
- unset($this->Tasks);
- parent::tearDown();
- }
- /**
- * test triggering callbacks on loaded tasks
- *
- * @return void
- */
- public function testLoad()
- {
- $result = $this->Tasks->load('Command');
- $this->assertInstanceOf('Cake\Shell\Task\CommandTask', $result);
- $this->assertInstanceOf('Cake\Shell\Task\CommandTask', $this->Tasks->Command);
- $result = $this->Tasks->loaded();
- $this->assertEquals(['Command'], $result, 'loaded() results are wrong.');
- }
- /**
- * test missingtask exception
- *
- * @expectedException \Cake\Console\Exception\MissingTaskException
- * @return void
- */
- public function testLoadMissingTask()
- {
- $this->Tasks->load('ThisTaskShouldAlwaysBeMissing');
- }
- /**
- * test loading a plugin helper.
- *
- * @return void
- */
- public function testLoadPluginTask()
- {
- $dispatcher = $this->getMock('Cake\Console\ShellDispatcher', [], [], '', false);
- $shell = $this->getMock('Cake\Console\Shell', [], [], '', false);
- Plugin::load('TestPlugin');
- $this->Tasks = new TaskRegistry($shell, $dispatcher);
- $result = $this->Tasks->load('TestPlugin.OtherTask');
- $this->assertInstanceOf('TestPlugin\Shell\Task\OtherTaskTask', $result, 'Task class is wrong.');
- $this->assertInstanceOf('TestPlugin\Shell\Task\OtherTaskTask', $this->Tasks->OtherTask, 'Class is wrong');
- Plugin::unload();
- }
- /**
- * Tests loading as an alias
- *
- * @return void
- */
- public function testLoadWithAlias()
- {
- Plugin::load('TestPlugin');
- $result = $this->Tasks->load('CommandAliased', ['className' => 'Command']);
- $this->assertInstanceOf('Cake\Shell\Task\CommandTask', $result);
- $this->assertInstanceOf('Cake\Shell\Task\CommandTask', $this->Tasks->CommandAliased);
- $result = $this->Tasks->loaded();
- $this->assertEquals(['CommandAliased'], $result, 'loaded() results are wrong.');
- $result = $this->Tasks->load('SomeTask', ['className' => 'TestPlugin.OtherTask']);
- $this->assertInstanceOf('TestPlugin\Shell\Task\OtherTaskTask', $result);
- $this->assertInstanceOf('TestPlugin\Shell\Task\OtherTaskTask', $this->Tasks->SomeTask);
- $result = $this->Tasks->loaded();
- $this->assertEquals(['CommandAliased', 'SomeTask'], $result, 'loaded() results are wrong.');
- }
- }
|