mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Created DeprecatedConfigParserTest
This commit is contained in:
95
module/Core/test/Config/DeprecatedConfigParserTest.php
Normal file
95
module/Core/test/Config/DeprecatedConfigParserTest.php
Normal file
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ShlinkioTest\Shlink\Core\Config;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Shlinkio\Shlink\Core\Config\DeprecatedConfigParser;
|
||||
|
||||
use function array_merge;
|
||||
|
||||
class DeprecatedConfigParserTest extends TestCase
|
||||
{
|
||||
/** @var DeprecatedConfigParser */
|
||||
private $postProcessor;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->postProcessor = new DeprecatedConfigParser();
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function returnsConfigAsIsIfNewValueIsDefined(): void
|
||||
{
|
||||
$config = [
|
||||
'not_found_redirects' => [
|
||||
'invalid_short_url' => 'somewhere',
|
||||
],
|
||||
];
|
||||
|
||||
$result = ($this->postProcessor)($config);
|
||||
|
||||
$this->assertEquals($config, $result);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function doesNotProvideNewConfigIfOldOneIsDefinedButDisabled(): void
|
||||
{
|
||||
$config = [
|
||||
'url_shortener' => [
|
||||
'not_found_short_url' => [
|
||||
'enable_redirection' => false,
|
||||
'redirect_to' => 'somewhere',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
$result = ($this->postProcessor)($config);
|
||||
|
||||
$this->assertEquals($config, $result);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function mapsOldConfigToNewOneWhenOldOneIsEnabled(): void
|
||||
{
|
||||
$config = [
|
||||
'url_shortener' => [
|
||||
'not_found_short_url' => [
|
||||
'enable_redirection' => true,
|
||||
'redirect_to' => 'somewhere',
|
||||
],
|
||||
],
|
||||
];
|
||||
$expected = array_merge($config, [
|
||||
'not_found_redirects' => [
|
||||
'invalid_short_url' => 'somewhere',
|
||||
],
|
||||
]);
|
||||
|
||||
$result = ($this->postProcessor)($config);
|
||||
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function definesNewConfigAsNullIfOldOneIsEnabledWithNoRedirectValue(): void
|
||||
{
|
||||
$config = [
|
||||
'url_shortener' => [
|
||||
'not_found_short_url' => [
|
||||
'enable_redirection' => true,
|
||||
],
|
||||
],
|
||||
];
|
||||
$expected = array_merge($config, [
|
||||
'not_found_redirects' => [
|
||||
'invalid_short_url' => null,
|
||||
],
|
||||
]);
|
||||
|
||||
$result = ($this->postProcessor)($config);
|
||||
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user