mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-11 17:03:53 +03:00
74 lines
2.2 KiB
PHP
74 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Rest\Exception;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Rest\Exception\MissingAuthenticationException;
|
|
|
|
use function implode;
|
|
use function sprintf;
|
|
|
|
class MissingAuthenticationExceptionTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
* @dataProvider provideExpectedTypes
|
|
*/
|
|
public function exceptionIsProperlyCreatedFromExpectedHeaders(array $expectedHeaders): void
|
|
{
|
|
$expectedMessage = sprintf(
|
|
'Expected one of the following authentication headers, ["%s"], but none were provided',
|
|
implode('", "', $expectedHeaders),
|
|
);
|
|
|
|
$e = MissingAuthenticationException::forHeaders($expectedHeaders);
|
|
|
|
$this->assertCommonExceptionShape($e);
|
|
self::assertEquals($expectedMessage, $e->getMessage());
|
|
self::assertEquals($expectedMessage, $e->getDetail());
|
|
self::assertEquals([
|
|
'expectedTypes' => $expectedHeaders,
|
|
'expectedHeaders' => $expectedHeaders,
|
|
], $e->getAdditionalData());
|
|
}
|
|
|
|
public function provideExpectedTypes(): iterable
|
|
{
|
|
yield [['foo', 'bar']];
|
|
yield [['something']];
|
|
yield [[]];
|
|
yield [['foo', 'bar', 'baz']];
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @dataProvider provideExpectedParam
|
|
*/
|
|
public function exceptionIsProperlyCreatedFromExpectedQueryParam(string $param): void
|
|
{
|
|
$expectedMessage = sprintf('Expected authentication to be provided in "%s" query param', $param);
|
|
|
|
$e = MissingAuthenticationException::forQueryParam($param);
|
|
|
|
$this->assertCommonExceptionShape($e);
|
|
self::assertEquals($expectedMessage, $e->getMessage());
|
|
self::assertEquals($expectedMessage, $e->getDetail());
|
|
self::assertEquals(['param' => $param], $e->getAdditionalData());
|
|
}
|
|
|
|
public function provideExpectedParam(): iterable
|
|
{
|
|
yield ['foo'];
|
|
yield ['bar'];
|
|
yield ['something'];
|
|
}
|
|
|
|
private function assertCommonExceptionShape(MissingAuthenticationException $e): void
|
|
{
|
|
self::assertEquals('Invalid authorization', $e->getTitle());
|
|
self::assertEquals('INVALID_AUTHORIZATION', $e->getType());
|
|
self::assertEquals(401, $e->getStatus());
|
|
}
|
|
}
|