mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
32 lines
824 B
PHP
32 lines
824 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Rest\Exception;
|
|
|
|
use Exception;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Rest\Exception\AuthenticationException;
|
|
use Throwable;
|
|
|
|
class AuthenticationExceptionTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
* @dataProvider providePrev
|
|
*/
|
|
public function expiredJWTCreatesExpectedException(?Throwable $prev): void
|
|
{
|
|
$e = AuthenticationException::expiredJWT($prev);
|
|
|
|
$this->assertEquals($prev, $e->getPrevious());
|
|
$this->assertEquals(-1, $e->getCode());
|
|
$this->assertEquals('The token has expired.', $e->getMessage());
|
|
}
|
|
|
|
public function providePrev(): iterable
|
|
{
|
|
yield 'with previous exception' => [new Exception('Prev')];
|
|
yield 'without previous exception' => [null];
|
|
}
|
|
}
|