Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/TestRunner/Commands/TestsRunOnAws.php')
-rw-r--r--plugins/TestRunner/Commands/TestsRunOnAws.php179
1 files changed, 0 insertions, 179 deletions
diff --git a/plugins/TestRunner/Commands/TestsRunOnAws.php b/plugins/TestRunner/Commands/TestsRunOnAws.php
deleted file mode 100644
index 4150145f44..0000000000
--- a/plugins/TestRunner/Commands/TestsRunOnAws.php
+++ /dev/null
@@ -1,179 +0,0 @@
-<?php
-/**
- * Matomo - free/libre analytics platform
- *
- * @link https://matomo.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
- */
-
-namespace Piwik\Plugins\TestRunner\Commands;
-
-use Piwik\Development;
-use Piwik\Plugin\ConsoleCommand;
-use Piwik\Plugins\TestRunner\Aws\Config;
-use Piwik\Plugins\TestRunner\Aws\Instance;
-use Piwik\Plugins\TestRunner\Aws\Ssh;
-use Piwik\Plugins\TestRunner\Runner\InstanceLauncher;
-use Piwik\Plugins\TestRunner\Runner\Remote;
-use Piwik\SettingsPiwik;
-use Symfony\Component\Console\Input\InputArgument;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Input\InputOption;
-use Symfony\Component\Console\Output\OutputInterface;
-
-class TestsRunOnAws extends ConsoleCommand
-{
- private $allowedTestSuites = array('integration', 'system', 'all', 'ui');
-
- public function isEnabled()
- {
- return Development::isEnabled();
- }
-
- protected function configure()
- {
- $this->setName('tests:run-aws');
- $this->addArgument('testsuite', InputArgument::OPTIONAL, 'Allowed values: ' . implode(', ', $this->allowedTestSuites));
- $this->addArgument('arguments', InputArgument::IS_ARRAY, 'Any additional argument will be passed to the test command.');
- $this->addOption('launch-only', null, InputOption::VALUE_NONE, 'Only launches an instance and outputs the connection parameters. Useful if you want to connect via SSH.');
- $this->addOption('update-only', null, InputOption::VALUE_NONE, 'Launches an instance, outputs the connection parameters and prepares the instance for a test run but does not actually run the tests. It will also checkout the specified version.');
- $this->addOption('one-instance-per-testsuite', null, InputOption::VALUE_NONE, 'Launches one instance for system tests and one for ui tests.');
- $this->addOption('checkout', null, InputOption::VALUE_REQUIRED, 'Git hash, tag or branch to checkout. Defaults to current hash', $this->getCurrentGitHash());
- $this->addOption('patch-file', null, InputOption::VALUE_REQUIRED, 'Apply the given patch file after performing a checkout');
- $this->setDescription('Run a specific testsuite on AWS');
- $this->setHelp('To use this command you have to configure the [tests]aws_* section in config/config.ini.php. See config/global.ini.php for all available options.
-
-To run a test simply specify the testsuite you want to run: <comment>./console tests:run-aws system</comment>. This will launch a new instance on AWS or reuse an already running one. We start one instance per keyname. This makes sure two different developers do not use the same instance at the same time.
-
-By default it will execute the tests of the git hash you are currently on. If this hash is not pushed yet or if you want to run tests of a specific git hash / branch / tag use the <comment>--checkout</comment> option: <comment>./console tests:run-aws --checkout="master" system</comment>.
-
-If you want to debug a problem and access the AWS instance using SSH you can specify the <comment>--launch-only</comment> or <comment>--update-only</comment> option.
-
-By default we will launch only one instance per keyname meaning you should not execute this command while another test is running. It would start the tests twice on the same instance and lead to errors. If you want to run two different testsuites at the same time (for instance <comment>system</comment> and <comment>ui</comment>) specify the <comment>one-instance-per-testsuite</comment> option. This will launch one instance for system tests and one for ui tests:
-<comment>./console tests:run-aws system</comment>
-<comment>./console tests:run-aws --one-instance-per-testsuite ui // will launch a new instance for ui testsuites</comment>
-
-If you want to apply a patch on top of the checked out version you can apply the option <comment>--patch-file</comment>.
-<comment>./console tests:run-aws --patch-file=test.patch ui</comment>
-This will checkout the same revision as you are currently on and then apply the patch. To generate a diff use for instance the command <comment>git diff > test.patch</comment>.
-This feature is still beta and there might be problems with pictures and/or binaries etc.
-
-You can also pass any argument to the command and they will be forwarded to the test command, for example to run a specific UI test: <comment>./console tests:run-aws ui Dashboard</comment>.
-');
- }
-
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $testSuite = $this->getTestSuite($input);
- $arguments = $input->getArgument('arguments');
- $patchFile = $this->getPatchFile($input);
- $launchOnly = $input->getOption('launch-only');
- $updateOnly = $input->getOption('update-only');
- $gitHash = $input->getOption('checkout');
- $perTestsuite = $input->getOption('one-instance-per-testsuite');
-
- if (empty($testSuite) && empty($launchOnly) && empty($updateOnly)) {
- throw new \InvalidArgumentException('Either provide a testsuite argument or define <comment>--launch-only</comment> or <comment>--update-only</comment>');
- }
-
- $awsConfig = new Config();
- $awsConfig->validate();
-
- $host = $this->launchInstance($output, $perTestsuite, $awsConfig, $testSuite);
-
- if ($launchOnly) {
- return 0;
- }
-
- $ssh = Ssh::connectToAws($host, $awsConfig->getPemFile());
- $ssh->setOutput($output);
-
- $testRunner = new Remote($ssh);
- $testRunner->updatePiwik($gitHash);
- $testRunner->replaceConfigIni(PIWIK_INCLUDE_PATH . '/plugins/TestRunner/Aws/config.ini.php');
-
- if (!empty($patchFile)) {
- $testRunner->applyPatch($patchFile);
- }
-
- if ($updateOnly) {
- $ssh->disconnect();
-
- return 0;
- }
-
- $testRunner->runTests($host, $testSuite, $arguments);
-
- $message = $this->buildFinishedMessage($testSuite, $host);
- $output->writeln("\n$message\n");
-
- $ssh->disconnect();
- }
-
- private function launchInstance(OutputInterface $output, $useOneInstancePerTestSuite, Config $awsConfig, $testSuite)
- {
- $awsInstance = new Instance($awsConfig, $testSuite);
-
- if ($useOneInstancePerTestSuite) {
- $awsInstance->enableUseOneInstancePerTestSuite();
- }
-
- $launcher = new InstanceLauncher($awsInstance);
- $host = $launcher->launchOrResumeInstance();
-
- $output->writeln(sprintf("Access instance using <comment>ssh -i %s ubuntu@%s</comment>", $awsConfig->getPemFile(), $host));
- $output->writeln("You can log in to Piwik via root:secure at <comment>http://$host</comment>");
- $output->writeln("You can access database via root:secure (<comment>mysql -uroot -psecure</comment>)");
- $output->writeln("Files are located in <comment>~/www/piwik</comment>");
- $output->writeln(' ');
-
- return $host;
- }
-
- private function getTestSuite(InputInterface $input)
- {
- $testsuite = $input->getArgument('testsuite');
-
- if (!empty($testsuite) && !in_array($testsuite, $this->allowedTestSuites)) {
- throw new \InvalidArgumentException('Test suite argument is wrong, use one of following: ' . implode(', ', $this->allowedTestSuites));
- }
-
- return $testsuite;
- }
-
- private function getCurrentGitHash()
- {
- // we should not use 'git' executable unless we are in a git clone
- if(!SettingsPiwik::isGitDeployment()) {
- return 'WARN: it does not look like a Piwik repository clone - you must setup Piwik from git to proceed';
- }
- $gitCmd = 'git -C ' . escapeshellarg(PIWIK_INCLUDE_PATH) . ' rev-parse HEAD';
- return trim(shell_exec($gitCmd));
- }
-
- private function buildFinishedMessage($testSuite, $host)
- {
- if (in_array($testSuite, array('system', 'all'))) {
- $message = "<info>Tests finished. You can browse processed files and download artifacts at </info><comment>http://$host/tests/PHPUnit/System/processed/</comment>";
- } elseif ('ui' === $testSuite) {
- $message = "<info>Tests finished. You can browse processed screenshots at </info><comment>http://$host/tests/UI/screenshot-diffs/diffviewer.html</comment>";
- } else {
- $message = "<info>Tests finished</info>";
- }
-
- return $message;
- }
-
- private function getPatchFile(InputInterface $input)
- {
- $file = $input->getOption('patch-file');
-
- if (!empty($file) && !is_readable($file)) {
- throw new \InvalidArgumentException("The patch file $file does not exist or is not readable");
- }
-
- return $file;
- }
-
-}