123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestFramework\Deploy;
- use Magento\Framework\App\DeploymentConfig;
- use Magento\Framework\Shell;
- use Magento\Framework\Shell\CommandRenderer;
- use Magento\Setup\Console\Command\InstallCommand;
- /**
- * The purpose of this class is enable/disable module and upgrade commands execution.
- */
- class CliCommand
- {
- /**
- * @var \Magento\Framework\Shell
- */
- private $shell;
- /**
- * @var TestModuleManager
- */
- private $testEnv;
- /**
- * @var ParametersHolder
- */
- private $parametersHolder;
- /**
- * @var DeploymentConfig
- */
- private $deploymentConfig;
- /**
- * ShellCommand constructor.
- *
- * @param TestModuleManager $testEnv
- * @param DeploymentConfig $deploymentConfig
- * @internal param Shell $shell
- */
- public function __construct(
- \Magento\TestFramework\Deploy\TestModuleManager $testEnv
- ) {
- $this->shell = new Shell(new CommandRenderer());
- $this->testEnv = $testEnv;
- $this->parametersHolder = new ParametersHolder();
- }
- /**
- * Copy Test module files and execute enable module command.
- *
- * @param string $moduleName
- * @return string
- */
- public function introduceModule($moduleName)
- {
- $this->testEnv->addModuleFiles($moduleName);
- return $this->enableModule($moduleName);
- }
- /**
- * Execute enable module command.
- *
- * @param string $moduleName
- * @return string
- */
- public function enableModule($moduleName)
- {
- $initParams = $this->parametersHolder->getInitParams();
- $enableModuleCommand = 'php -f ' . BP . '/bin/magento module:enable ' . $moduleName
- . ' -n -vvv --magento-init-params="' . $initParams['magento-init-params'] . '"';
- return $this->shell->execute($enableModuleCommand);
- }
- /**
- * Execute upgrade magento command.
- *
- * @param array $installParams
- * @return string
- */
- public function upgrade($installParams = [])
- {
- $initParams = $this->parametersHolder->getInitParams();
- $upgradeCommand = 'php -f ' . BP . '/bin/magento setup:upgrade -vvv -n --magento-init-params="'
- . $initParams['magento-init-params'] . '"';
- $installParams = $this->toCliArguments($installParams);
- $upgradeCommand .= ' ' . implode(" ", array_keys($installParams));
- return $this->shell->execute($upgradeCommand, array_values($installParams));
- }
- /**
- * Execute disable module command.
- *
- * @param string $moduleName
- * @return string
- */
- public function disableModule($moduleName)
- {
- $initParams = $this->parametersHolder->getInitParams();
- $disableModuleCommand = 'php -f ' . BP . '/bin/magento module:disable '. $moduleName
- . ' -vvv --magento-init-params="' . $initParams['magento-init-params'] . '"';
- return $this->shell->execute($disableModuleCommand);
- }
- /**
- * Split quote db configuration.
- *
- * @return void
- */
- public function splitQuote()
- {
- $initParams = $this->parametersHolder->getInitParams();
- $installParams = $this->toCliArguments(
- $this->parametersHolder->getDbData('checkout')
- );
- $command = 'php -f ' . BP . '/bin/magento setup:db-schema:split-quote ' .
- implode(" ", array_keys($installParams)) .
- ' -vvv --magento-init-params="' .
- $initParams['magento-init-params'] . '"';
- $this->shell->execute($command, array_values($installParams));
- }
- /**
- * Split sales db configuration.
- *
- * @return void
- */
- public function splitSales()
- {
- $initParams = $this->parametersHolder->getInitParams();
- $installParams = $this->toCliArguments(
- $this->parametersHolder->getDbData('sales')
- );
- $command = 'php -f ' . BP . '/bin/magento setup:db-schema:split-sales ' .
- implode(" ", array_keys($installParams)) .
- ' -vvv --magento-init-params="' .
- $initParams['magento-init-params'] . '"';
- $this->shell->execute($command, array_values($installParams));
- }
- /**
- * Clean all types of cache
- */
- public function cacheClean()
- {
- $initParams = $this->parametersHolder->getInitParams();
- $command = 'php -f ' . BP . '/bin/magento cache:clean ' .
- ' -vvv --magento-init-params=' .
- $initParams['magento-init-params'];
- $this->shell->execute($command);
- }
- /**
- * Uninstall module
- *
- * @param string $moduleName
- */
- public function uninstallModule($moduleName)
- {
- $initParams = $this->parametersHolder->getInitParams();
- $command = 'php -f ' . BP . '/bin/magento module:uninstall ' . $moduleName . ' --remove-data ' .
- ' -vvv --non-composer --magento-init-params="' .
- $initParams['magento-init-params'] . '"';
- $this->shell->execute($command);
- }
- /**
- * Convert from raw params to CLI arguments, like --admin-username.
- *
- * @param array $params
- * @return array
- */
- private function toCliArguments(array $params)
- {
- $result = [];
- foreach ($params as $key => $value) {
- if (!empty($value)) {
- $result["--{$key}=%s"] = $value;
- }
- }
- return $result;
- }
- /**
- * Execute install command.
- *
- * @param array $modules
- * @param array $installParams
- * @return string
- * @throws \Exception
- */
- public function install(array $modules, array $installParams = [])
- {
- if (empty($modules)) {
- throw new \Exception("Cannot install Magento without modules");
- }
- $params = $this->parametersHolder->getInitParams();
- $installParams += [
- InstallCommand::INPUT_KEY_ENABLE_MODULES => implode(",", $modules),
- InstallCommand::INPUT_KEY_DISABLE_MODULES => 'all'
- ];
- $installParams = $this->toCliArguments(
- array_merge(
- $params,
- $this->parametersHolder->getDbData('default'),
- $installParams
- )
- );
- // run install script
- $exitCode = $this->shell->execute(
- PHP_BINARY . ' -f %s setup:install -vvv ' . implode(' ', array_keys($installParams)),
- array_merge([BP . '/bin/magento'], array_values($installParams))
- );
- $this->afterInstall();
- return $exitCode;
- }
- /**
- * You can decorate this function in order to add your own events here
- *
- * @return void
- */
- public function afterInstall()
- {
- //Take current deployment config in order to flush it cache after installation
- //Before installation usually we do not have any connections - so we need to add them
- $this->deploymentConfig = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
- ->get(DeploymentConfig::class);
- $this->deploymentConfig->resetData();
- }
- }
|