2021-04-08 14:12:37 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace ShlinkioTest\Shlink\CLI;
|
|
|
|
|
2022-10-22 13:46:16 +03:00
|
|
|
use PHPUnit\Framework\Assert;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2021-04-08 14:12:37 +03:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
2021-12-16 23:46:52 +03:00
|
|
|
use Symfony\Component\Console\Input\InputDefinition;
|
2021-04-08 14:34:14 +03:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2021-04-08 14:12:37 +03:00
|
|
|
|
|
|
|
trait CliTestUtilsTrait
|
|
|
|
{
|
2022-10-24 20:53:13 +03:00
|
|
|
private function createCommandMock(string $name): MockObject & Command
|
2021-04-08 14:12:37 +03:00
|
|
|
{
|
2022-10-22 13:46:16 +03:00
|
|
|
$command = $this->createMock(Command::class);
|
|
|
|
$command->method('getName')->willReturn($name);
|
|
|
|
$command->method('isEnabled')->willReturn(true);
|
|
|
|
$command->method('getAliases')->willReturn([]);
|
|
|
|
$command->method('getDefinition')->willReturn(new InputDefinition());
|
|
|
|
$command->method('setApplication')->with(Assert::isInstanceOf(Application::class));
|
2021-04-08 14:12:37 +03:00
|
|
|
|
|
|
|
return $command;
|
|
|
|
}
|
2021-04-08 14:34:14 +03:00
|
|
|
|
|
|
|
private function testerForCommand(Command $mainCommand, Command ...$extraCommands): CommandTester
|
|
|
|
{
|
|
|
|
$app = new Application();
|
|
|
|
$app->add($mainCommand);
|
|
|
|
foreach ($extraCommands as $command) {
|
|
|
|
$app->add($command);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new CommandTester($mainCommand);
|
|
|
|
}
|
2021-04-08 14:12:37 +03:00
|
|
|
}
|