shlink/module/CLI/test/Command/ShortUrl/ResolveUrlCommandTest.php

63 lines
2.2 KiB
PHP
Raw Normal View History

2016-07-30 16:48:02 +02:00
<?php
2019-10-05 17:26:10 +02:00
2017-10-12 10:13:20 +02:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
2016-07-30 16:48:02 +02:00
2017-03-24 20:34:18 +01:00
use PHPUnit\Framework\TestCase;
2016-07-30 16:48:02 +02:00
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\CLI\Command\ShortUrl\ResolveUrlCommand;
use Shlinkio\Shlink\Core\Entity\ShortUrl;
use Shlinkio\Shlink\Core\Exception\ShortUrlNotFoundException;
use Shlinkio\Shlink\Core\Model\ShortUrlIdentifier;
use Shlinkio\Shlink\Core\Service\ShortUrl\ShortUrlResolverInterface;
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
2016-07-30 16:48:02 +02:00
use Symfony\Component\Console\Tester\CommandTester;
use function sprintf;
use const PHP_EOL;
2016-07-30 16:48:02 +02:00
class ResolveUrlCommandTest extends TestCase
{
use CliTestUtilsTrait;
2020-11-02 11:50:19 +01:00
2019-12-29 22:27:00 +01:00
private CommandTester $commandTester;
private ObjectProphecy $urlResolver;
2016-07-30 16:48:02 +02:00
2019-02-16 10:53:45 +01:00
public function setUp(): void
2016-07-30 16:48:02 +02:00
{
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
$this->commandTester = $this->testerForCommand(new ResolveUrlCommand($this->urlResolver->reveal()));
2016-07-30 16:48:02 +02:00
}
2019-02-17 20:28:34 +01:00
/** @test */
public function correctShortCodeResolvesUrl(): void
2016-07-30 16:48:02 +02:00
{
$shortCode = 'abc123';
$expectedUrl = 'http://domain.com/foo/bar';
$shortUrl = ShortUrl::withLongUrl($expectedUrl);
$this->urlResolver->resolveShortUrl(new ShortUrlIdentifier($shortCode))->willReturn($shortUrl)
->shouldBeCalledOnce();
2016-07-30 16:48:02 +02:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 16:48:02 +02:00
$output = $this->commandTester->getDisplay();
2020-10-04 00:35:14 +02:00
self::assertEquals('Long URL: ' . $expectedUrl . PHP_EOL, $output);
2016-07-30 16:48:02 +02:00
}
2019-02-17 20:28:34 +01:00
/** @test */
public function incorrectShortCodeOutputsErrorMessage(): void
2016-07-30 16:48:02 +02:00
{
$identifier = new ShortUrlIdentifier('abc123');
$shortCode = $identifier->shortCode();
$this->urlResolver->resolveShortUrl($identifier)
->willThrow(ShortUrlNotFoundException::fromNotFound($identifier))
->shouldBeCalledOnce();
2016-07-30 16:48:02 +02:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 16:48:02 +02:00
$output = $this->commandTester->getDisplay();
2020-10-04 00:35:14 +02:00
self::assertStringContainsString(sprintf('No URL found with short code "%s"', $shortCode), $output);
2016-07-30 16:48:02 +02:00
}
}