2016-07-30 23:17:13 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-30 23:17:13 +02:00
|
|
|
namespace ShlinkioTest\Shlink\Rest;
|
|
|
|
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 23:17:13 +02:00
|
|
|
use Shlinkio\Shlink\Rest\ConfigProvider;
|
|
|
|
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
|
|
{
|
2019-12-29 22:48:40 +01:00
|
|
|
private ConfigProvider $configProvider;
|
2016-07-30 23:17:13 +02:00
|
|
|
|
2019-02-16 10:53:45 +01:00
|
|
|
public function setUp(): void
|
2016-07-30 23:17:13 +02:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2019-02-17 20:28:34 +01:00
|
|
|
/** @test */
|
2019-11-22 18:01:38 +01:00
|
|
|
public function properConfigIsReturned(): void
|
2016-07-30 23:17:13 +02:00
|
|
|
{
|
2019-12-01 12:04:31 +01:00
|
|
|
$config = ($this->configProvider)();
|
2016-07-30 23:17:13 +02:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('routes', $config);
|
2016-07-31 16:30:05 +02:00
|
|
|
$this->assertArrayHasKey('dependencies', $config);
|
2016-07-30 23:17:13 +02:00
|
|
|
}
|
2019-12-01 12:04:31 +01:00
|
|
|
|
|
|
|
/** @test */
|
|
|
|
public function routesAreProperlyPrefixed(): void
|
|
|
|
{
|
2019-12-29 23:16:55 +01:00
|
|
|
$configProvider = new ConfigProvider(fn () => [
|
|
|
|
'routes' => [
|
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
2019-12-31 16:26:00 +01:00
|
|
|
['path' => '/health'],
|
2019-12-29 23:16:55 +01:00
|
|
|
],
|
|
|
|
]);
|
2019-12-01 12:04:31 +01:00
|
|
|
|
|
|
|
$config = $configProvider();
|
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
['path' => '/rest/v{version:1|2}/foo'],
|
|
|
|
['path' => '/rest/v{version:1|2}/bar'],
|
|
|
|
['path' => '/rest/v{version:1|2}/baz/foo'],
|
2020-01-06 23:32:43 +01:00
|
|
|
['path' => '/rest/v{version:1|2}/health'],
|
|
|
|
['path' => '/rest/health', 'name' => ConfigProvider::UNVERSIONED_HEALTH_ENDPOINT_NAME],
|
2019-12-01 12:04:31 +01:00
|
|
|
], $config['routes']);
|
|
|
|
}
|
2016-07-30 23:17:13 +02:00
|
|
|
}
|