shlink/module/Rest/test/Action/CreateShortcodeActionTest.php

125 lines
4.2 KiB
PHP
Raw Normal View History

2016-07-31 08:58:18 -05:00
<?php
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2016-07-31 08:58:18 -05:00
namespace ShlinkioTest\Shlink\Rest\Action;
2017-03-24 14:34:18 -05:00
use PHPUnit\Framework\TestCase;
2016-07-31 08:58:18 -05:00
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\Core\Exception\InvalidUrlException;
2017-10-21 13:16:39 -05:00
use Shlinkio\Shlink\Core\Exception\NonUniqueSlugException;
2016-07-31 08:58:18 -05:00
use Shlinkio\Shlink\Core\Service\UrlShortener;
use Shlinkio\Shlink\Rest\Action\CreateShortcodeAction;
use Shlinkio\Shlink\Rest\Util\RestUtils;
use ShlinkioTest\Shlink\Common\Util\TestUtils;
2016-07-31 08:58:18 -05:00
use Zend\Diactoros\ServerRequestFactory;
use Zend\Diactoros\Uri;
use Zend\I18n\Translator\Translator;
class CreateShortcodeActionTest extends TestCase
{
/**
* @var CreateShortcodeAction
*/
protected $action;
/**
* @var ObjectProphecy
*/
protected $urlShortener;
public function setUp()
{
$this->urlShortener = $this->prophesize(UrlShortener::class);
$this->action = new CreateShortcodeAction($this->urlShortener->reveal(), Translator::factory([]), [
'schema' => 'http',
'hostname' => 'foo.com',
]);
}
/**
* @test
*/
public function missingLongUrlParamReturnsError()
{
$response = $this->action->process(
ServerRequestFactory::fromGlobals(),
TestUtils::createDelegateMock()->reveal()
);
2016-07-31 08:58:18 -05:00
$this->assertEquals(400, $response->getStatusCode());
}
/**
* @test
*/
public function properShortcodeConversionReturnsData()
{
2017-10-21 13:16:39 -05:00
$this->urlShortener->urlToShortCode(Argument::type(Uri::class), Argument::type('array'), Argument::cetera())
->willReturn('abc123')
->shouldBeCalledTimes(1);
2016-07-31 08:58:18 -05:00
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
'longUrl' => 'http://www.domain.com/foo/bar',
]);
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
2016-07-31 08:58:18 -05:00
$this->assertEquals(200, $response->getStatusCode());
$this->assertTrue(strpos($response->getBody()->getContents(), 'http://foo.com/abc123') > 0);
}
/**
* @test
*/
public function anInvalidUrlReturnsError()
{
2017-10-21 13:16:39 -05:00
$this->urlShortener->urlToShortCode(Argument::type(Uri::class), Argument::type('array'), Argument::cetera())
->willThrow(InvalidUrlException::class)
->shouldBeCalledTimes(1);
2016-07-31 08:58:18 -05:00
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
'longUrl' => 'http://www.domain.com/foo/bar',
]);
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
2016-07-31 08:58:18 -05:00
$this->assertEquals(400, $response->getStatusCode());
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::INVALID_URL_ERROR) > 0);
}
2017-10-21 13:16:39 -05:00
/**
* @test
*/
public function nonUniqueSlugReturnsError()
{
2017-10-22 02:17:19 -05:00
$this->urlShortener->urlToShortCode(
Argument::type(Uri::class),
Argument::type('array'),
null,
null,
'foo',
Argument::cetera()
)->willThrow(NonUniqueSlugException::class)->shouldBeCalledTimes(1);
2017-10-21 13:16:39 -05:00
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
'longUrl' => 'http://www.domain.com/foo/bar',
'customSlug' => 'foo',
]);
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
$this->assertEquals(400, $response->getStatusCode());
$this->assertContains(RestUtils::INVALID_SLUG_ERROR, (string) $response->getBody());
}
2016-07-31 08:58:18 -05:00
/**
* @test
*/
public function aGenericExceptionWillReturnError()
{
2017-10-21 13:16:39 -05:00
$this->urlShortener->urlToShortCode(Argument::type(Uri::class), Argument::type('array'), Argument::cetera())
->willThrow(\Exception::class)
->shouldBeCalledTimes(1);
2016-07-31 08:58:18 -05:00
$request = ServerRequestFactory::fromGlobals()->withParsedBody([
'longUrl' => 'http://www.domain.com/foo/bar',
]);
$response = $this->action->process($request, TestUtils::createDelegateMock()->reveal());
2016-07-31 08:58:18 -05:00
$this->assertEquals(500, $response->getStatusCode());
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::UNKNOWN_ERROR) > 0);
}
}