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);
|
|
|
|
|
2018-09-16 19:36:02 +03:00
|
|
|
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;
|
2018-09-16 19:36:02 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Command\ShortUrl\ResolveUrlCommand;
|
2018-08-11 11:40:44 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
2019-11-25 01:11:25 +03:00
|
|
|
use Shlinkio\Shlink\Core\Exception\ShortUrlNotFoundException;
|
2020-02-01 13:46:54 +03:00
|
|
|
use Shlinkio\Shlink\Core\Model\ShortUrlIdentifier;
|
2020-01-26 21:21:51 +03:00
|
|
|
use Shlinkio\Shlink\Core\Service\ShortUrl\ShortUrlResolverInterface;
|
2021-04-08 14:42:56 +03:00
|
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
2016-07-30 17:48:02 +03:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2019-02-27 00:56:43 +03:00
|
|
|
|
2019-11-25 20:54:25 +03:00
|
|
|
use function sprintf;
|
|
|
|
|
2018-10-28 10:34:02 +03:00
|
|
|
use const PHP_EOL;
|
2016-07-30 17:48:02 +03:00
|
|
|
|
|
|
|
class ResolveUrlCommandTest extends TestCase
|
|
|
|
{
|
2021-04-08 14:42:56 +03:00
|
|
|
use CliTestUtilsTrait;
|
2020-11-02 13:50:19 +03:00
|
|
|
|
2019-12-30 00:27:00 +03:00
|
|
|
private CommandTester $commandTester;
|
2020-01-26 21:21:51 +03:00
|
|
|
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
|
|
|
{
|
2020-01-26 21:21:51 +03:00
|
|
|
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
|
2021-04-08 14:42:56 +03:00
|
|
|
$this->commandTester = $this->testerForCommand(new ResolveUrlCommand($this->urlResolver->reveal()));
|
2016-07-30 17:48:02 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function correctShortCodeResolvesUrl(): void
|
2016-07-30 17:48:02 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$expectedUrl = 'http://domain.com/foo/bar';
|
2021-01-30 16:18:44 +03:00
|
|
|
$shortUrl = ShortUrl::withLongUrl($expectedUrl);
|
2020-02-01 13:46:54 +03:00
|
|
|
$this->urlResolver->resolveShortUrl(new ShortUrlIdentifier($shortCode))->willReturn($shortUrl)
|
|
|
|
->shouldBeCalledOnce();
|
2016-07-30 17:48:02 +03:00
|
|
|
|
2019-04-14 23:20:58 +03:00
|
|
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
2016-07-30 17:48:02 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals('Long URL: ' . $expectedUrl . PHP_EOL, $output);
|
2016-07-30 17:48:02 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function incorrectShortCodeOutputsErrorMessage(): void
|
2016-07-30 17:48:02 +03:00
|
|
|
{
|
2020-02-01 13:46:54 +03:00
|
|
|
$identifier = new ShortUrlIdentifier('abc123');
|
|
|
|
$shortCode = $identifier->shortCode();
|
|
|
|
|
|
|
|
$this->urlResolver->resolveShortUrl($identifier)
|
|
|
|
->willThrow(ShortUrlNotFoundException::fromNotFound($identifier))
|
2019-11-28 20:42:27 +03:00
|
|
|
->shouldBeCalledOnce();
|
2016-07-30 17:48:02 +03:00
|
|
|
|
2019-04-14 23:20:58 +03:00
|
|
|
$this->commandTester->execute(['shortCode' => $shortCode]);
|
2016-07-30 17:48:02 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertStringContainsString(sprintf('No URL found with short code "%s"', $shortCode), $output);
|
2016-07-30 17:48:02 +03:00
|
|
|
}
|
|
|
|
}
|