| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442 |
- <?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 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console;
- use Cake\Console\ConsoleIo;
- use Cake\Console\ConsoleOptionParser;
- use Cake\Console\Shell;
- use Cake\Core\Plugin;
- use Cake\Filesystem\Folder;
- use Cake\TestSuite\TestCase;
- use TestApp\Shell\MergeShell;
- use TestApp\Shell\ShellTestShell;
- use TestApp\Shell\TestingDispatchShell;
- /**
- * TestAppleTask class
- */
- class TestAppleTask extends Shell
- {
- }
- /**
- * TestBananaTask class
- */
- class TestBananaTask extends Shell
- {
- }
- class_alias(__NAMESPACE__ . '\TestAppleTask', 'Cake\Shell\Task\TestAppleTask');
- class_alias(__NAMESPACE__ . '\TestBananaTask', 'Cake\Shell\Task\TestBananaTask');
- /**
- * ShellTest class
- */
- class ShellTest extends TestCase
- {
- /**
- * Fixtures used in this test case
- *
- * @var array
- */
- public $fixtures = [
- 'core.Articles',
- 'core.ArticlesTags',
- 'core.Attachments',
- 'core.Comments',
- 'core.Posts',
- 'core.Tags',
- 'core.Users'
- ];
- /** @var \Cake\Console\Shell */
- protected $Shell;
- /**
- * @var \Cake\Console\ConsoleIo|\PHPUnit\Framework\MockObject\MockObject
- */
- protected $io;
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->io = $this->getMockBuilder('Cake\Console\ConsoleIo')
- ->disableOriginalConstructor()
- ->getMock();
- $this->Shell = new ShellTestShell($this->io, $this->getTableLocator());
- if (is_dir(TMP . 'shell_test')) {
- $Folder = new Folder(TMP . 'shell_test');
- $Folder->delete();
- }
- }
- /**
- * testConstruct method
- *
- * @return void
- */
- public function testConstruct()
- {
- $this->assertEquals('ShellTestShell', $this->Shell->name);
- $this->assertInstanceOf(ConsoleIo::class, $this->Shell->getIo());
- }
- /**
- * test io method
- *
- * @group deprecated
- * @return void
- */
- public function testIo()
- {
- $this->deprecated(function () {
- $this->assertInstanceOf(ConsoleIo::class, $this->Shell->io());
- $io = $this->getMockBuilder(ConsoleIo::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->assertSame($io, $this->Shell->io($io));
- $this->assertSame($io, $this->Shell->io());
- });
- }
- /**
- * testInitialize method
- *
- * @return void
- */
- public function testInitialize()
- {
- static::setAppNamespace();
- $this->loadPlugins(['TestPlugin']);
- $this->Shell->tasks = ['Extract' => ['one', 'two']];
- $this->Shell->plugin = 'TestPlugin';
- $this->Shell->modelClass = 'TestPlugin.TestPluginComments';
- $this->Shell->initialize();
- $this->Shell->loadModel();
- $this->assertTrue(isset($this->Shell->TestPluginComments));
- $this->assertInstanceOf(
- 'TestPlugin\Model\Table\TestPluginCommentsTable',
- $this->Shell->TestPluginComments
- );
- Plugin::unload();
- }
- /**
- * test LoadModel method
- *
- * @return void
- */
- public function testLoadModel()
- {
- static::setAppNamespace();
- $Shell = new MergeShell();
- $this->assertInstanceOf(
- 'TestApp\Model\Table\ArticlesTable',
- $Shell->Articles
- );
- $this->assertEquals('Articles', $Shell->modelClass);
- $this->loadPlugins(['TestPlugin']);
- $result = $this->Shell->loadModel('TestPlugin.TestPluginComments');
- $this->assertInstanceOf(
- 'TestPlugin\Model\Table\TestPluginCommentsTable',
- $result
- );
- $this->assertInstanceOf(
- 'TestPlugin\Model\Table\TestPluginCommentsTable',
- $this->Shell->TestPluginComments
- );
- Plugin::unload();
- }
- /**
- * testIn method
- *
- * @return void
- */
- public function testIn()
- {
- $this->io->expects($this->at(0))
- ->method('askChoice')
- ->with('Just a test?', ['y', 'n'], 'n')
- ->will($this->returnValue('n'));
- $this->io->expects($this->at(1))
- ->method('ask')
- ->with('Just a test?', 'n')
- ->will($this->returnValue('n'));
- $result = $this->Shell->in('Just a test?', ['y', 'n'], 'n');
- $this->assertEquals('n', $result);
- $result = $this->Shell->in('Just a test?', null, 'n');
- $this->assertEquals('n', $result);
- }
- /**
- * Test in() when not interactive.
- *
- * @return void
- */
- public function testInNonInteractive()
- {
- $this->io->expects($this->never())
- ->method('askChoice');
- $this->io->expects($this->never())
- ->method('ask');
- $this->Shell->interactive = false;
- $result = $this->Shell->in('Just a test?', 'y/n', 'n');
- $this->assertEquals('n', $result);
- }
- /**
- * testVerbose method
- *
- * @return void
- */
- public function testVerbose()
- {
- $this->io->expects($this->once())
- ->method('verbose')
- ->with('Just a test', 1);
- $this->Shell->verbose('Just a test');
- }
- /**
- * testQuiet method
- *
- * @return void
- */
- public function testQuiet()
- {
- $this->io->expects($this->once())
- ->method('quiet')
- ->with('Just a test', 1);
- $this->Shell->quiet('Just a test');
- }
- /**
- * testOut method
- *
- * @return void
- */
- public function testOut()
- {
- $this->io->expects($this->once())
- ->method('out')
- ->with('Just a test', 1);
- $this->Shell->out('Just a test');
- }
- /**
- * testErr method
- *
- * @return void
- */
- public function testErr()
- {
- $this->io->expects($this->once())
- ->method('error')
- ->with('Just a test', 1);
- $this->Shell->err('Just a test');
- }
- /**
- * testErr method with array
- *
- * @return void
- */
- public function testErrArray()
- {
- $this->io->expects($this->once())
- ->method('error')
- ->with(['Just', 'a', 'test'], 1);
- $this->Shell->err(['Just', 'a', 'test']);
- }
- /**
- * testInfo method
- *
- * @return void
- */
- public function testInfo()
- {
- $this->io->expects($this->once())
- ->method('info')
- ->with('Just a test', 1);
- $this->Shell->info('Just a test');
- }
- /**
- * testInfo method with array
- *
- * @return void
- */
- public function testInfoArray()
- {
- $this->io->expects($this->once())
- ->method('info')
- ->with(['Just', 'a', 'test'], 1);
- $this->Shell->info(['Just', 'a', 'test']);
- }
- /**
- * testWarn method
- *
- * @return void
- */
- public function testWarn()
- {
- $this->io->expects($this->once())
- ->method('warning')
- ->with('Just a test', 1);
- $this->Shell->warn('Just a test');
- }
- /**
- * testWarn method with array
- *
- * @return void
- */
- public function testWarnArray()
- {
- $this->io->expects($this->once())
- ->method('warning')
- ->with(['Just', 'a', 'test'], 1);
- $this->Shell->warn(['Just', 'a', 'test']);
- }
- /**
- * testSuccess method
- *
- * @return void
- */
- public function testSuccess()
- {
- $this->io->expects($this->once())
- ->method('success')
- ->with('Just a test', 1);
- $this->Shell->success('Just a test');
- }
- /**
- * testSuccess method with array
- *
- * @return void
- */
- public function testSuccessArray()
- {
- $this->io->expects($this->once())
- ->method('success')
- ->with(['Just', 'a', 'test'], 1);
- $this->Shell->success(['Just', 'a', 'test']);
- }
- /**
- * testNl
- *
- * @return void
- */
- public function testNl()
- {
- $this->io->expects($this->once())
- ->method('nl')
- ->with(2);
- $this->Shell->nl(2);
- }
- /**
- * testHr
- *
- * @return void
- */
- public function testHr()
- {
- $this->io->expects($this->once())
- ->method('hr')
- ->with(2);
- $this->Shell->hr(2);
- }
- /**
- * testError
- *
- * @group deprecated
- * @return void
- */
- public function testError()
- {
- $this->io->expects($this->at(0))
- ->method('err')
- ->with('<error>Error:</error> Foo Not Found');
- $this->io->expects($this->at(1))
- ->method('err')
- ->with('Searched all...');
- $this->deprecated(function () {
- $this->Shell->error('Foo Not Found', 'Searched all...');
- $this->assertSame($this->Shell->stopped, 1);
- });
- }
- /**
- * testLoadTasks method
- *
- * @return void
- */
- public function testLoadTasks()
- {
- $this->assertTrue($this->Shell->loadTasks());
- $this->Shell->tasks = null;
- $this->assertTrue($this->Shell->loadTasks());
- $this->Shell->tasks = false;
- $this->assertTrue($this->Shell->loadTasks());
- $this->Shell->tasks = true;
- $this->assertTrue($this->Shell->loadTasks());
- $this->Shell->tasks = [];
- $this->assertTrue($this->Shell->loadTasks());
- $this->Shell->tasks = ['TestApple'];
- $this->assertTrue($this->Shell->loadTasks());
- $this->assertInstanceOf('Cake\Shell\Task\TestAppleTask', $this->Shell->TestApple);
- $this->Shell->tasks = 'TestBanana';
- $this->assertTrue($this->Shell->loadTasks());
- $this->assertInstanceOf('Cake\Shell\Task\TestAppleTask', $this->Shell->TestApple);
- $this->assertInstanceOf('Cake\Shell\Task\TestBananaTask', $this->Shell->TestBanana);
- unset($this->Shell->ShellTestApple, $this->Shell->TestBanana);
- $this->Shell->tasks = ['TestApple', 'TestBanana'];
- $this->assertTrue($this->Shell->loadTasks());
- $this->assertInstanceOf('Cake\Shell\Task\TestAppleTask', $this->Shell->TestApple);
- $this->assertInstanceOf('Cake\Shell\Task\TestBananaTask', $this->Shell->TestBanana);
- }
- /**
- * test that __get() makes args and params references
- *
- * @return void
- */
- public function testMagicGetArgAndParamReferences()
- {
- $this->Shell->tasks = ['TestApple'];
- $this->Shell->args = ['one'];
- $this->Shell->params = ['help' => false];
- $this->Shell->loadTasks();
- $result = $this->Shell->TestApple;
- $this->Shell->args = ['one', 'two'];
- $this->assertSame($this->Shell->args, $result->args);
- $this->assertSame($this->Shell->params, $result->params);
- }
- /**
- * testShortPath method
- *
- * @return void
- */
- public function testShortPath()
- {
- $path = $expected = DS . 'tmp/ab/cd';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = $expected = DS . 'tmp/ab/cd/';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = $expected = DS . 'tmp/ab/index.php';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = DS . 'tmp/ab/' . DS . 'cd';
- $expected = DS . 'tmp/ab/cd';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = 'tmp/ab';
- $expected = 'tmp/ab';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = 'tmp/ab';
- $expected = 'tmp/ab';
- $this->assertPathEquals($expected, $this->Shell->shortPath($path));
- $path = APP;
- $result = $this->Shell->shortPath($path);
- $this->assertNotContains(ROOT, $result, 'Short paths should not contain ROOT');
- }
- /**
- * testCreateFile method
- *
- * @return void
- */
- public function testCreateFileNonInteractive()
- {
- $eol = PHP_EOL;
- $path = TMP . 'shell_test';
- $file = $path . DS . 'file1.php';
- new Folder($path, true);
- $contents = "<?php{$eol}echo 'test';${eol}\$te = 'st';{$eol}";
- $this->Shell->interactive = false;
- $result = $this->Shell->createFile($file, $contents);
- $this->assertTrue($result);
- $this->assertFileExists($file);
- $this->assertStringEqualsFile($file, $contents);
- }
- /**
- * Test that while in non interactive mode it will not overwrite files by default.
- *
- * @return void
- */
- public function testCreateFileNonInteractiveFileExists()
- {
- $eol = PHP_EOL;
- $path = TMP . 'shell_test';
- $file = $path . DS . 'file1.php';
- if (!is_dir($path)) {
- mkdir($path, 0770, true);
- }
- touch($file);
- $this->assertFileExists($file);
- new Folder($path, true);
- $contents = "<?php{$eol}echo 'test';${eol}\$te = 'st';{$eol}";
- $this->Shell->interactive = false;
- $result = $this->Shell->createFile($file, $contents);
- $this->assertFalse($result);
- }
- /**
- * Test that files are not changed with a 'n' reply.
- *
- * @return void
- */
- public function testCreateFileNoReply()
- {
- $eol = PHP_EOL;
- $path = TMP . 'shell_test';
- $file = $path . DS . 'file1.php';
- new Folder($path, true);
- $this->io->expects($this->once())
- ->method('askChoice')
- ->will($this->returnValue('n'));
- touch($file);
- $this->assertFileExists($file);
- $contents = 'My content';
- $result = $this->Shell->createFile($file, $contents);
- $this->assertFileExists($file);
- $this->assertTextEquals('', file_get_contents($file));
- $this->assertFalse($result, 'Did not create file.');
- }
- /**
- * Test that files are changed with a 'y' reply.
- *
- * @return void
- */
- public function testCreateFileOverwrite()
- {
- $eol = PHP_EOL;
- $path = TMP . 'shell_test';
- $file = $path . DS . 'file1.php';
- new Folder($path, true);
- $this->io->expects($this->once())
- ->method('askChoice')
- ->will($this->returnValue('y'));
- touch($file);
- $this->assertFileExists($file);
- $contents = 'My content';
- $result = $this->Shell->createFile($file, $contents);
- $this->assertFileExists($file);
- $this->assertTextEquals($contents, file_get_contents($file));
- $this->assertTrue($result, 'Did create file.');
- }
- /**
- * Test that there is no user prompt in non-interactive mode while file already exists
- * and if force mode is explicitly enabled.
- *
- * @return void
- */
- public function testCreateFileOverwriteNonInteractive()
- {
- $path = TMP . 'shell_test';
- $file = $path . DS . 'file1.php';
- new Folder($path, true);
- touch($file);
- $this->assertFileExists($file);
- $this->io->expects($this->never())->method('askChoice');
- $this->Shell->params['force'] = true;
- $this->Shell->interactive = false;
- $result = $this->Shell->createFile($file, 'My content');
- $this->assertTrue($result);
- $this->assertStringEqualsFile($file, 'My content');
- }
- /**
- * Test that all files are changed with a 'a' reply.
- *
- * @return void
- */
- public function testCreateFileOverwriteAll()
- {
- $eol = PHP_EOL;
- $path = TMP . 'shell_test';
- $files = [
- $path . DS . 'file1.php' => 'My first content',
- $path . DS . 'file2.php' => 'My second content',
- $path . DS . 'file3.php' => 'My third content'
- ];
- new Folder($path, true);
- $this->io->expects($this->once())
- ->method('askChoice')
- ->will($this->returnValue('a'));
- foreach ($files as $file => $contents) {
- touch($file);
- $this->assertFileExists($file);
- $result = $this->Shell->createFile($file, $contents);
- $this->assertFileExists($file);
- $this->assertTextEquals($contents, file_get_contents($file));
- $this->assertTrue($result, 'Did create file.');
- }
- }
- /**
- * Test that you can't create files that aren't writable.
- *
- * @return void
- */
- public function testCreateFileNoPermissions()
- {
- $this->skipIf(DS === '\\', 'Cant perform operations using permissions on windows.');
- $path = TMP . 'shell_test';
- $file = $path . DS . 'no_perms';
- if (!is_dir($path)) {
- mkdir($path);
- }
- chmod($path, 0444);
- $this->Shell->createFile($file, 'testing');
- $this->assertFileNotExists($file);
- chmod($path, 0744);
- rmdir($path);
- }
- /**
- * test hasTask method
- *
- * @return void
- */
- public function testHasTask()
- {
- $this->Shell->tasks = ['Extract', 'Assets'];
- $this->Shell->loadTasks();
- $this->assertTrue($this->Shell->hasTask('extract'));
- $this->assertTrue($this->Shell->hasTask('Extract'));
- $this->assertFalse($this->Shell->hasTask('random'));
- $this->assertTrue($this->Shell->hasTask('assets'));
- $this->assertTrue($this->Shell->hasTask('Assets'));
- }
- /**
- * test task loading exception
- *
- * @expectedException \RuntimeException
- * @expectedExceptionMessage Task `DoesNotExist` not found. Maybe you made a typo or a plugin is missing or not loaded?
- * @return void
- */
- public function testMissingTaskException()
- {
- $this->Shell->tasks = ['DoesNotExist'];
- $this->Shell->loadTasks();
- }
- /**
- * test the hasMethod
- *
- * @return void
- */
- public function testHasMethod()
- {
- $this->assertTrue($this->Shell->hasMethod('doSomething'));
- $this->assertFalse($this->Shell->hasMethod('hr'), 'hr is callable');
- $this->assertFalse($this->Shell->hasMethod('_secret'), '_secret is callable');
- $this->assertFalse($this->Shell->hasMethod('no_access'), 'no_access is callable');
- }
- /**
- * test run command calling main.
- *
- * @return void
- */
- public function testRunCommandMain()
- {
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['main', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $shell->expects($this->once())->method('startup');
- $shell->expects($this->once())->method('main')
- ->with('cakes')
- ->will($this->returnValue(true));
- $result = $shell->runCommand(['cakes', '--verbose']);
- $this->assertTrue($result);
- $this->assertEquals('main', $shell->command);
- }
- /**
- * test run command calling a real method with no subcommands defined.
- *
- * @return void
- */
- public function testRunCommandWithMethod()
- {
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['hitMe', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $shell->expects($this->once())->method('startup');
- $shell->expects($this->once())->method('hitMe')
- ->with('cakes')
- ->will($this->returnValue(true));
- $result = $shell->runCommand(['hit_me', 'cakes', '--verbose'], true);
- $this->assertTrue($result);
- $this->assertEquals('hit_me', $shell->command);
- }
- /**
- * test that a command called with an extra parameter passed merges the extra parameters
- * to the shell's one
- * Also tests that if an extra `requested` parameter prevents the welcome message from
- * being displayed
- *
- * @return void
- */
- public function testRunCommandWithExtra()
- {
- $Parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->setMethods(['help'])
- ->setConstructorArgs(['knife'])
- ->getMock();
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $Shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['getOptionParser', 'slice', '_welcome', 'param'])
- ->setConstructorArgs([$io])
- ->getMock();
- $Parser->addSubCommand('slice');
- $Shell->expects($this->once())
- ->method('getOptionParser')
- ->will($this->returnValue($Parser));
- $Shell->expects($this->once())
- ->method('slice')
- ->with('cakes');
- $Shell->expects($this->never())->method('_welcome');
- $Shell->expects($this->once())->method('param')
- ->with('requested')
- ->will($this->returnValue(true));
- $Shell->runCommand(['slice', 'cakes'], false, ['requested' => true]);
- }
- /**
- * Test the dispatchShell() arguments parser
- *
- * @return void
- */
- public function testDispatchShellArgsParser()
- {
- $Shell = new Shell();
- $expected = [['schema', 'create', 'DbAcl'], []];
- // Shell::dispatchShell('schema create DbAcl');
- $result = $Shell->parseDispatchArguments(['schema create DbAcl']);
- $this->assertEquals($expected, $result);
- // Shell::dispatchShell('schema', 'create', 'DbAcl');
- $result = $Shell->parseDispatchArguments(['schema', 'create', 'DbAcl']);
- $this->assertEquals($expected, $result);
- // Shell::dispatchShell(['command' => 'schema create DbAcl']);
- $result = $Shell->parseDispatchArguments([[
- 'command' => 'schema create DbAcl'
- ]]);
- $this->assertEquals($expected, $result);
- // Shell::dispatchShell(['command' => ['schema', 'create', 'DbAcl']]);
- $result = $Shell->parseDispatchArguments([[
- 'command' => ['schema', 'create', 'DbAcl']
- ]]);
- $this->assertEquals($expected, $result);
- $expected[1] = ['param' => 'value'];
- // Shell::dispatchShell(['command' => 'schema create DbAcl', 'extra' => ['param' => 'value']]);
- $result = $Shell->parseDispatchArguments([[
- 'command' => 'schema create DbAcl',
- 'extra' => ['param' => 'value']
- ]]);
- $this->assertEquals($expected, $result);
- // Shell::dispatchShell(['command' => ['schema', 'create', 'DbAcl'], 'extra' => ['param' => 'value']]);
- $result = $Shell->parseDispatchArguments([[
- 'command' => ['schema', 'create', 'DbAcl'],
- 'extra' => ['param' => 'value']
- ]]);
- $this->assertEquals($expected, $result);
- }
- /**
- * test calling a shell that dispatch another one
- *
- * @return void
- */
- public function testDispatchShell()
- {
- $Shell = new TestingDispatchShell();
- ob_start();
- $Shell->runCommand(['test_task'], true);
- $result = ob_get_clean();
- $expected = <<<TEXT
- <info>Welcome to CakePHP Console</info>
- I am a test task, I dispatch another Shell
- I am a dispatched Shell
- TEXT;
- $this->assertEquals($expected, $result);
- ob_start();
- $Shell->runCommand(['test_task_dispatch_array'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- ob_start();
- $Shell->runCommand(['test_task_dispatch_command_string'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- ob_start();
- $Shell->runCommand(['test_task_dispatch_command_array'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- $expected = <<<TEXT
- <info>Welcome to CakePHP Console</info>
- I am a test task, I dispatch another Shell
- I am a dispatched Shell. My param `foo` has the value `bar`
- TEXT;
- ob_start();
- $Shell->runCommand(['test_task_dispatch_with_param'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- $expected = <<<TEXT
- <info>Welcome to CakePHP Console</info>
- I am a test task, I dispatch another Shell
- I am a dispatched Shell. My param `foo` has the value `bar`
- My param `fooz` has the value `baz`
- TEXT;
- ob_start();
- $Shell->runCommand(['test_task_dispatch_with_multiple_params'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- $expected = <<<TEXT
- <info>Welcome to CakePHP Console</info>
- I am a test task, I dispatch another Shell
- <info>Welcome to CakePHP Console</info>
- I am a dispatched Shell
- TEXT;
- ob_start();
- $Shell->runCommand(['test_task_dispatch_with_requested_off'], true);
- $result = ob_get_clean();
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that runCommand() doesn't call public methods when the second arg is false.
- *
- * @return void
- */
- public function testRunCommandAutoMethodOff()
- {
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['hit_me', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $shell->expects($this->never())->method('startup');
- $shell->expects($this->never())->method('hit_me');
- $result = $shell->runCommand(['hit_me', 'baseball'], false);
- $this->assertFalse($result);
- $result = $shell->runCommand(['hit_me', 'baseball']);
- $this->assertFalse($result, 'Default value of runCommand() should be false');
- }
- /**
- * test run command calling a real method with mismatching subcommands defined.
- *
- * @return void
- */
- public function testRunCommandWithMethodNotInSubcommands()
- {
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->setMethods(['help'])
- ->setConstructorArgs(['knife'])
- ->getMock();
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['getOptionParser', 'roll', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $parser->addSubCommand('slice');
- $shell->expects($this->any())
- ->method('getOptionParser')
- ->will($this->returnValue($parser));
- $parser->expects($this->once())
- ->method('help');
- $shell->expects($this->never())->method('startup');
- $shell->expects($this->never())->method('roll');
- $result = $shell->runCommand(['roll', 'cakes', '--verbose']);
- $this->assertFalse($result);
- }
- /**
- * test run command calling a real method with subcommands defined.
- *
- * @return void
- */
- public function testRunCommandWithMethodInSubcommands()
- {
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->setMethods(['help'])
- ->setConstructorArgs(['knife'])
- ->getMock();
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['getOptionParser', 'slice', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $parser->addSubCommand('slice');
- $shell->expects($this->any())
- ->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->once())->method('startup');
- $shell->expects($this->once())
- ->method('slice')
- ->with('cakes');
- $shell->runCommand(['slice', 'cakes', '--verbose']);
- }
- /**
- * test run command calling a missing method with subcommands defined.
- *
- * @return void
- */
- public function testRunCommandWithMissingMethodInSubcommands()
- {
- /** @var \Cake\Console\ConsoleOptionParser|\PHPUnit\Framework\MockObject\MockObject $parser */
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->setMethods(['help'])
- ->setConstructorArgs(['knife'])
- ->getMock();
- $parser->addSubCommand('slice');
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- /** @var \Cake\Console\Shell|\PHPUnit\Framework\MockObject\MockObject $shell */
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['getOptionParser', 'startup'])
- ->setConstructorArgs([$io])
- ->getMock();
- $shell->expects($this->any())
- ->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->never())
- ->method('startup');
- $parser->expects($this->once())
- ->method('help');
- $shell->runCommand(['slice', 'cakes', '--verbose']);
- }
- /**
- * test run command causing exception on Shell method.
- *
- * @return void
- */
- public function testRunCommandBaseClassMethod()
- {
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['startup', 'getOptionParser', 'hr'])
- ->disableOriginalConstructor()
- ->getMock();
- $shell->setIo(
- $this->getMockBuilder('Cake\Console\ConsoleIo')
- ->setMethods(['err'])
- ->getMock()
- );
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->disableOriginalConstructor()
- ->getMock();
- $parser->expects($this->once())->method('help');
- $shell->expects($this->once())->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->never())->method('hr');
- $shell->_io->expects($this->exactly(2))->method('err');
- $shell->runCommand(['hr']);
- }
- /**
- * test run command causing exception on Shell method.
- *
- * @return void
- */
- public function testRunCommandMissingMethod()
- {
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['startup', 'getOptionParser', 'hr'])
- ->disableOriginalConstructor()
- ->getMock();
- $shell->setIo(
- $this->getMockBuilder('Cake\Console\ConsoleIo')
- ->setMethods(['err'])
- ->getMock()
- );
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->disableOriginalConstructor()
- ->getMock();
- $parser->expects($this->once())->method('help');
- $shell->expects($this->once())->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->_io->expects($this->exactly(2))->method('err');
- $result = $shell->runCommand(['idontexist']);
- $this->assertFalse($result);
- }
- /**
- * test that a --help causes help to show.
- *
- * @return void
- */
- public function testRunCommandTriggeringHelp()
- {
- $parser = $this->getMockBuilder('Cake\Console\ConsoleOptionParser')
- ->disableOriginalConstructor()
- ->getMock();
- $parser->expects($this->once())->method('parse')
- ->with(['--help'])
- ->will($this->returnValue([['help' => true], []]));
- $parser->expects($this->once())->method('help');
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['getOptionParser', 'out', 'startup', '_welcome'])
- ->disableOriginalConstructor()
- ->getMock();
- $shell->setIo($this->getMockBuilder('Cake\Console\ConsoleIo')->getMock());
- $shell->expects($this->once())->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->once())->method('out');
- $shell->runCommand(['--help']);
- }
- /**
- * test that runCommand will not call runCommand on tasks that are not subcommands.
- *
- * @return void
- */
- public function testRunCommandNotCallUnexposedTask()
- {
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['startup', 'hasTask'])
- ->disableOriginalConstructor()
- ->getMock();
- $shell->setIo(
- $this->getMockBuilder('Cake\Console\ConsoleIo')
- ->setMethods(['err'])
- ->getMock()
- );
- $task = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['runCommand'])
- ->disableOriginalConstructor()
- ->getMock();
- $task->expects($this->never())
- ->method('runCommand');
- $shell->expects($this->any())
- ->method('hasTask')
- ->will($this->returnValue(true));
- $shell->expects($this->never())->method('startup');
- $shell->_io->expects($this->exactly(2))->method('err');
- $shell->RunCommand = $task;
- $result = $shell->runCommand(['run_command', 'one']);
- $this->assertFalse($result);
- }
- /**
- * test that runCommand will call runCommand on the task.
- *
- * @return void
- */
- public function testRunCommandHittingTaskInSubcommand()
- {
- $parser = new ConsoleOptionParser('knife');
- $parser->addSubcommand('slice');
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['hasTask', 'startup', 'getOptionParser'])
- ->disableOriginalConstructor()
- ->getMock();
- $shell->setIo($io);
- $task = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['main', 'runCommand'])
- ->disableOriginalConstructor()
- ->getMock();
- $task->setIo($io);
- $task->expects($this->once())
- ->method('runCommand')
- ->with(['one'], false, ['requested' => true]);
- $shell->expects($this->once())->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->once())->method('startup');
- $shell->expects($this->any())
- ->method('hasTask')
- ->will($this->returnValue(true));
- $shell->Slice = $task;
- $shell->runCommand(['slice', 'one']);
- }
- /**
- * test that runCommand will invoke a task
- *
- * @return void
- */
- public function testRunCommandInvokeTask()
- {
- $parser = new ConsoleOptionParser('knife');
- $parser->addSubcommand('slice');
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['hasTask', 'getOptionParser'])
- ->setConstructorArgs([$io])
- ->getMock();
- $task = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['main', '_welcome'])
- ->setConstructorArgs([$io])
- ->getMock();
- $shell->expects($this->once())
- ->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->any())
- ->method('hasTask')
- ->will($this->returnValue(true));
- $task->expects($this->never())
- ->method('_welcome');
- $shell->Slice = $task;
- $shell->runCommand(['slice', 'one']);
- $this->assertTrue($task->params['requested'], 'Task is requested, no welcome.');
- }
- /**
- * test run command missing parameters
- *
- * @return void
- */
- public function testRunCommandMainMissingArgument()
- {
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock();
- $shell = $this->getMockBuilder('Cake\Console\Shell')
- ->setMethods(['main', 'startup', 'getOptionParser'])
- ->setConstructorArgs([$io])
- ->getMock();
- $parser = new ConsoleOptionParser('test');
- $parser->addArgument('filename', [
- 'required' => true,
- 'help' => 'a file',
- ]);
- $shell->expects($this->once())
- ->method('getOptionParser')
- ->will($this->returnValue($parser));
- $shell->expects($this->never())->method('main');
- $io->expects($this->once())
- ->method('error')
- ->with('Error: Missing required arguments. filename is required.');
- $result = $shell->runCommand([]);
- $this->assertFalse($result, 'Shell should fail');
- }
- /**
- * test wrapBlock wrapping text.
- *
- * @return void
- */
- public function testWrapText()
- {
- $text = 'This is the song that never ends. This is the song that never ends. This is the song that never ends.';
- $result = $this->Shell->wrapText($text, ['width' => 33]);
- $expected = <<<TEXT
- This is the song that never ends.
- This is the song that never ends.
- This is the song that never ends.
- TEXT;
- $this->assertTextEquals($expected, $result, 'Text not wrapped.');
- $result = $this->Shell->wrapText($text, ['indent' => ' ', 'width' => 33]);
- $expected = <<<TEXT
- This is the song that never ends.
- This is the song that never ends.
- This is the song that never ends.
- TEXT;
- $this->assertTextEquals($expected, $result, 'Text not wrapped.');
- }
- /**
- * Testing camel cased naming of tasks
- *
- * @return void
- */
- public function testShellNaming()
- {
- $this->Shell->tasks = ['TestApple'];
- $this->Shell->loadTasks();
- $expected = 'TestApple';
- $this->assertEquals($expected, $this->Shell->TestApple->name);
- }
- /**
- * Test reading params
- *
- * @dataProvider paramReadingDataProvider
- */
- public function testParamReading($toRead, $expected)
- {
- $this->Shell->params = [
- 'key' => 'value',
- 'help' => false,
- 'emptykey' => '',
- 'truthy' => true
- ];
- $this->assertSame($expected, $this->Shell->param($toRead));
- }
- /**
- * Data provider for testing reading values with Shell::param()
- *
- * @return array
- */
- public function paramReadingDataProvider()
- {
- return [
- [
- 'key',
- 'value',
- ],
- [
- 'help',
- false,
- ],
- [
- 'emptykey',
- '',
- ],
- [
- 'truthy',
- true,
- ],
- [
- 'does_not_exist',
- null,
- ]
- ];
- }
- /**
- * Test that option parsers are created with the correct name/command.
- *
- * @return void
- */
- public function testGetOptionParser()
- {
- $this->Shell->name = 'test';
- $this->Shell->plugin = 'plugin';
- $parser = $this->Shell->getOptionParser();
- $this->assertEquals('plugin.test', $parser->getCommand());
- }
- /**
- * Test file and console and logging quiet output
- *
- * @return void
- */
- public function testQuietLog()
- {
- $io = $this->getMockBuilder('Cake\Console\ConsoleIo')
- ->disableOriginalConstructor()
- ->getMock();
- $io->expects($this->once())
- ->method('level')
- ->with(Shell::QUIET);
- $io->expects($this->at(0))
- ->method('setLoggers')
- ->with(true);
- $io->expects($this->at(2))
- ->method('setLoggers')
- ->with(ConsoleIo::QUIET);
- $this->Shell = $this->getMockBuilder(ShellTestShell::class)
- ->setMethods(['welcome'])
- ->setConstructorArgs([$io])
- ->getMock();
- $this->Shell->runCommand(['foo', '--quiet']);
- }
- /**
- * Test getIo() and setIo() methods
- *
- * @return void
- */
- public function testGetSetIo()
- {
- $this->Shell->setIo($this->io);
- $this->assertSame($this->Shell->getIo(), $this->io);
- }
- /**
- * Test setRootName filters into the option parser help text.
- *
- * @return void
- */
- public function testSetRootNamePropagatesToHelpText()
- {
- $this->assertSame($this->Shell, $this->Shell->setRootName('tool'), 'is chainable');
- $this->assertContains('tool shell_test_shell [-h]', $this->Shell->getOptionParser()->help());
- }
- /**
- * Tests __debugInfo
- *
- * @return void
- */
- public function testDebugInfo()
- {
- $expected = [
- 'name' => 'ShellTestShell',
- 'plugin' => null,
- 'command' => null,
- 'tasks' => [],
- 'params' => [],
- 'args' => [],
- 'interactive' => true
- ];
- $result = $this->Shell->__debugInfo();
- $this->assertEquals($expected, $result);
- }
- }
|