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/Runner/InstanceLauncher.php')
-rw-r--r--plugins/TestRunner/Runner/InstanceLauncher.php53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/TestRunner/Runner/InstanceLauncher.php b/plugins/TestRunner/Runner/InstanceLauncher.php
deleted file mode 100644
index 38cad636da..0000000000
--- a/plugins/TestRunner/Runner/InstanceLauncher.php
+++ /dev/null
@@ -1,53 +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\Runner;
-
-use Piwik\Plugins\TestRunner\Aws\Instance;
-
-class InstanceLauncher {
-
- /**
- * @var Instance
- */
- private $instance;
-
- public function __construct(Instance $instance)
- {
- $this->instance = $instance;
- }
-
- public function launchOrResumeInstance()
- {
- $host = $this->instance->findExisting();
-
- if (empty($host)) {
- $host = $this->launchInstance();
- }
-
- return $host;
- }
-
- private function launchInstance()
- {
- $instanceIds = $this->instance->launch();
-
- try {
- $host = $this->instance->setup($instanceIds);
- $this->instance->verifySetup($instanceIds);
- } catch (\Exception $e) {
- $this->instance->terminate($instanceIds);
-
- throw new \RuntimeException('We failed to launch a new instance so we terminated it directly. Try again! Error Message: ' . $e->getMessage());
- }
-
- return $host;
- }
-
-} \ No newline at end of file