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;
|
|
|
|
|
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
|
|
|
|
{
|
2018-11-20 12:30:27 -06:00
|
|
|
/** @var ConfigProvider */
|
2018-11-20 12:37:22 -06:00
|
|
|
private $configProvider;
|
2016-07-30 16:17:13 -05:00
|
|
|
|
2019-02-16 03:53:45 -06:00
|
|
|
public function setUp(): void
|
2016-07-30 16:17:13 -05:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2019-02-17 13:28:34 -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
|
|
|
|
|
|
|
$this->assertArrayHasKey('routes', $config);
|
2016-07-31 09:30:05 -05:00
|
|
|
$this->assertArrayHasKey('dependencies', $config);
|
2016-07-30 16:17:13 -05:00
|
|
|
}
|
2019-12-01 05:04:31 -06:00
|
|
|
|
|
|
|
/** @test */
|
|
|
|
public function routesAreProperlyPrefixed(): void
|
|
|
|
{
|
|
|
|
$configProvider = new ConfigProvider(function () {
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
|
|
['path' => '/foo'],
|
|
|
|
['path' => '/bar'],
|
|
|
|
['path' => '/baz/foo'],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
|
|
|
$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'],
|
|
|
|
], $config['routes']);
|
|
|
|
}
|
2016-07-30 16:17:13 -05:00
|
|
|
}
|