2016-07-30 16:17:13 -05:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2017-10-12 03:13:20 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-30 16:17:13 -05:00
|
|
|
namespace ShlinkioTest\Shlink\Rest;
|
|
|
|
|
2020-11-22 11:11:31 -06:00
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2023-02-09 13:42:18 -06:00
|
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2017-03-24 14:34:18 -05:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 16:17:13 -05:00
|
|
|
use Shlinkio\Shlink\Rest\ConfigProvider;
|
|
|
|
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
|
|
{
|
2019-12-29 15:48:40 -06:00
|
|
|
private ConfigProvider $configProvider;
|
2016-07-30 16:17:13 -05:00
|
|
|
|
2022-09-11 05:02:49 -05:00
|
|
|
protected function setUp(): void
|
2016-07-30 16:17:13 -05:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2023-02-09 13:42:18 -06:00
|
|
|
#[Test]
|
2019-11-22 11:01:38 -06:00
|
|
|
public function properConfigIsReturned(): void
|
2016-07-30 16:17:13 -05:00
|
|
|
{
|
2019-12-01 05:04:31 -06:00
|
|
|
$config = ($this->configProvider)();
|
2016-07-30 16:17:13 -05:00
|
|
|
|
2023-10-20 02:42:48 -05:00
|
|
|
self::assertCount(5, $config);
|
2020-10-03 17:35:14 -05:00
|
|
|
self::assertArrayHasKey('dependencies', $config);
|
2020-11-22 11:11:31 -06:00
|
|
|
self::assertArrayHasKey('auth', $config);
|
|
|
|
self::assertArrayHasKey('entity_manager', $config);
|
2023-10-20 02:42:48 -05:00
|
|
|
self::assertArrayHasKey('access_logs', $config);
|
2020-11-22 11:11:31 -06:00
|
|
|
self::assertArrayHasKey(ConfigAbstractFactory::class, $config);
|
2016-07-30 16:17:13 -05:00
|
|
|
}
|
2019-12-01 05:04:31 -06:00
|
|
|
|
2023-02-09 13:42:18 -06:00
|
|
|
#[Test, DataProvider('provideRoutesConfig')]
|
2022-08-06 02:30:13 -05:00
|
|
|
public function routesAreProperlyPrefixed(array $routes, array $expected): void
|
2020-01-07 11:07:51 -06:00
|
|
|
{
|
2022-08-06 02:30:13 -05:00
|
|
|
self::assertEquals($expected, ConfigProvider::applyRoutesPrefix($routes));
|
2020-01-07 11:07:51 -06:00
|
|
|
}
|
|
|
|
|
2023-02-09 02:32:38 -06:00
|
|
|
public static function provideRoutesConfig(): iterable
|
2019-12-01 05:04:31 -06:00
|
|
|
{
|
2020-01-07 11:07:51 -06:00
|
|
|
yield 'health action present' => [
|
|
|
|
[
|
2019-12-29 16:16:55 -06:00
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
2019-12-31 09:26:00 -06:00
|
|
|
['path' => '/health'],
|
2019-12-29 16:16:55 -06:00
|
|
|
],
|
2020-01-07 11:07:51 -06:00
|
|
|
[
|
2022-08-13 10:15:04 -05:00
|
|
|
['path' => '/rest/v{version:1|2|3}/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2|3}/bar'],
|
|
|
|
['path' => '/rest/v{version:1|2|3}/baz/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2|3}/health'],
|
2020-01-07 11:07:51 -06:00
|
|
|
['path' => '/rest/health', 'name' => ConfigProvider::UNVERSIONED_HEALTH_ENDPOINT_NAME],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
yield 'health action not present' => [
|
|
|
|
[
|
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
|
|
|
],
|
|
|
|
[
|
2022-08-13 10:15:04 -05:00
|
|
|
['path' => '/rest/v{version:1|2|3}/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2|3}/bar'],
|
|
|
|
['path' => '/rest/v{version:1|2|3}/baz/foo'],
|
2020-01-07 11:07:51 -06:00
|
|
|
],
|
|
|
|
];
|
2019-12-01 05:04:31 -06:00
|
|
|
}
|
2016-07-30 16:17:13 -05:00
|
|
|
}
|