mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
61 lines
2 KiB
PHP
61 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
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\Service\UrlShortener;
|
|
use Symfony\Component\Console\Application;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use function sprintf;
|
|
|
|
use const PHP_EOL;
|
|
|
|
class ResolveUrlCommandTest extends TestCase
|
|
{
|
|
private CommandTester $commandTester;
|
|
private ObjectProphecy $urlShortener;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->urlShortener = $this->prophesize(UrlShortener::class);
|
|
$command = new ResolveUrlCommand($this->urlShortener->reveal());
|
|
$app = new Application();
|
|
$app->add($command);
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
}
|
|
|
|
/** @test */
|
|
public function correctShortCodeResolvesUrl(): void
|
|
{
|
|
$shortCode = 'abc123';
|
|
$expectedUrl = 'http://domain.com/foo/bar';
|
|
$shortUrl = new ShortUrl($expectedUrl);
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)->willReturn($shortUrl)
|
|
->shouldBeCalledOnce();
|
|
|
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
|
$output = $this->commandTester->getDisplay();
|
|
$this->assertEquals('Long URL: ' . $expectedUrl . PHP_EOL, $output);
|
|
}
|
|
|
|
/** @test */
|
|
public function incorrectShortCodeOutputsErrorMessage(): void
|
|
{
|
|
$shortCode = 'abc123';
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)
|
|
->willThrow(ShortUrlNotFoundException::fromNotFoundShortCode($shortCode))
|
|
->shouldBeCalledOnce();
|
|
|
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
|
$output = $this->commandTester->getDisplay();
|
|
$this->assertStringContainsString(sprintf('No URL found with short code "%s"', $shortCode), $output);
|
|
}
|
|
}
|