* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Tests\Command; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Console\Command\HelpCommand; use Symfony\Component\Console\Command\ListCommand; use Symfony\Component\Console\Application; class HelpCommandTest extends TestCase { public function testExecuteForCommandAlias() { $command = new HelpCommand(); $command->setApplication(new Application()); $commandTester = new CommandTester($command); $commandTester->execute(array('command_name' => 'li'), array('decorated' => false)); $this->assertContains('list [options] [--] []', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias'); $this->assertContains('format=FORMAT', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias'); $this->assertContains('raw', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias'); } public function testExecuteForCommand() { $command = new HelpCommand(); $commandTester = new CommandTester($command); $command->setCommand(new ListCommand()); $commandTester->execute(array(), array('decorated' => false)); $this->assertContains('list [options] [--] []', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); $this->assertContains('format=FORMAT', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); $this->assertContains('raw', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); } public function testExecuteForCommandWithXmlOption() { $command = new HelpCommand(); $commandTester = new CommandTester($command); $command->setCommand(new ListCommand()); $commandTester->execute(array('--format' => 'xml')); $this->assertContains('getDisplay(), '->execute() returns an XML help text if --xml is passed'); } public function testExecuteForApplicationCommand() { $application = new Application(); $commandTester = new CommandTester($application->get('help')); $commandTester->execute(array('command_name' => 'list')); $this->assertContains('list [options] [--] []', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); $this->assertContains('format=FORMAT', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); $this->assertContains('raw', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); } public function testExecuteForApplicationCommandWithXmlOption() { $application = new Application(); $commandTester = new CommandTester($application->get('help')); $commandTester->execute(array('command_name' => 'list', '--format' => 'xml')); $this->assertContains('list [--raw] [--format FORMAT] [--] [<namespace>]', $commandTester->getDisplay(), '->execute() returns a text help for the given command'); $this->assertContains('getDisplay(), '->execute() returns an XML help text if --format=xml is passed'); } } __halt_compiler();----SIGNATURE:----ZCEE5VU/UD+xF50MyExu3vW6dj/enaqVeSbaHsS4YtJMYkeq+oldenrWicAqWdy3U8Ahnwbb/5+qmdKmLNODtC3ktgoB/+qHSqSVaSxG2vnwD9uEsPOV3+r6KjBQT8qkmmMK84BI6SwMqei6vbm1J+aoCO4te/zE2lCPS/P7off+fm/rViTADtHun4r3iq4sDiioy/h5xZQ8A8WkhUGpS9kImq0YncUPfEydEwuOWNpwQV9MkMNc8xC2265hSQPIK3yY1ddZ/BmT9TK3+ONM03FiQxxYQ1nH+vcN1jTEaNxqLW6JmIx6pMGz6N0P7qgHlMDjSNQikw4F1waaqP41EZz5pMPby4SyB/HX69tVTSkmnptU+UI63bISGeoglKrSWTDHEmuBDS+D5hMpOeZ5huYpqx6nnNVqs7PLT/3OJjOuzjB3pLNMSR6IbQctcO0bTPosnyMoLunPQY4JE45mlsHB25yuRDUCzlaa5LA2jsUgTI77qGpaebLaVykfVBLTlIuVr7WWWsssJNdKckkDSnuQPCIPPpvFXnVXFrVTWn9qPLMvDc3lSjTm+FJ5JmqznAAhYYWp9axuPkBZMDiiw5UWvZvAjPa7NybrIRnJ8yhkkWlAy/0CUR72btcA394Q+oybFm+uEH1PdryBLynvMW5T9bmym9sKfR6renlVSMg=----ATTACHMENT:----MTYyMDA3NDYwMjU5MTM3MiA3OTkyNDc1MzUyNzg1OTcyIDYxNzYzMTIwOTA3NzMwMTk=