2020-09-27 13:48:24 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Domain;
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
2020-11-02 13:50:19 +03:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
2020-09-27 13:48:24 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
|
|
use Shlinkio\Shlink\CLI\Command\Domain\ListDomainsCommand;
|
|
|
|
use Shlinkio\Shlink\CLI\Util\ExitCodes;
|
|
|
|
use Shlinkio\Shlink\Core\Domain\DomainServiceInterface;
|
2021-01-04 17:02:37 +03:00
|
|
|
use Shlinkio\Shlink\Core\Domain\Model\DomainItem;
|
2020-09-27 13:48:24 +03:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
|
|
|
|
class ListDomainsCommandTest extends TestCase
|
|
|
|
{
|
2020-11-02 13:50:19 +03:00
|
|
|
use ProphecyTrait;
|
|
|
|
|
2020-09-27 13:48:24 +03:00
|
|
|
private CommandTester $commandTester;
|
|
|
|
private ObjectProphecy $domainService;
|
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
$this->domainService = $this->prophesize(DomainServiceInterface::class);
|
|
|
|
|
2021-01-04 17:02:37 +03:00
|
|
|
$command = new ListDomainsCommand($this->domainService->reveal());
|
2020-09-27 13:48:24 +03:00
|
|
|
$app = new Application();
|
|
|
|
$app->add($command);
|
|
|
|
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @test */
|
|
|
|
public function allDomainsAreProperlyPrinted(): void
|
|
|
|
{
|
|
|
|
$expectedOutput = <<<OUTPUT
|
|
|
|
+---------+------------+
|
|
|
|
| Domain | Is default |
|
|
|
|
+---------+------------+
|
|
|
|
| foo.com | Yes |
|
|
|
|
| bar.com | No |
|
|
|
|
| baz.com | No |
|
|
|
|
+---------+------------+
|
|
|
|
|
|
|
|
OUTPUT;
|
2021-01-04 17:16:51 +03:00
|
|
|
$listDomains = $this->domainService->listDomains()->willReturn([
|
2021-01-04 17:02:37 +03:00
|
|
|
new DomainItem('foo.com', true),
|
|
|
|
new DomainItem('bar.com', false),
|
|
|
|
new DomainItem('baz.com', false),
|
2020-09-27 13:48:24 +03:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->commandTester->execute([]);
|
|
|
|
|
|
|
|
self::assertEquals($expectedOutput, $this->commandTester->getDisplay());
|
|
|
|
self::assertEquals(ExitCodes::EXIT_SUCCESS, $this->commandTester->getStatusCode());
|
|
|
|
$listDomains->shouldHaveBeenCalledOnce();
|
|
|
|
}
|
|
|
|
}
|