summaryrefslogtreecommitdiffstats
path: root/testcases/vIMS
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-01-05 17:19:28 +0100
committerboucherv <valentin.boucher@orange.com>2016-01-05 17:29:00 +0100
commit91a3e0ae28f0cbf224cabc7e3a0ebd5df2fcc0ba (patch)
tree4bf89532c7679763202829ab4a548de8dc20dc44 /testcases/vIMS
parent53a96cce26bca4fce6ad53b796132bc896056747 (diff)
Bugfix: indent .........
Change-Id: I347b4d4709e0924394598f2990bfef8349adf597 Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases/vIMS')
-rw-r--r--testcases/vIMS/CI/orchestrator.py51
1 files changed, 33 insertions, 18 deletions
diff --git a/testcases/vIMS/CI/orchestrator.py b/testcases/vIMS/CI/orchestrator.py
index 77595c735..be1c6e335 100644
--- a/testcases/vIMS/CI/orchestrator.py
+++ b/testcases/vIMS/CI/orchestrator.py
@@ -10,9 +10,14 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
########################################################################
-import sys, subprocess, os, shutil, yaml
+import sys
+import subprocess
+import os
+import shutil
+import yaml
from git import Repo
+
class orchestrator:
def __init__(self, testcase_dir, inputs={}, logger=None):
@@ -48,11 +53,14 @@ class orchestrator:
def download_manager_blueprint(self, manager_blueprint_url, manager_blueprint_branch):
if self.manager_blueprint:
if self.logger:
- self.logger.info("cloudify manager server blueprint is already downloaded !")
+ self.logger.info(
+ "cloudify manager server blueprint is already downloaded !")
else:
if self.logger:
- self.logger.info("Downloading the cloudify manager server blueprint")
- download_result = download_blueprints(manager_blueprint_url, manager_blueprint_branch, self.blueprint_dir)
+ self.logger.info(
+ "Downloading the cloudify manager server blueprint")
+ download_result = download_blueprints(
+ manager_blueprint_url, manager_blueprint_branch, self.blueprint_dir)
if not download_result:
if self.logger:
@@ -68,12 +76,13 @@ class orchestrator:
if self.manager_blueprint:
if self.logger:
self.logger.info("Writing the inputs file")
- with open( self.blueprint_dir + "inputs.yaml", "w") as f:
- f.write(yaml.dump(self.config, default_style='"') )
+ with open(self.blueprint_dir + "inputs.yaml", "w") as f:
+ f.write(yaml.dump(self.config, default_style='"'))
f.close()
# Ensure no ssh key file already exists
- key_files = ["/.ssh/cloudify-manager-kp.pem", "/.ssh/cloudify-agent-kp.pem"]
+ key_files = ["/.ssh/cloudify-manager-kp.pem",
+ "/.ssh/cloudify-agent-kp.pem"]
home = os.path.expanduser("~")
for key_file in key_files:
@@ -111,31 +120,37 @@ class orchestrator:
execute_command(cmd, self.logger)
if self.logger:
- self.logger.info("Cloudify-manager server has been successfully removed!")
+ self.logger.info(
+ "Cloudify-manager server has been successfully removed!")
def download_upload_and_deploy_blueprint(self, blueprint, config, bp_name, dep_name):
if self.logger:
- self.logger.info("Downloading the {0} blueprint".format(blueprint['file_name']))
+ self.logger.info("Downloading the {0} blueprint".format(
+ blueprint['file_name']))
download_result = download_blueprints(blueprint['url'], blueprint['branch'],
- self.testcase_dir + blueprint['destination_folder'])
+ self.testcase_dir + blueprint['destination_folder'])
if not download_result:
if self.logger:
- self.logger.error("Failed to download blueprint {0}".format(blueprint['file_name']))
+ self.logger.error(
+ "Failed to download blueprint {0}".format(blueprint['file_name']))
exit(-1)
if self.logger:
self.logger.info("Writing the inputs file")
with open(self.testcase_dir + blueprint['destination_folder'] + "/inputs.yaml", "w") as f:
- f.write(yaml.dump(config, default_style='"') )
+ f.write(yaml.dump(config, default_style='"'))
f.close()
if self.logger:
self.logger.info("Launching the {0} deployment".format(bp_name))
script = "source " + self.testcase_dir + "venv_cloudify/bin/activate; "
- script += "cd " + self.testcase_dir + blueprint['destination_folder'] + "; "
- script += "cfy blueprints upload -b " + bp_name + " -p openstack-blueprint.yaml; "
- script += "cfy deployments create -b " + bp_name + " -d " + dep_name + " --inputs inputs.yaml; "
+ script += "cd " + self.testcase_dir + \
+ blueprint['destination_folder'] + "; "
+ script += "cfy blueprints upload -b " + \
+ bp_name + " -p openstack-blueprint.yaml; "
+ script += "cfy deployments create -b " + bp_name + \
+ " -d " + dep_name + " --inputs inputs.yaml; "
script += "cfy executions start -w install -d " + dep_name + " --timeout 1800; "
cmd = "/bin/bash -c '" + script + "'"
@@ -156,8 +171,8 @@ class orchestrator:
try:
execute_command(cmd, self.logger)
except:
- if self.logger:
- self.logger.error("Clearwater undeployment failed")
+ if self.logger:
+ self.logger.error("Clearwater undeployment failed")
def execute_command(cmd, logger):
@@ -189,4 +204,4 @@ def download_blueprints(blueprint_url, branch, dest_path):
Repo.clone_from(blueprint_url, dest_path, branch=branch)
return True
except:
- return False \ No newline at end of file
+ return False