shlink/module/Core/test/Exception/InvalidUrlExceptionTest.php

43 lines
1.3 KiB
PHP
Raw Normal View History

2018-11-17 21:23:25 +03:00
<?php
2019-10-05 18:26:10 +03:00
2018-11-17 21:23:25 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Core\Exception;
use Exception;
use Fig\Http\Message\StatusCodeInterface;
2018-11-17 21:23:25 +03:00
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Core\Exception\InvalidUrlException;
use Throwable;
use function sprintf;
2018-11-17 21:23:25 +03:00
class InvalidUrlExceptionTest extends TestCase
{
/**
* @test
* @dataProvider providePrevious
*/
2019-02-17 22:28:34 +03:00
public function properlyCreatesExceptionFromUrl(?Throwable $prev): void
2018-11-17 21:23:25 +03:00
{
$url = 'http://the_url.com';
$expectedMessage = sprintf('Provided URL %s is invalid. Try with a different one.', $url);
$e = InvalidUrlException::fromUrl($url, $prev);
2018-11-17 21:23:25 +03:00
2020-10-04 01:35:14 +03:00
self::assertEquals($expectedMessage, $e->getMessage());
self::assertEquals($expectedMessage, $e->getDetail());
self::assertEquals('Invalid URL', $e->getTitle());
self::assertEquals('INVALID_URL', $e->getType());
self::assertEquals(['url' => $url], $e->getAdditionalData());
self::assertEquals(StatusCodeInterface::STATUS_BAD_REQUEST, $e->getCode());
self::assertEquals(StatusCodeInterface::STATUS_BAD_REQUEST, $e->getStatus());
self::assertEquals($prev, $e->getPrevious());
2018-11-17 21:23:25 +03:00
}
2019-02-17 22:28:34 +03:00
public function providePrevious(): iterable
2018-11-17 21:23:25 +03:00
{
2019-02-17 22:28:34 +03:00
yield 'null previous' => [null];
yield 'instance previous' => [new Exception('Previous error', 10)];
2018-11-17 21:23:25 +03:00
}
}