| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <?php
- /**
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://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. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP Project
- * @since 3.6.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console;
- use Cake\Console\Command;
- use Cake\Console\ConsoleIo;
- use Cake\Console\ConsoleOptionParser;
- use Cake\ORM\Locator\TableLocator;
- use Cake\ORM\Table;
- use Cake\TestSuite\Stub\ConsoleOutput;
- use Cake\TestSuite\TestCase;
- use InvalidArgumentException;
- use TestApp\Command\AbortCommand;
- use TestApp\Command\AutoLoadModelCommand;
- use TestApp\Command\DemoCommand;
- /**
- * Test case for Console\Command
- */
- class CommandTest extends TestCase
- {
- /**
- * test orm locator is setup
- *
- * @return void
- */
- public function testConstructorSetsLocator()
- {
- $command = new Command();
- $result = $command->getTableLocator();
- $this->assertInstanceOf(TableLocator::class, $result);
- }
- /**
- * test loadModel is configured properly
- *
- * @return void
- */
- public function testConstructorLoadModel()
- {
- $command = new Command();
- $command->loadModel('Comments');
- $this->assertInstanceOf(Table::class, $command->Comments);
- }
- /**
- * test loadModel is configured properly
- *
- * @return void
- */
- public function testConstructorAutoLoadModel()
- {
- $command = new AutoLoadModelCommand();
- $this->assertInstanceOf(Table::class, $command->Posts);
- }
- /**
- * Test name
- *
- * @return void
- */
- public function testSetName()
- {
- $command = new Command();
- $this->assertSame($command, $command->setName('routes show'));
- $this->assertSame('routes show', $command->getName());
- }
- /**
- * Test invalid name
- *
- * @expectedException InvalidArgumentException
- * @expectedExceptionMessage The name 'routes_show' is missing a space. Names should look like `cake routes`
- * @return void
- */
- public function testSetNameInvalid()
- {
- $command = new Command();
- $command->setName('routes_show');
- }
- /**
- * Test invalid name
- *
- * @expectedException InvalidArgumentException
- * @return void
- */
- public function testSetNameInvalidLeadingSpace()
- {
- $command = new Command();
- $command->setName(' routes_show');
- }
- /**
- * Test option parser fetching
- *
- * @return void
- */
- public function testGetOptionParser()
- {
- $command = new Command();
- $command->setName('cake routes show');
- $parser = $command->getOptionParser();
- $this->assertInstanceOf(ConsoleOptionParser::class, $parser);
- $this->assertSame('routes show', $parser->getCommand());
- }
- /**
- * Test option parser fetching
- *
- * @expectedException RuntimeException
- * @return void
- */
- public function testGetOptionParserInvalid()
- {
- $command = $this->getMockBuilder(Command::class)
- ->setMethods(['buildOptionParser'])
- ->getMock();
- $command->expects($this->once())
- ->method('buildOptionParser')
- ->will($this->returnValue(null));
- $command->getOptionParser();
- }
- /**
- * Test that initialize is called.
- *
- * @return void
- */
- public function testRunCallsInitialize()
- {
- $command = $this->getMockBuilder(Command::class)
- ->setMethods(['initialize'])
- ->getMock();
- $command->setName('cake example');
- $command->expects($this->once())->method('initialize');
- $command->run([], $this->getMockIo(new ConsoleOutput()));
- }
- /**
- * Test run() outputs help
- *
- * @return void
- */
- public function testRunOutputHelp()
- {
- $command = new Command();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertSame(
- Command::CODE_SUCCESS,
- $command->run(['-h'], $this->getMockIo($output))
- );
- $messages = implode("\n", $output->messages());
- $this->assertNotContains('Demo', $messages);
- $this->assertContains('cake demo [-h]', $messages);
- }
- /**
- * Test run() outputs help
- *
- * @return void
- */
- public function testRunOutputHelpLongOption()
- {
- $command = new Command();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertSame(
- Command::CODE_SUCCESS,
- $command->run(['--help'], $this->getMockIo($output))
- );
- $messages = implode("\n", $output->messages());
- $this->assertNotContains('Demo', $messages);
- $this->assertContains('cake demo [-h]', $messages);
- }
- /**
- * Test run() sets output level
- *
- * @return void
- */
- public function testRunVerboseOption()
- {
- $command = new DemoCommand();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertNull($command->run(['--verbose'], $this->getMockIo($output)));
- $messages = implode("\n", $output->messages());
- $this->assertContains('Verbose!', $messages);
- $this->assertContains('Demo Command!', $messages);
- $this->assertContains('Quiet!', $messages);
- $this->assertNotContains('cake demo [-h]', $messages);
- }
- /**
- * Test run() sets output level
- *
- * @return void
- */
- public function testRunQuietOption()
- {
- $command = new DemoCommand();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertNull($command->run(['--quiet'], $this->getMockIo($output)));
- $messages = implode("\n", $output->messages());
- $this->assertContains('Quiet!', $messages);
- $this->assertNotContains('Verbose!', $messages);
- $this->assertNotContains('Demo Command!', $messages);
- }
- /**
- * Test run() sets option parser failure
- *
- * @return void
- */
- public function testRunOptionParserFailure()
- {
- $command = $this->getMockBuilder(Command::class)
- ->setMethods(['getOptionParser'])
- ->getMock();
- $parser = new ConsoleOptionParser('cake example');
- $parser->addArgument('name', ['required' => true]);
- $command->method('getOptionParser')->will($this->returnValue($parser));
- $output = new ConsoleOutput();
- $result = $command->run([], $this->getMockIo($output));
- $this->assertSame(Command::CODE_ERROR, $result);
- $messages = implode("\n", $output->messages());
- $this->assertContains('Error: Missing required arguments. name is required', $messages);
- }
- /**
- * Test abort()
- *
- * @expectedException \Cake\Console\Exception\StopException
- * @expectedExceptionCode 1
- * @return void
- */
- public function testAbort()
- {
- $command = new Command();
- $command->abort();
- }
- /**
- * Test abort()
- *
- * @expectedException \Cake\Console\Exception\StopException
- * @expectedExceptionCode 99
- * @return void
- */
- public function testAbortCustomCode()
- {
- $command = new Command();
- $command->abort(99);
- }
- /**
- * test executeCommand with a string class
- *
- * @return void
- */
- public function testExecuteCommandString()
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $result = $command->executeCommand(DemoCommand::class, [], $this->getMockIo($output));
- $this->assertNull($result);
- $this->assertEquals(['Quiet!', 'Demo Command!'], $output->messages());
- }
- /**
- * test executeCommand with an invalid string class
- *
- * @return void
- */
- public function testExecuteCommandStringInvalid()
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage("Command class 'Nope' does not exist");
- $command = new Command();
- $command->executeCommand('Nope', [], $this->getMockIo(new ConsoleOutput()));
- }
- /**
- * test executeCommand with arguments
- *
- * @return void
- */
- public function testExecuteCommandArguments()
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $command->executeCommand(DemoCommand::class, ['Jane'], $this->getMockIo($output));
- $this->assertEquals(['Quiet!', 'Demo Command!', 'Jane'], $output->messages());
- }
- /**
- * test executeCommand with arguments
- *
- * @return void
- */
- public function testExecuteCommandArgumentsOptions()
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $command->executeCommand(DemoCommand::class, ['--quiet', 'Jane'], $this->getMockIo($output));
- $this->assertEquals(['Quiet!'], $output->messages());
- }
- /**
- * test executeCommand with an instance
- *
- * @return void
- */
- public function testExecuteCommandInstance()
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $result = $command->executeCommand(new DemoCommand(), [], $this->getMockIo($output));
- $this->assertNull($result);
- $this->assertEquals(['Quiet!', 'Demo Command!'], $output->messages());
- }
- /**
- * test executeCommand with an abort
- *
- * @return void
- */
- public function testExecuteCommandAbort()
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $result = $command->executeCommand(AbortCommand::class, [], $this->getMockIo($output));
- $this->assertSame(127, $result);
- $this->assertEquals(['<error>Command aborted</error>'], $output->messages());
- }
- /**
- * test executeCommand with an invalid instance
- *
- * @return void
- */
- public function testExecuteCommandInstanceInvalid()
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage("Command 'stdClass' is not a subclass");
- $command = new Command();
- $command->executeCommand(new \stdClass(), [], $this->getMockIo(new ConsoleOutput()));
- }
- protected function getMockIo($output)
- {
- $io = $this->getMockBuilder(ConsoleIo::class)
- ->setConstructorArgs([$output, $output, null, null])
- ->setMethods(['in'])
- ->getMock();
- return $io;
- }
- }
|