| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?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)
- * @since 3.5.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\TestSuite;
- use Cake\Console\Exception\ConsoleException;
- use Cake\Console\Shell;
- use Cake\Core\Configure;
- use Cake\TestSuite\ConsoleIntegrationTestCase;
- use Cake\TestSuite\Stub\MissingConsoleInputException;
- use PHPUnit\Framework\AssertionFailedError;
- class ConsoleIntegrationTestTraitTest extends ConsoleIntegrationTestCase
- {
- /**
- * setUp
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- Configure::write('App.namespace', 'TestApp');
- }
- /**
- * tests exec when using the command runner
- *
- * @return void
- */
- public function testExecWithCommandRunner()
- {
- $this->useCommandRunner();
- $this->exec('routes');
- $this->assertExitCode(Shell::CODE_SUCCESS);
- $this->assertExitSuccess();
- }
- /**
- * tests exec
- *
- * @return void
- */
- public function testExec()
- {
- $this->exec('');
- $this->assertOutputContains('Welcome to CakePHP');
- $this->assertExitCode(Shell::CODE_ERROR);
- $this->assertExitError();
- }
- /**
- * tests that exec catches a StopException
- *
- * @return void
- */
- public function testExecShellWithStopException()
- {
- $this->exec('integration abort_shell');
- $this->assertExitCode(Shell::CODE_ERROR);
- $this->assertErrorContains('Shell aborted');
- }
- /**
- * tests that exec catches a StopException
- *
- * @return void
- */
- public function testExecCommandWithStopException()
- {
- $this->useCommandRunner();
- $this->exec('abort_command');
- $this->assertExitCode(127);
- $this->assertErrorContains('Command aborted');
- }
- /**
- * tests a valid core command
- *
- * @return void
- */
- public function testExecCoreCommand()
- {
- $this->exec('routes');
- $this->assertExitCode(Shell::CODE_SUCCESS);
- }
- /**
- * tests exec with an arg and an option
- *
- * @return void
- */
- public function testExecWithArgsAndOption()
- {
- $this->exec('integration args_and_options arg --opt="some string"');
- $this->assertErrorEmpty();
- $this->assertOutputContains('arg: arg');
- $this->assertOutputContains('opt: some string');
- $this->assertExitCode(Shell::CODE_SUCCESS);
- }
- /**
- * tests exec with missing required argument
- *
- * @return void
- */
- public function testExecWithMissingRequiredArg()
- {
- $this->exec('integration args_and_options');
- $this->assertOutputEmpty();
- $this->assertErrorContains('Missing required arguments');
- $this->assertErrorContains('arg is required');
- $this->assertExitCode(Shell::CODE_ERROR);
- }
- /**
- * tests exec with input
- *
- * @return void
- */
- public function testExecWithInput()
- {
- $this->exec('integration bridge', ['javascript']);
- $this->assertErrorContains('No!');
- $this->assertExitCode(Shell::CODE_ERROR);
- }
- /**
- * tests exec with fewer inputs than questions
- *
- * @return void
- */
- public function testExecWithMissingInput()
- {
- $this->expectException(MissingConsoleInputException::class);
- $this->expectExceptionMessage('no more input');
- $this->exec('integration bridge', ['cake']);
- }
- /**
- * tests exec with multiple inputs
- *
- * @return void
- */
- public function testExecWithMultipleInput()
- {
- $this->exec('integration bridge', ['cake', 'blue']);
- $this->assertOutputContains('You may pass');
- $this->assertExitCode(Shell::CODE_SUCCESS);
- }
- /**
- * tests assertOutputRegExp assertion
- *
- * @return void
- */
- public function testAssertOutputRegExp()
- {
- $this->exec('routes');
- $this->assertOutputRegExp('/^\+[\-\+]+\+$/m');
- }
- /**
- * tests assertErrorRegExp assertion
- *
- * @return void
- */
- public function testAssertErrorRegExp()
- {
- $this->exec('integration args_and_options');
- $this->assertErrorRegExp('/\<error\>(.+)\<\/error\>/');
- }
- /**
- * tests commandStringToArgs
- *
- * @return void
- */
- public function testCommandStringToArgs()
- {
- $result = $this->commandStringToArgs('command --something=nothing --with-spaces="quote me on that" \'quoted \"arg\"\'');
- $expected = [
- 'command',
- '--something=nothing',
- '--with-spaces=quote me on that',
- 'quoted \"arg\"',
- ];
- $this->assertSame($expected, $result);
- $json = json_encode(['key' => '"val"', 'this' => true]);
- $result = $this->commandStringToArgs(" --json='$json'");
- $expected = [
- '--json=' . $json,
- ];
- $this->assertSame($expected, $result);
- }
- /**
- * tests failure messages for assertions
- *
- * @param string $assertion Assertion method
- * @param string $message Expected failure message
- * @param string $command Command to test
- * @param mixed ...$rest
- * @dataProvider assertionFailureMessagesProvider
- */
- public function testAssertionFailureMessages($assertion, $message, $command, ...$rest)
- {
- $this->expectException(AssertionFailedError::class);
- $this->expectExceptionMessage($message);
- $this->exec($command);
- call_user_func_array([$this, $assertion], $rest);
- }
- /**
- * data provider for assertion failure messages
- *
- * @return array
- */
- public function assertionFailureMessagesProvider()
- {
- return [
- 'assertExitCode' => ['assertExitCode', 'Failed asserting that 1 matches exit code 0.', 'routes', Shell::CODE_ERROR],
- 'assertOutputEmpty' => ['assertOutputEmpty', 'Failed asserting that output is empty.', 'routes'],
- 'assertOutputContains' => ['assertOutputContains', 'Failed asserting that \'missing\' is in output.', 'routes', 'missing'],
- 'assertOutputNotContains' => ['assertOutputNotContains', 'Failed asserting that \'controller\' is not in output.', 'routes', 'controller'],
- 'assertOutputRegExp' => ['assertOutputRegExp', 'Failed asserting that `/missing/` PCRE pattern found in output.', 'routes', '/missing/'],
- 'assertOutputContainsRow' => ['assertOutputContainsRow', 'Failed asserting that `Array (...)` row was in output.', 'routes', ['test', 'missing']],
- 'assertErrorContains' => ['assertErrorContains', 'Failed asserting that \'test\' is in error output.', 'routes', 'test'],
- 'assertErrorRegExp' => ['assertErrorRegExp', 'Failed asserting that `/test/` PCRE pattern found in error output.', 'routes', '/test/'],
- 'assertErrorEmpty' => ['assertErrorEmpty', 'Failed asserting that error output is empty.', 'integration args_and_options'],
- ];
- }
- }
|