| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <?php
- declare(strict_types=1);
- /**
- * 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\Command\Command;
- use Cake\Console\CommandInterface;
- use Cake\Console\ConsoleIo;
- use Cake\Console\ConsoleOptionParser;
- use Cake\Console\Exception\StopException;
- 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;
- use TestApp\Command\NonInteractiveCommand;
- /**
- * Test case for Console\Command
- */
- class CommandTest extends TestCase
- {
- /**
- * test orm locator is setup
- */
- public function testConstructorSetsLocator(): void
- {
- $command = new Command();
- $result = $command->getTableLocator();
- $this->assertInstanceOf(TableLocator::class, $result);
- }
- /**
- * test loadModel is configured properly
- */
- public function testConstructorAutoLoadModel(): void
- {
- $command = new AutoLoadModelCommand();
- $this->assertInstanceOf(Table::class, $command->fetchTable());
- }
- /**
- * Test name
- */
- public function testSetName(): void
- {
- $command = new Command();
- $this->assertSame($command, $command->setName('routes show'));
- $this->assertSame('routes show', $command->getName());
- $this->assertSame('routes', $command->getRootName());
- }
- /**
- * Test invalid name
- */
- public function testSetNameInvalid(): void
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage('The name \'routes_show\' is missing a space. Names should look like `cake routes`');
- $command = new Command();
- $command->setName('routes_show');
- }
- /**
- * Test invalid name
- */
- public function testSetNameInvalidLeadingSpace(): void
- {
- $this->expectException(InvalidArgumentException::class);
- $command = new Command();
- $command->setName(' routes_show');
- }
- /**
- * Test option parser fetching
- */
- public function testGetOptionParser(): void
- {
- $command = new Command();
- $command->setName('cake routes show');
- $parser = $command->getOptionParser();
- $this->assertInstanceOf(ConsoleOptionParser::class, $parser);
- $this->assertSame('routes show', $parser->getCommand());
- }
- /**
- * Test that initialize is called.
- */
- public function testRunCallsInitialize(): void
- {
- /** @var \Cake\Console\Command|\PHPUnit\Framework\MockObject\MockObject $command */
- $command = $this->getMockBuilder(Command::class)
- ->onlyMethods(['initialize'])
- ->getMock();
- $command->setName('cake example');
- $command->expects($this->once())->method('initialize');
- $command->run([], $this->getMockIo(new ConsoleOutput()));
- }
- /**
- * Test run() outputs help
- */
- public function testRunOutputHelp(): void
- {
- $command = new Command();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertSame(
- CommandInterface::CODE_SUCCESS,
- $command->run(['-h'], $this->getMockIo($output))
- );
- $messages = implode("\n", $output->messages());
- $this->assertStringNotContainsString('Demo', $messages);
- $this->assertStringContainsString('cake demo [-h]', $messages);
- }
- /**
- * Test run() outputs help
- */
- public function testRunOutputHelpLongOption(): void
- {
- $command = new Command();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertSame(
- CommandInterface::CODE_SUCCESS,
- $command->run(['--help'], $this->getMockIo($output))
- );
- $messages = implode("\n", $output->messages());
- $this->assertStringNotContainsString('Demo', $messages);
- $this->assertStringContainsString('cake demo [-h]', $messages);
- }
- /**
- * Test run() sets output level
- */
- public function testRunVerboseOption(): void
- {
- $command = new DemoCommand();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertNull($command->run(['--verbose'], $this->getMockIo($output)));
- $messages = implode("\n", $output->messages());
- $this->assertStringContainsString('Verbose!', $messages);
- $this->assertStringContainsString('Demo Command!', $messages);
- $this->assertStringContainsString('Quiet!', $messages);
- $this->assertStringNotContainsString('cake demo [-h]', $messages);
- }
- /**
- * Test run() sets output level
- */
- public function testRunQuietOption(): void
- {
- $command = new DemoCommand();
- $command->setName('cake demo');
- $output = new ConsoleOutput();
- $this->assertNull($command->run(['--quiet'], $this->getMockIo($output)));
- $messages = implode("\n", $output->messages());
- $this->assertStringContainsString('Quiet!', $messages);
- $this->assertStringNotContainsString('Verbose!', $messages);
- $this->assertStringNotContainsString('Demo Command!', $messages);
- }
- /**
- * Test run() sets option parser failure
- */
- public function testRunOptionParserFailure(): void
- {
- /** @var \Cake\Console\Command|\PHPUnit\Framework\MockObject\MockObject $command */
- $command = $this->getMockBuilder(Command::class)
- ->onlyMethods(['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(CommandInterface::CODE_ERROR, $result);
- $messages = implode("\n", $output->messages());
- $this->assertStringContainsString(
- 'Error: Missing required argument. The `name` argument is required',
- $messages
- );
- }
- /**
- * Test abort()
- */
- public function testAbort(): void
- {
- $this->expectException(StopException::class);
- $this->expectExceptionCode(1);
- $command = new Command();
- $command->abort();
- }
- /**
- * Test abort()
- */
- public function testAbortCustomCode(): void
- {
- $this->expectException(StopException::class);
- $this->expectExceptionCode(99);
- $command = new Command();
- $command->abort(99);
- }
- /**
- * test executeCommand with a string class
- */
- public function testExecuteCommandString(): void
- {
- $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
- */
- public function testExecuteCommandStringInvalid(): void
- {
- $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
- */
- public function testExecuteCommandArguments(): void
- {
- $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
- */
- public function testExecuteCommandArgumentsOptions(): void
- {
- $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
- */
- public function testExecuteCommandInstance(): void
- {
- $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
- */
- public function testExecuteCommandAbort(): void
- {
- $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 that noninteractive commands use defaults where applicable.
- */
- public function testExecuteCommandNonInteractive(): void
- {
- $output = new ConsoleOutput();
- $command = new Command();
- $command->executeCommand(NonInteractiveCommand::class, ['--quiet'], $this->getMockIo($output));
- $this->assertEquals(['Result: Default!'], $output->messages());
- }
- /**
- * @param \Cake\Console\ConsoleOutput $output
- * @return \Cake\Console\ConsoleIo|\PHPUnit\Framework\MockObject\MockObject
- */
- protected function getMockIo($output)
- {
- $io = $this->getMockBuilder(ConsoleIo::class)
- ->setConstructorArgs([$output, $output, null, null])
- ->addMethods(['in'])
- ->getMock();
- return $io;
- }
- }
|