shlink/module/Rest/test/ConfigProviderTest.php

51 lines
1.2 KiB
PHP
Raw Normal View History

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;
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
{
/** @var ConfigProvider */
private $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 */
public function properConfigIsReturned(): void
2016-07-31 00:17:13 +03:00
{
$config = ($this->configProvider)();
2016-07-31 00:17:13 +03:00
$this->assertArrayHasKey('routes', $config);
$this->assertArrayHasKey('dependencies', $config);
2016-07-31 00:17:13 +03: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-31 00:17:13 +03:00
}