shlink/module/Rest/test/ConfigProviderTest.php

51 lines
1.3 KiB
PHP
Raw Normal View History

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
{
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 */
public function properConfigIsReturned(): void
2016-07-30 23:17:13 +02:00
{
$config = ($this->configProvider)();
2016-07-30 23:17:13 +02:00
$this->assertArrayHasKey('routes', $config);
$this->assertArrayHasKey('dependencies', $config);
2016-07-30 23:17:13 +02:00
}
/** @test */
public function routesAreProperlyPrefixed(): void
{
$configProvider = new ConfigProvider(fn () => [
'routes' => [
['path' => '/foo'],
['path' => '/bar'],
['path' => '/baz/foo'],
['path' => '/health'],
],
]);
$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'],
['path' => '/rest/v{version:1|2}/health'],
['path' => '/rest/health', 'name' => ConfigProvider::UNVERSIONED_HEALTH_ENDPOINT_NAME],
], $config['routes']);
}
2016-07-30 23:17:13 +02:00
}