shlink/module/Core/test/Config/BasePathPrefixerTest.php

60 lines
1.6 KiB
PHP
Raw Normal View History

2019-09-13 21:17:30 +03:00
<?php
2019-10-05 18:26:10 +03:00
2019-09-13 21:17:30 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Core\Config;
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Core\Config\BasePathPrefixer;
class BasePathPrefixerTest extends TestCase
{
private BasePathPrefixer $prefixer;
2019-09-13 21:17:30 +03:00
public function setUp(): void
{
$this->prefixer = new BasePathPrefixer();
}
/**
* @test
* @dataProvider provideConfig
*/
public function parsesConfigAsExpected(
array $originalConfig,
array $expectedRoutes,
array $expectedMiddlewares,
): void {
['routes' => $routes, 'middleware_pipeline' => $middlewares] = ($this->prefixer)($originalConfig);
2019-09-13 21:17:30 +03:00
2020-10-04 01:35:14 +03:00
self::assertEquals($expectedRoutes, $routes);
self::assertEquals($expectedMiddlewares, $middlewares);
2019-09-13 21:17:30 +03:00
}
public function provideConfig(): iterable
{
yield 'with empty options' => [['routes' => []], [], []];
2019-09-13 21:17:30 +03:00
yield 'with non-empty options' => [
[
'routes' => [
['path' => '/something'],
['path' => '/something-else'],
],
'middleware_pipeline' => [
['with' => 'no_path'],
['path' => '/rest', 'middleware' => []],
],
'router' => ['base_path' => '/foo/bar'],
],
[
['path' => '/foo/bar/something'],
['path' => '/foo/bar/something-else'],
],
[
['with' => 'no_path'],
['path' => '/foo/bar/rest', 'middleware' => []],
],
];
}
}