mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 00:38:46 +03:00
90 lines
2.3 KiB
PHP
90 lines
2.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Installer\Config\Plugin;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Shlinkio\Shlink\Installer\Config\Plugin\LanguageConfigCustomizer;
|
|
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
class LanguageConfigCustomizerTest extends TestCase
|
|
{
|
|
/**
|
|
* @var LanguageConfigCustomizer
|
|
*/
|
|
protected $plugin;
|
|
/**
|
|
* @var ObjectProphecy
|
|
*/
|
|
protected $io;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->io = $this->prophesize(SymfonyStyle::class);
|
|
$this->io->title(Argument::any())->willReturn(null);
|
|
$this->plugin = new LanguageConfigCustomizer();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function configIsRequestedToTheUser()
|
|
{
|
|
$choice = $this->io->choice(Argument::cetera())->willReturn('en');
|
|
$config = new CustomizableAppConfig();
|
|
|
|
$this->plugin->process($this->io->reveal(), $config);
|
|
|
|
$this->assertTrue($config->hasLanguage());
|
|
$this->assertEquals([
|
|
'DEFAULT' => 'en',
|
|
'CLI' => 'en',
|
|
], $config->getLanguage());
|
|
$choice->shouldHaveBeenCalledTimes(2);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function onlyMissingOptionsAreAsked()
|
|
{
|
|
$choice = $this->io->choice(Argument::cetera())->willReturn('es');
|
|
$config = new CustomizableAppConfig();
|
|
$config->setLanguage([
|
|
'DEFAULT' => 'en',
|
|
]);
|
|
|
|
$this->plugin->process($this->io->reveal(), $config);
|
|
|
|
$this->assertEquals([
|
|
'DEFAULT' => 'en',
|
|
'CLI' => 'es',
|
|
], $config->getLanguage());
|
|
$choice->shouldHaveBeenCalledTimes(1);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function noQuestionsAskedIfImportedConfigContainsEverything()
|
|
{
|
|
$choice = $this->io->choice(Argument::cetera())->willReturn('en');
|
|
|
|
$config = new CustomizableAppConfig();
|
|
$config->setLanguage([
|
|
'DEFAULT' => 'es',
|
|
'CLI' => 'es',
|
|
]);
|
|
|
|
$this->plugin->process($this->io->reveal(), $config);
|
|
|
|
$this->assertEquals([
|
|
'DEFAULT' => 'es',
|
|
'CLI' => 'es',
|
|
], $config->getLanguage());
|
|
$choice->shouldNotHaveBeenCalled();
|
|
}
|
|
}
|