shlink/module/Rest/test/Action/ShortUrl/CreateShortUrlActionTest.php

116 lines
3.5 KiB
PHP
Raw Normal View History

2016-07-31 16:58:18 +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\Rest\Action\ShortUrl;
2016-07-31 16:58:18 +03:00
use Cake\Chronos\Chronos;
2020-01-01 23:11:53 +03:00
use Laminas\Diactoros\ServerRequest;
use Laminas\Diactoros\ServerRequestFactory;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-07-31 16:58:18 +03:00
use Prophecy\Argument;
2020-11-02 13:50:19 +03:00
use Prophecy\PhpUnit\ProphecyTrait;
2016-07-31 16:58:18 +03:00
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\Core\Entity\ShortUrl;
use Shlinkio\Shlink\Core\Exception\ValidationException;
use Shlinkio\Shlink\Core\Model\ShortUrlMeta;
2016-07-31 16:58:18 +03:00
use Shlinkio\Shlink\Core\Service\UrlShortener;
use Shlinkio\Shlink\Rest\Action\ShortUrl\CreateShortUrlAction;
2020-11-08 13:28:27 +03:00
use Shlinkio\Shlink\Rest\Entity\ApiKey;
use function strpos;
2016-07-31 16:58:18 +03:00
class CreateShortUrlActionTest extends TestCase
2016-07-31 16:58:18 +03:00
{
2020-11-02 13:50:19 +03:00
use ProphecyTrait;
private const DOMAIN_CONFIG = [
'schema' => 'http',
'hostname' => 'foo.com',
];
private CreateShortUrlAction $action;
private ObjectProphecy $urlShortener;
2016-07-31 16:58:18 +03:00
2019-02-16 12:53:45 +03:00
public function setUp(): void
2016-07-31 16:58:18 +03:00
{
$this->urlShortener = $this->prophesize(UrlShortener::class);
$this->action = new CreateShortUrlAction($this->urlShortener->reveal(), self::DOMAIN_CONFIG);
2016-07-31 16:58:18 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
2019-10-02 21:15:14 +03:00
public function missingLongUrlParamReturnsError(): void
2016-07-31 16:58:18 +03:00
{
$this->expectException(ValidationException::class);
$this->action->handle(new ServerRequest());
2016-07-31 16:58:18 +03:00
}
/**
* @test
* @dataProvider provideRequestBodies
*/
2020-11-08 13:28:27 +03:00
public function properShortcodeConversionReturnsData(array $body, array $expectedMeta): void
2016-07-31 16:58:18 +03:00
{
2020-11-08 13:28:27 +03:00
$apiKey = new ApiKey();
$shortUrl = new ShortUrl('');
2020-11-08 13:28:27 +03:00
$expectedMeta['apiKey'] = $apiKey->toString();
$shorten = $this->urlShortener->shorten(
Argument::type('string'),
Argument::type('array'),
2020-11-08 13:28:27 +03:00
ShortUrlMeta::fromRawData($expectedMeta),
)->willReturn($shortUrl);
2016-07-31 16:58:18 +03:00
2020-11-08 13:28:27 +03:00
$request = ServerRequestFactory::fromGlobals()->withParsedBody($body)->withAttribute(ApiKey::class, $apiKey);
2018-03-26 20:02:41 +03:00
$response = $this->action->handle($request);
2020-10-04 01:35:14 +03:00
self::assertEquals(200, $response->getStatusCode());
self::assertTrue(strpos($response->getBody()->getContents(), $shortUrl->toString(self::DOMAIN_CONFIG)) > 0);
$shorten->shouldHaveBeenCalledOnce();
}
public function provideRequestBodies(): iterable
{
$fullMeta = [
'longUrl' => 'http://www.domain.com/foo/bar',
'validSince' => Chronos::now()->toAtomString(),
'validUntil' => Chronos::now()->toAtomString(),
'customSlug' => 'foo-bar-baz',
'maxVisits' => 50,
'findIfExists' => true,
'domain' => 'my-domain.com',
];
2020-11-08 13:28:27 +03:00
yield 'no data' => [['longUrl' => 'http://www.domain.com/foo/bar'], []];
yield 'all data' => [$fullMeta, $fullMeta];
2016-07-31 16:58:18 +03:00
}
/**
* @test
* @dataProvider provideInvalidDomains
*/
public function anInvalidDomainReturnsError(string $domain): void
{
$shortUrl = new ShortUrl('');
$urlToShortCode = $this->urlShortener->shorten(Argument::cetera())->willReturn($shortUrl);
$request = (new ServerRequest())->withParsedBody([
'longUrl' => 'http://www.domain.com/foo/bar',
'domain' => $domain,
2020-11-08 13:28:27 +03:00
])->withAttribute(ApiKey::class, new ApiKey());
$this->expectException(ValidationException::class);
$urlToShortCode->shouldNotBeCalled();
$this->action->handle($request);
}
public function provideInvalidDomains(): iterable
{
yield ['localhost:80000'];
yield ['127.0.0.1'];
yield ['???/&%$&'];
}
2016-07-31 16:58:18 +03:00
}