mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-22 23:23:42 -06:00
Created GenerateShortcodeCommandTest
This commit is contained in:
parent
5cdd782ce1
commit
bb8404040a
@ -52,7 +52,7 @@ class GenerateShortcodeCommand extends Command
|
|||||||
{
|
{
|
||||||
$this->setName('shortcode:generate')
|
$this->setName('shortcode:generate')
|
||||||
->setDescription(
|
->setDescription(
|
||||||
$this->translator->translate('Generates a shortcode for provided URL and returns the short URL')
|
$this->translator->translate('Generates a short code for provided URL and returns the short URL')
|
||||||
)
|
)
|
||||||
->addArgument('longUrl', InputArgument::REQUIRED, $this->translator->translate('The long URL to parse'));
|
->addArgument('longUrl', InputArgument::REQUIRED, $this->translator->translate('The long URL to parse'));
|
||||||
}
|
}
|
||||||
@ -87,8 +87,8 @@ class GenerateShortcodeCommand extends Command
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$shortcode = $this->urlShortener->urlToShortCode(new Uri($longUrl));
|
$shortCode = $this->urlShortener->urlToShortCode(new Uri($longUrl));
|
||||||
$shortUrl = (new Uri())->withPath($shortcode)
|
$shortUrl = (new Uri())->withPath($shortCode)
|
||||||
->withScheme($this->domainConfig['schema'])
|
->withScheme($this->domainConfig['schema'])
|
||||||
->withHost($this->domainConfig['hostname']);
|
->withHost($this->domainConfig['hostname']);
|
||||||
|
|
||||||
|
70
module/CLI/test/Command/GenerateShortcodeCommandTest.php
Normal file
70
module/CLI/test/Command/GenerateShortcodeCommandTest.php
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<?php
|
||||||
|
namespace ShlinkioTest\Shlink\CLI\Command;
|
||||||
|
|
||||||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||||||
|
use Prophecy\Argument;
|
||||||
|
use Prophecy\Prophecy\ObjectProphecy;
|
||||||
|
use Shlinkio\Shlink\CLI\Command\GenerateShortcodeCommand;
|
||||||
|
use Shlinkio\Shlink\Core\Exception\InvalidUrlException;
|
||||||
|
use Shlinkio\Shlink\Core\Service\UrlShortener;
|
||||||
|
use Symfony\Component\Console\Application;
|
||||||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||||||
|
use Zend\I18n\Translator\Translator;
|
||||||
|
|
||||||
|
class GenerateShortcodeCommandTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var CommandTester
|
||||||
|
*/
|
||||||
|
protected $commandTester;
|
||||||
|
/**
|
||||||
|
* @var ObjectProphecy
|
||||||
|
*/
|
||||||
|
protected $urlShortener;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
$this->urlShortener = $this->prophesize(UrlShortener::class);
|
||||||
|
$command = new GenerateShortcodeCommand($this->urlShortener->reveal(), Translator::factory([]), [
|
||||||
|
'schema' => 'http',
|
||||||
|
'hostname' => 'foo.com'
|
||||||
|
]);
|
||||||
|
$app = new Application();
|
||||||
|
$app->add($command);
|
||||||
|
$this->commandTester = new CommandTester($command);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function properShortCodeIsCreatedIfLongUrlIsCorrect()
|
||||||
|
{
|
||||||
|
$this->urlShortener->urlToShortCode(Argument::any())->willReturn('abc123')
|
||||||
|
->shouldBeCalledTimes(1);
|
||||||
|
|
||||||
|
$this->commandTester->execute([
|
||||||
|
'command' => 'shortcode:generate',
|
||||||
|
'longUrl' => 'http://domain.com/foo/bar'
|
||||||
|
]);
|
||||||
|
$output = $this->commandTester->getDisplay();
|
||||||
|
$this->assertTrue(strpos($output, 'http://foo.com/abc123') > 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function exceptionWhileParsingLongUrlOutputsError()
|
||||||
|
{
|
||||||
|
$this->urlShortener->urlToShortCode(Argument::any())->willThrow(new InvalidUrlException())
|
||||||
|
->shouldBeCalledTimes(1);
|
||||||
|
|
||||||
|
$this->commandTester->execute([
|
||||||
|
'command' => 'shortcode:generate',
|
||||||
|
'longUrl' => 'http://domain.com/invalid'
|
||||||
|
]);
|
||||||
|
$output = $this->commandTester->getDisplay();
|
||||||
|
$this->assertTrue(
|
||||||
|
strpos($output, 'Provided URL "http://domain.com/invalid" is invalid. Try with a different one.') === 0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user