summaryrefslogtreecommitdiff
path: root/server/vendor/php-opencloud/common/tests/integration/SampleManager.php
diff options
context:
space:
mode:
authorEoleDev <root@serverpc.home>2016-03-09 15:37:42 +0100
committerEoleDev <root@serverpc.home>2016-03-09 15:37:42 +0100
commit1d3ed3af6d57316640c143002ddf80d61e6c098a (patch)
tree97ac49bc7ff0f16150aefee821da3557dc0d0644 /server/vendor/php-opencloud/common/tests/integration/SampleManager.php
parentd69adc4f9d1f6019927de235ef84885c68e6e508 (diff)
parent08ea5ef31abcc4e23a39a780cacb64fa27f19194 (diff)
Merge branch 'Evan' into develop
Diffstat (limited to 'server/vendor/php-opencloud/common/tests/integration/SampleManager.php')
-rw-r--r--server/vendor/php-opencloud/common/tests/integration/SampleManager.php104
1 files changed, 104 insertions, 0 deletions
diff --git a/server/vendor/php-opencloud/common/tests/integration/SampleManager.php b/server/vendor/php-opencloud/common/tests/integration/SampleManager.php
new file mode 100644
index 0000000..4bd8b9a
--- /dev/null
+++ b/server/vendor/php-opencloud/common/tests/integration/SampleManager.php
@@ -0,0 +1,104 @@
+<?php
+
+namespace OpenCloud\integration;
+
+class SampleManager implements SampleManagerInterface
+{
+ protected $basePath;
+ protected $paths = [];
+ protected $verbosity;
+
+ public function __construct($basePath, $verbosity)
+ {
+ $this->basePath = $basePath;
+ $this->verbosity = $verbosity;
+ }
+
+ public function deletePaths()
+ {
+ if (!empty($this->paths)) {
+ foreach ($this->paths as $path) {
+ unlink($path);
+ }
+ }
+ }
+
+ protected function getGlobalReplacements()
+ {
+ return [
+ '{userId}' => getenv('OS_USER_ID'),
+ '{username}' => getenv('OS_USERNAME'),
+ '{password}' => getenv('OS_PASSWORD'),
+ '{domainId}' => getenv('OS_DOMAIN_ID'),
+ '{authUrl}' => getenv('OS_AUTH_URL'),
+ '{tenantId}' => getenv('OS_TENANT_ID'),
+ '{region}' => getenv('OS_REGION'),
+ '{projectId}' => getenv('OS_PROJECT_ID'),
+ '{projectName}' => getenv('OS_PROJECT_NAME'),
+ ];
+ }
+
+ protected function getConnectionTemplate()
+ {
+ if ($this->verbosity === 1) {
+ $subst = <<<'EOL'
+use OpenCloud\Integration\DefaultLogger;
+use OpenCloud\Integration\Utils;
+use GuzzleHttp\MessageFormatter;
+
+$options = [
+ 'debugLog' => true,
+ 'logger' => new DefaultLogger(),
+ 'messageFormatter' => new MessageFormatter(),
+];
+$openstack = new OpenCloud\OpenCloud(Utils::getAuthOpts($options));
+EOL;
+ } elseif ($this->verbosity === 2) {
+ $subst = <<<'EOL'
+use OpenCloud\Integration\DefaultLogger;
+use OpenCloud\Integration\Utils;
+use GuzzleHttp\MessageFormatter;
+
+$options = [
+ 'debugLog' => true,
+ 'logger' => new DefaultLogger(),
+ 'messageFormatter' => new MessageFormatter(MessageFormatter::DEBUG),
+];
+$openstack = new OpenCloud\OpenCloud(Utils::getAuthOpts($options));
+EOL;
+ } else {
+ $subst = <<<'EOL'
+use OpenCloud\Integration\Utils;
+
+$openstack = new OpenCloud\OpenCloud(Utils::getAuthOpts());
+EOL;
+ }
+
+ return $subst;
+ }
+
+ public function write($path, array $replacements)
+ {
+ $replacements = array_merge($this->getGlobalReplacements(), $replacements);
+
+ $sampleFile = rtrim($this->basePath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . $path;
+
+ if (!file_exists($sampleFile) || !is_readable($sampleFile)) {
+ throw new \RuntimeException(sprintf("%s either does not exist or is not readable", $sampleFile));
+ }
+
+ $content = strtr(file_get_contents($sampleFile), $replacements);
+ $content = str_replace("'vendor/'", "'" . dirname(dirname(__DIR__)) . DIRECTORY_SEPARATOR . "vendor'", $content);
+
+ $subst = $this->getConnectionTemplate();
+ $content = preg_replace('/\([^)]+\)/', '', $content, 1);
+ $content = str_replace('$openstack = new OpenCloud\OpenCloud;', $subst, $content);
+
+ $tmp = tempnam(sys_get_temp_dir(), 'openstack');
+ file_put_contents($tmp, $content);
+
+ $this->paths[] = $tmp;
+
+ return $tmp;
+ }
+}