shlink/module/CLI/test/Command/Install/InstallCommandTest.php

140 lines
4.7 KiB
PHP
Raw Normal View History

2016-08-15 12:34:35 +03:00
<?php
namespace ShlinkioTest\Shlink\CLI\Command\Install;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-08-15 12:34:35 +03:00
use Prophecy\Argument;
2017-07-06 14:38:15 +03:00
use Prophecy\Prophecy\MethodProphecy;
2016-08-15 12:34:35 +03:00
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\CLI\Command\Install\InstallCommand;
2017-07-06 11:04:35 +03:00
use Shlinkio\Shlink\CLI\Install\ConfigCustomizerPluginManagerInterface;
use Shlinkio\Shlink\CLI\Install\Plugin\ConfigCustomizerPluginInterface;
2016-08-15 12:34:35 +03:00
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Helper\ProcessHelper;
use Symfony\Component\Console\Tester\CommandTester;
2017-07-06 14:38:15 +03:00
use Symfony\Component\Filesystem\Exception\IOException;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Process\Process;
2016-08-15 12:34:35 +03:00
use Zend\Config\Writer\WriterInterface;
class InstallCommandTest extends TestCase
{
2017-07-06 14:38:15 +03:00
/**
* @var InstallCommand
*/
protected $command;
2016-08-15 12:34:35 +03:00
/**
* @var CommandTester
*/
protected $commandTester;
/**
* @var ObjectProphecy
*/
protected $configWriter;
/**
* @var ObjectProphecy
*/
protected $filesystem;
2016-08-15 12:34:35 +03:00
public function setUp()
{
$processMock = $this->prophesize(Process::class);
$processMock->isSuccessful()->willReturn(true);
2016-08-15 12:34:35 +03:00
$processHelper = $this->prophesize(ProcessHelper::class);
$processHelper->getName()->willReturn('process');
$processHelper->setHelperSet(Argument::any())->willReturn(null);
$processHelper->run(Argument::cetera())->willReturn($processMock->reveal());
2016-08-15 12:34:35 +03:00
$this->filesystem = $this->prophesize(Filesystem::class);
$this->filesystem->exists(Argument::cetera())->willReturn(false);
2017-07-06 11:04:35 +03:00
$this->configWriter = $this->prophesize(WriterInterface::class);
$configCustomizer = $this->prophesize(ConfigCustomizerPluginInterface::class);
$configCustomizers = $this->prophesize(ConfigCustomizerPluginManagerInterface::class);
$configCustomizers->get(Argument::cetera())->willReturn($configCustomizer->reveal());
2016-08-15 12:34:35 +03:00
$app = new Application();
$helperSet = $app->getHelperSet();
$helperSet->set($processHelper->reveal());
$app->setHelperSet($helperSet);
2017-07-06 14:38:15 +03:00
$this->command = new InstallCommand(
2017-07-06 11:04:35 +03:00
$this->configWriter->reveal(),
$this->filesystem->reveal(),
$configCustomizers->reveal()
);
2017-07-06 14:38:15 +03:00
$app->add($this->command);
2016-08-15 12:34:35 +03:00
2017-07-06 14:38:15 +03:00
$this->commandTester = new CommandTester($this->command);
2016-08-15 12:34:35 +03:00
}
/**
* @test
*/
2017-07-06 14:38:15 +03:00
public function generatedConfigIsProperlyPersisted()
2016-08-15 12:34:35 +03:00
{
2017-07-06 11:04:35 +03:00
$this->configWriter->toFile(Argument::any(), Argument::type('array'), false)->shouldBeCalledTimes(1);
2017-07-06 14:38:15 +03:00
$this->commandTester->execute([]);
}
/**
* @test
*/
public function cachedConfigIsDeletedIfExists()
{
/** @var MethodProphecy $appConfigExists */
$appConfigExists = $this->filesystem->exists('data/cache/app_config.php')->willReturn(true);
/** @var MethodProphecy $appConfigRemove */
$appConfigRemove = $this->filesystem->remove('data/cache/app_config.php')->willReturn(null);
2017-07-06 14:38:15 +03:00
$this->commandTester->execute([]);
$appConfigExists->shouldHaveBeenCalledTimes(1);
$appConfigRemove->shouldHaveBeenCalledTimes(1);
}
/**
* @test
*/
public function exceptionWhileDeletingCachedConfigCancelsProcess()
{
/** @var MethodProphecy $appConfigExists */
$appConfigExists = $this->filesystem->exists('data/cache/app_config.php')->willReturn(true);
/** @var MethodProphecy $appConfigRemove */
$appConfigRemove = $this->filesystem->remove('data/cache/app_config.php')->willThrow(IOException::class);
/** @var MethodProphecy $configToFile */
$configToFile = $this->configWriter->toFile(Argument::cetera())->willReturn(true);
$this->commandTester->execute([]);
$appConfigExists->shouldHaveBeenCalledTimes(1);
$appConfigRemove->shouldHaveBeenCalledTimes(1);
$configToFile->shouldNotHaveBeenCalled();
}
/**
* @test
*/
public function whenCommandIsUpdatePreviousConfigCanBeImported()
{
$ref = new \ReflectionObject($this->command);
$prop = $ref->getProperty('isUpdate');
$prop->setAccessible(true);
$prop->setValue($this->command, true);
/** @var MethodProphecy $importedConfigExists */
$importedConfigExists = $this->filesystem->exists(
__DIR__ . '/../../../test-resources/' . InstallCommand::GENERATED_CONFIG_PATH
)->willReturn(true);
$this->commandTester->setInputs([
'',
'/foo/bar/wrong_previous_shlink',
'',
__DIR__ . '/../../../test-resources',
2016-08-15 12:34:35 +03:00
]);
2017-07-06 14:38:15 +03:00
$this->commandTester->execute([]);
$importedConfigExists->shouldHaveBeenCalled();
2016-08-15 12:34:35 +03:00
}
}