2016-07-31 00:17:13 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-31 00:17:13 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest;
|
|
|
|
|
2020-11-22 20:11:31 +03:00
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-31 00:17:13 +03:00
|
|
|
use Shlinkio\Shlink\Rest\ConfigProvider;
|
|
|
|
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
|
|
{
|
2019-12-30 00:48:40 +03:00
|
|
|
private ConfigProvider $configProvider;
|
2016-07-31 00:17:13 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-31 00:17:13 +03:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-11-22 20:01:38 +03:00
|
|
|
public function properConfigIsReturned(): void
|
2016-07-31 00:17:13 +03:00
|
|
|
{
|
2019-12-01 14:04:31 +03:00
|
|
|
$config = ($this->configProvider)();
|
2016-07-31 00:17:13 +03:00
|
|
|
|
2020-11-22 20:11:31 +03:00
|
|
|
self::assertCount(5, $config);
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertArrayHasKey('routes', $config);
|
|
|
|
self::assertArrayHasKey('dependencies', $config);
|
2020-11-22 20:11:31 +03:00
|
|
|
self::assertArrayHasKey('auth', $config);
|
|
|
|
self::assertArrayHasKey('entity_manager', $config);
|
|
|
|
self::assertArrayHasKey(ConfigAbstractFactory::class, $config);
|
2016-07-31 00:17:13 +03:00
|
|
|
}
|
2019-12-01 14:04:31 +03:00
|
|
|
|
2020-01-07 20:07:51 +03:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @dataProvider provideRoutesConfig
|
|
|
|
*/
|
|
|
|
public function routesAreProperlyPrefixed(array $routes, array $expected): void
|
|
|
|
{
|
|
|
|
$configProvider = new ConfigProvider(fn () => ['routes' => $routes]);
|
|
|
|
|
|
|
|
$config = $configProvider();
|
|
|
|
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertEquals($expected, $config['routes']);
|
2020-01-07 20:07:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function provideRoutesConfig(): iterable
|
2019-12-01 14:04:31 +03:00
|
|
|
{
|
2020-01-07 20:07:51 +03:00
|
|
|
yield 'health action present' => [
|
|
|
|
[
|
2019-12-30 01:16:55 +03:00
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
2019-12-31 18:26:00 +03:00
|
|
|
['path' => '/health'],
|
2019-12-30 01:16:55 +03:00
|
|
|
],
|
2020-01-07 20:07:51 +03:00
|
|
|
[
|
|
|
|
['path' => '/rest/v{version:1|2}/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2}/bar'],
|
|
|
|
['path' => '/rest/v{version:1|2}/baz/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2}/health'],
|
|
|
|
['path' => '/rest/health', 'name' => ConfigProvider::UNVERSIONED_HEALTH_ENDPOINT_NAME],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
yield 'health action not present' => [
|
|
|
|
[
|
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
['path' => '/rest/v{version:1|2}/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2}/bar'],
|
|
|
|
['path' => '/rest/v{version:1|2}/baz/foo'],
|
|
|
|
],
|
|
|
|
];
|
2019-12-01 14:04:31 +03:00
|
|
|
}
|
2016-07-31 00:17:13 +03:00
|
|
|
}
|