shlink/module/Core/test/Util/UrlValidatorTest.php

176 lines
6.2 KiB
PHP
Raw Normal View History

2019-11-16 03:19:25 -06:00
<?php
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Core\Util;
use Fig\Http\Message\RequestMethodInterface;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\RequestOptions;
2020-01-01 14:11:53 -06:00
use Laminas\Diactoros\Response;
2021-02-03 04:53:08 -06:00
use Laminas\Diactoros\Stream;
use PHPUnit\Framework\Assert;
use PHPUnit\Framework\MockObject\MockObject;
2019-11-16 03:19:25 -06:00
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Core\Exception\InvalidUrlException;
use Shlinkio\Shlink\Core\Options\UrlShortenerOptions;
2019-11-16 03:19:25 -06:00
use Shlinkio\Shlink\Core\Util\UrlValidator;
2019-11-16 03:19:25 -06:00
class UrlValidatorTest extends TestCase
{
2022-10-24 12:53:13 -05:00
private MockObject & ClientInterface $httpClient;
2019-11-16 03:19:25 -06:00
protected function setUp(): void
2019-11-16 03:19:25 -06:00
{
$this->httpClient = $this->createMock(ClientInterface::class);
2019-11-16 03:19:25 -06:00
}
/** @test */
public function exceptionIsThrownWhenUrlIsInvalid(): void
2019-11-16 03:19:25 -06:00
{
$this->httpClient->expects($this->once())->method('request')->willThrowException($this->clientException());
2019-11-16 03:19:25 -06:00
$this->expectException(InvalidUrlException::class);
$this->urlValidator()->validateUrl('http://foobar.com/12345/hello?foo=bar', true);
2019-11-16 03:19:25 -06:00
}
/** @test */
public function expectedUrlIsCalledWhenTryingToVerify(): void
2019-11-16 03:19:25 -06:00
{
$expectedUrl = 'http://foobar.com';
$this->httpClient->expects($this->once())->method('request')->with(
2019-11-16 03:19:25 -06:00
RequestMethodInterface::METHOD_GET,
$expectedUrl,
$this->callback(function (array $options) {
Assert::assertArrayHasKey(RequestOptions::ALLOW_REDIRECTS, $options);
Assert::assertEquals(['max' => 15], $options[RequestOptions::ALLOW_REDIRECTS]);
Assert::assertArrayHasKey(RequestOptions::IDN_CONVERSION, $options);
Assert::assertTrue($options[RequestOptions::IDN_CONVERSION]);
Assert::assertArrayHasKey(RequestOptions::HEADERS, $options);
Assert::assertArrayHasKey('User-Agent', $options[RequestOptions::HEADERS]);
return true;
}),
)->willReturn(new Response());
2019-11-16 03:19:25 -06:00
$this->urlValidator()->validateUrl($expectedUrl, true);
2019-11-16 03:19:25 -06:00
}
/** @test */
public function noCheckIsPerformedWhenUrlValidationIsDisabled(): void
{
$this->httpClient->expects($this->never())->method('request');
$this->urlValidator()->validateUrl('', false);
}
/** @test */
public function validateUrlWithTitleReturnsNullWhenRequestFailsAndValidationIsDisabled(): void
{
$this->httpClient->expects($this->once())->method('request')->willThrowException($this->clientException());
2021-02-03 04:53:08 -06:00
$result = $this->urlValidator(true)->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', false);
2021-02-03 04:53:08 -06:00
self::assertNull($result);
}
/** @test */
public function validateUrlWithTitleReturnsNullWhenAutoResolutionIsDisabled(): void
{
$this->httpClient->expects($this->never())->method('request');
2021-02-03 04:53:08 -06:00
$result = $this->urlValidator()->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', false);
2021-02-03 04:53:08 -06:00
self::assertNull($result);
}
/** @test */
public function validateUrlWithTitleReturnsNullWhenAutoResolutionIsDisabledAndValidationIsEnabled(): void
{
$this->httpClient->expects($this->once())->method('request')->with(
RequestMethodInterface::METHOD_HEAD,
$this->anything(),
$this->anything(),
)->willReturn($this->respWithTitle());
$result = $this->urlValidator()->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', true);
self::assertNull($result);
}
2021-02-03 04:53:08 -06:00
/** @test */
public function validateUrlWithTitleResolvesTitleWhenAutoResolutionIsEnabled(): void
{
$this->httpClient->expects($this->once())->method('request')->with(
RequestMethodInterface::METHOD_GET,
$this->anything(),
$this->anything(),
)->willReturn($this->respWithTitle());
2021-02-03 04:53:08 -06:00
$result = $this->urlValidator(true)->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', true);
2021-02-03 04:53:08 -06:00
self::assertEquals('Resolved "title"', $result);
2021-02-03 04:53:08 -06:00
}
/** @test */
public function validateUrlWithTitleReturnsNullWhenAutoResolutionIsEnabledAndReturnedContentTypeIsInvalid(): void
{
$this->httpClient->expects($this->once())->method('request')->with(
RequestMethodInterface::METHOD_GET,
$this->anything(),
$this->anything(),
)->willReturn(new Response('php://memory', 200, ['Content-Type' => 'application/octet-stream']));
$result = $this->urlValidator(true)->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', true);
self::assertNull($result);
}
/** @test */
public function validateUrlWithTitleReturnsNullWhenAutoResolutionIsEnabledAndBodyDoesNotContainTitle(): void
{
$this->httpClient->expects($this->once())->method('request')->with(
RequestMethodInterface::METHOD_GET,
$this->anything(),
$this->anything(),
)->willReturn(
new Response($this->createStreamWithContent('<body>No title</body>'), 200, ['Content-Type' => 'text/html']),
);
$result = $this->urlValidator(true)->validateUrlWithTitle('http://foobar.com/12345/hello?foo=bar', true);
self::assertNull($result);
}
2021-02-03 04:53:08 -06:00
private function respWithTitle(): Response
{
$body = $this->createStreamWithContent('<title data-foo="bar"> Resolved &quot;title&quot; </title>');
return new Response($body, 200, ['Content-Type' => 'TEXT/html; charset=utf-8']);
}
private function createStreamWithContent(string $content): Stream
2021-02-03 04:53:08 -06:00
{
$body = new Stream('php://temp', 'wr');
$body->write($content);
$body->rewind();
2021-02-03 04:53:08 -06:00
return $body;
2021-02-03 04:53:08 -06:00
}
private function clientException(): ClientException
{
return new ClientException(
'',
new Request(RequestMethodInterface::METHOD_GET, ''),
new Response(),
);
}
public function urlValidator(bool $autoResolveTitles = false): UrlValidator
{
return new UrlValidator($this->httpClient, new UrlShortenerOptions(autoResolveTitles: $autoResolveTitles));
}
2019-11-16 03:19:25 -06:00
}