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

62 lines
2.1 KiB
PHP
Raw Normal View History

2016-07-30 17:48:02 +03:00
<?php
2019-10-05 18:26:10 +03:00
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\CLI\Command\ShortUrl;
2016-07-30 17:48:02 +03:00
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-07-30 17:48:02 +03: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\Service\ShortUrl\ShortUrlResolverInterface;
2016-07-30 17:48:02 +03:00
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use function sprintf;
use const PHP_EOL;
2016-07-30 17:48:02 +03:00
class ResolveUrlCommandTest extends TestCase
{
2019-12-30 00:27:00 +03:00
private CommandTester $commandTester;
private ObjectProphecy $urlResolver;
2016-07-30 17:48:02 +03:00
2019-02-16 12:53:45 +03:00
public function setUp(): void
2016-07-30 17:48:02 +03:00
{
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
$command = new ResolveUrlCommand($this->urlResolver->reveal());
2016-07-30 17:48:02 +03:00
$app = new Application();
$app->add($command);
$this->commandTester = new CommandTester($command);
}
2019-02-17 22:28:34 +03:00
/** @test */
public function correctShortCodeResolvesUrl(): void
2016-07-30 17:48:02 +03:00
{
$shortCode = 'abc123';
$expectedUrl = 'http://domain.com/foo/bar';
$shortUrl = new ShortUrl($expectedUrl);
$this->urlResolver->shortCodeToShortUrl($shortCode, null)->willReturn($shortUrl)
->shouldBeCalledOnce();
2016-07-30 17:48:02 +03:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 17:48:02 +03:00
$output = $this->commandTester->getDisplay();
$this->assertEquals('Long URL: ' . $expectedUrl . PHP_EOL, $output);
}
2019-02-17 22:28:34 +03:00
/** @test */
public function incorrectShortCodeOutputsErrorMessage(): void
2016-07-30 17:48:02 +03:00
{
$shortCode = 'abc123';
$this->urlResolver->shortCodeToShortUrl($shortCode, null)
->willThrow(ShortUrlNotFoundException::fromNotFoundShortCode($shortCode))
->shouldBeCalledOnce();
2016-07-30 17:48:02 +03:00
$this->commandTester->execute(['shortCode' => $shortCode]);
2016-07-30 17:48:02 +03:00
$output = $this->commandTester->getDisplay();
$this->assertStringContainsString(sprintf('No URL found with short code "%s"', $shortCode), $output);
2016-07-30 17:48:02 +03:00
}
}