2019-01-26 03:19:20 -06:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2019-01-26 03:19:20 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Middleware;
|
|
|
|
|
2019-11-26 14:29:25 -06:00
|
|
|
use Shlinkio\Shlink\Rest\Authentication\Plugin;
|
2019-01-27 03:54:04 -06:00
|
|
|
use Shlinkio\Shlink\Rest\Authentication\RequestToHttpAuthPlugin;
|
2019-08-11 09:30:46 -05:00
|
|
|
use Shlinkio\Shlink\TestUtils\ApiTest\ApiTestCase;
|
2019-02-26 15:56:43 -06:00
|
|
|
|
2019-01-27 03:54:04 -06:00
|
|
|
use function implode;
|
|
|
|
use function sprintf;
|
2019-01-26 03:19:20 -06:00
|
|
|
|
|
|
|
class AuthenticationTest extends ApiTestCase
|
|
|
|
{
|
2019-02-17 13:28:34 -06:00
|
|
|
/** @test */
|
|
|
|
public function authorizationErrorIsReturnedIfNoApiKeyIsSent(): void
|
2019-01-26 03:19:20 -06:00
|
|
|
{
|
2019-11-27 13:48:35 -06:00
|
|
|
$expectedDetail = sprintf(
|
2019-12-01 03:14:29 -06:00
|
|
|
'Expected one of the following authentication headers, ["%s"], but none were provided',
|
2020-01-01 13:48:31 -06:00
|
|
|
implode('", "', RequestToHttpAuthPlugin::SUPPORTED_AUTH_HEADERS),
|
2019-11-27 13:48:35 -06:00
|
|
|
);
|
|
|
|
|
2019-12-31 08:38:37 -06:00
|
|
|
$resp = $this->callApi(self::METHOD_GET, '/short-urls');
|
2019-11-27 13:48:35 -06:00
|
|
|
$payload = $this->getJsonResponsePayload($resp);
|
2019-01-26 03:19:20 -06:00
|
|
|
|
2019-01-30 11:28:07 -06:00
|
|
|
$this->assertEquals(self::STATUS_UNAUTHORIZED, $resp->getStatusCode());
|
2019-11-27 13:48:35 -06:00
|
|
|
$this->assertEquals(self::STATUS_UNAUTHORIZED, $payload['status']);
|
|
|
|
$this->assertEquals('INVALID_AUTHORIZATION', $payload['type']);
|
|
|
|
$this->assertEquals($expectedDetail, $payload['detail']);
|
|
|
|
$this->assertEquals('Invalid authorization', $payload['title']);
|
2019-01-27 03:54:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2019-01-27 05:14:18 -06:00
|
|
|
* @dataProvider provideInvalidApiKeys
|
2019-01-27 03:54:04 -06:00
|
|
|
*/
|
2019-02-17 13:28:34 -06:00
|
|
|
public function apiKeyErrorIsReturnedWhenProvidedApiKeyIsInvalid(string $apiKey): void
|
2019-01-27 03:54:04 -06:00
|
|
|
{
|
2019-11-27 13:48:35 -06:00
|
|
|
$expectedDetail = 'Provided API key does not exist or is invalid.';
|
|
|
|
|
2019-12-31 08:38:37 -06:00
|
|
|
$resp = $this->callApi(self::METHOD_GET, '/short-urls', [
|
2019-01-30 11:28:07 -06:00
|
|
|
'headers' => [
|
2019-11-26 14:29:25 -06:00
|
|
|
Plugin\ApiKeyHeaderPlugin::HEADER_NAME => $apiKey,
|
2019-01-30 11:28:07 -06:00
|
|
|
],
|
|
|
|
]);
|
2019-11-27 13:48:35 -06:00
|
|
|
$payload = $this->getJsonResponsePayload($resp);
|
2019-01-27 03:54:04 -06:00
|
|
|
|
2019-01-30 11:28:07 -06:00
|
|
|
$this->assertEquals(self::STATUS_UNAUTHORIZED, $resp->getStatusCode());
|
2019-11-27 13:48:35 -06:00
|
|
|
$this->assertEquals(self::STATUS_UNAUTHORIZED, $payload['status']);
|
|
|
|
$this->assertEquals('INVALID_API_KEY', $payload['type']);
|
|
|
|
$this->assertEquals($expectedDetail, $payload['detail']);
|
|
|
|
$this->assertEquals('Invalid API key', $payload['title']);
|
2019-01-26 03:19:20 -06:00
|
|
|
}
|
2019-01-27 05:14:18 -06:00
|
|
|
|
2019-02-17 13:28:34 -06:00
|
|
|
public function provideInvalidApiKeys(): iterable
|
2019-01-27 05:14:18 -06:00
|
|
|
{
|
2019-02-17 13:28:34 -06:00
|
|
|
yield 'key which does not exist' => ['invalid'];
|
|
|
|
yield 'key which is expired' => ['expired_api_key'];
|
|
|
|
yield 'key which is disabled' => ['disabled_api_key'];
|
2019-01-27 05:14:18 -06:00
|
|
|
}
|
2019-01-26 03:19:20 -06:00
|
|
|
}
|