| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?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 3.5.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\Console;
- use Cake\Console\CommandCollection;
- use Cake\Console\CommandRunner;
- use Cake\Core\Configure;
- use Cake\Http\BaseApplication;
- use Cake\TestSuite\TestCase;
- /**
- * Test case for the CommandCollection
- */
- class CommandRunnerTest extends TestCase
- {
- public function setUp()
- {
- parent::setUp();
- Configure::write('App.namespace', 'TestApp');
- $this->config = dirname(dirname(__DIR__));
- }
- /**
- * Test that the console hook not returning a command collection
- * raises an error.
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessage The application's `console` method did not return a CommandCollection.
- * @return void
- */
- public function testRunConsoleHookFailure()
- {
- $app = $this->getMockBuilder(BaseApplication::class)
- ->setMethods(['console', 'middleware', 'bootstrap'])
- ->setConstructorArgs([$this->config])
- ->getMock();
- $runner = new CommandRunner($app);
- $runner->run(['cake', '-h']);
- }
- /**
- * Test that running with empty argv fails
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Unknown root command. Was expecting `cake`
- * @return void
- */
- public function testRunMissingRootCommand()
- {
- $app = $this->getMockBuilder(BaseApplication::class)
- ->setMethods(['middleware', 'bootstrap'])
- ->setConstructorArgs([$this->config])
- ->getMock();
- $runner = new CommandRunner($app);
- $runner->run([]);
- }
- /**
- * Test that running an unknown command raises an error.
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Unknown root command `bad`. Was expecting `cake`
- * @return void
- */
- public function testRunInvalidRootCommand()
- {
- $app = $this->getMockBuilder(BaseApplication::class)
- ->setMethods(['middleware', 'bootstrap'])
- ->setConstructorArgs([$this->config])
- ->getMock();
- $runner = new CommandRunner($app);
- $runner->run(['bad', 'i18n']);
- }
- /**
- * Test that running an unknown command raises an error.
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Unknown command `cake nope`. Run `cake --help` to get the list of valid commands.
- * @return void
- */
- public function testRunInvalidCommand()
- {
- $app = $this->getMockBuilder(BaseApplication::class)
- ->setMethods(['middleware', 'bootstrap'])
- ->setConstructorArgs([$this->config])
- ->getMock();
- $runner = new CommandRunner($app);
- $runner->run(['cake', 'nope', 'nope', 'nope']);
- }
- /**
- * Test using `cake --help` invokes the help command
- *
- * @return void
- */
- public function testRunHelpLongOption()
- {
- $this->markTestIncomplete();
- }
- /**
- * Test using `cake -h` invokes the help command
- *
- * @return void
- */
- public function testRunHelpShortOption()
- {
- $this->markTestIncomplete();
- }
- /**
- * Test using `cake --verson` invokes the version command
- *
- * @return void
- */
- public function testRunVersionLongOption()
- {
- $this->markTestIncomplete();
- }
- /**
- * Test using `cake -v` invokes the version command
- *
- * @return void
- */
- public function testRunVersionShortOption()
- {
- $this->markTestIncomplete();
- }
- }
|