2019-08-11 15:21:35 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2019-08-11 15:21:35 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 17:30:46 +03:00
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Middleware;
|
2019-08-11 15:21:35 +03:00
|
|
|
|
2019-08-11 17:30:46 +03:00
|
|
|
use Shlinkio\Shlink\TestUtils\ApiTest\ApiTestCase;
|
2019-08-11 15:29:22 +03:00
|
|
|
|
2019-08-11 15:21:35 +03:00
|
|
|
use function explode;
|
|
|
|
|
2019-08-11 17:30:46 +03:00
|
|
|
class ImplicitOptionsTest extends ApiTestCase
|
2019-08-11 15:21:35 +03:00
|
|
|
{
|
|
|
|
/** @test */
|
|
|
|
public function optionsRequestsReturnEmptyResponse(): void
|
|
|
|
{
|
|
|
|
$resp = $this->callApi(self::METHOD_OPTIONS, '/short-urls');
|
|
|
|
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals(self::STATUS_NO_CONTENT, $resp->getStatusCode());
|
|
|
|
self::assertEmpty((string) $resp->getBody());
|
2019-08-11 15:21:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @test */
|
|
|
|
public function optionsRequestsReturnAllowedMethodsForEndpoint(): void
|
|
|
|
{
|
|
|
|
$resp = $this->callApi(self::METHOD_OPTIONS, '/short-urls');
|
|
|
|
$allowedMethods = $resp->getHeaderLine('Allow');
|
|
|
|
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals([
|
2019-08-11 15:21:35 +03:00
|
|
|
self::METHOD_GET,
|
|
|
|
self::METHOD_POST,
|
|
|
|
], explode(',', $allowedMethods));
|
|
|
|
}
|
|
|
|
}
|