/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Bundle/FrameworkBundle/Test/ConsoleCommandAssertionsTrait.php
84 строки
3 KB
Fracsi
[FrameworkBundle] Register the argument resolver in ConsoleCommandAssertionsTrait::runCommand
26 июл 2026, 14:55
26 июл 2026, 14:55
907d15c
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\FrameworkBundle\Test; use Symfony\Bundle\FrameworkBundle\Console\Application; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Console\Tester\Constraint\CommandFailed; use Symfony\Component\Console\Tester\Constraint\CommandIsInvalid; use Symfony\Component\Console\Tester\Constraint\CommandIsSuccessful; use Symfony\Component\Console\Tester\ExecutionResult; trait ConsoleCommandAssertionsTrait { /** * Runs a console command and returns the execution result. * * @param array $input An array of command arguments and options * @param string[] $interactiveInputs An array of strings representing each input passed to the command input stream * @param array<\Closure(string): string> $normalizers */ public static function runCommand(string $name, array $input = [], array $interactiveInputs = [], ?bool $interactive = null, ?bool $decorated = null, ?int $verbosity = null, array $normalizers = []): ExecutionResult { $container = static::getContainer(); $application = new Application($container->get('kernel')); if ($container->has('console.argument_resolver')) { $application->setArgumentResolver($container->get('console.argument_resolver')); } $command = $application->find($name); $commandTester = new CommandTester($command); return $commandTester->run($input, $interactiveInputs, $interactive, $decorated, $verbosity, $normalizers); } public function assertCommandIsSuccessful(ExecutionResult $result, string $message = ''): void { $this->assertThat($result->statusCode, new CommandIsSuccessful(), $message); } public function assertCommandFailed(ExecutionResult $result, string $message = ''): void { $this->assertThat($result->statusCode, new CommandFailed(), $message); } public function assertCommandIsInvalid(ExecutionResult $result, string $message = ''): void { $this->assertThat($result->statusCode, new CommandIsInvalid(), $message); } public function assertCommandResultEquals(ExecutionResult $result, ?int $expectedStatusCode = null, ?string $expectedOutput = null, ?string $expectedErrorOutput = null, ?string $expectedDisplay = null, string $message = ''): void { $expected = []; $actual = []; if (null !== $expectedStatusCode) { $expected['statusCode'] = $expectedStatusCode; $actual['statusCode'] = $result->statusCode; } if (null !== $expectedOutput) { $expected['output'] = $expectedOutput; $actual['output'] = $result->getOutput(); } if (null !== $expectedErrorOutput) { $expected['errorOutput'] = $expectedErrorOutput; $actual['errorOutput'] = $result->getErrorOutput(); } if (null !== $expectedDisplay) { $expected['display'] = $expectedDisplay; $actual['display'] = $result->getDisplay(); } $this->assertEquals($expected, $actual, $message); } }