aboutsummaryrefslogtreecommitdiffstats
path: root/testcases/VIM/OpenStack/CI/libraries/run_rally.py
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2015-04-30 14:24:28 +0200
committerjose.lausuch <jose.lausuch@ericsson.com>2015-04-30 14:26:27 +0200
commitfc632988b3305df93e82fccb30a16797f906730f (patch)
tree5f9ddc84298bb22a60f3f26f13b4dd2c872883ee /testcases/VIM/OpenStack/CI/libraries/run_rally.py
parent16e650a72e063c66b15d94a737f6abe41a9fa169 (diff)
run_rally: added quotas and requests as input parameters.
adapted bench test nova and vm Change-Id: Ibcfb2b5c30c6b5ceb23476d7ee659ec9c06848cf JIRA:FUNCTEST-1 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'testcases/VIM/OpenStack/CI/libraries/run_rally.py')
-rw-r--r--testcases/VIM/OpenStack/CI/libraries/run_rally.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally.py b/testcases/VIM/OpenStack/CI/libraries/run_rally.py
index b3275fb13..1b720676e 100644
--- a/testcases/VIM/OpenStack/CI/libraries/run_rally.py
+++ b/testcases/VIM/OpenStack/CI/libraries/run_rally.py
@@ -11,12 +11,12 @@
import re, json, os, urllib2, argparse, logging
""" tests configuration """
-tests = ['authenticate', 'glance', 'cinder', 'heat', 'keystone', 'neutron', 'nova', 'tempest', 'vm', 'all']
+tests = ['authenticate', 'glance', 'cinder', 'heat', 'keystone', 'neutron', 'nova', 'quotas', 'requests', 'tempest', 'vm', 'all']
parser = argparse.ArgumentParser()
parser.add_argument("test_name", help="The name of the test you want to perform with rally. "
"Possible values are : "
"[ {d[0]} | {d[1]} | {d[2]} | {d[3]} | {d[4]} | {d[5]} | {d[6]} "
- "| {d[7]} | {d[8]} | {d[9]} ]. The 'all' value performs all the tests scenarios "
+ "| {d[7]} | {d[8]} | {d[9]} | {d[10]} | {d[11]} ]. The 'all' value performs all the tests scenarios "
"except 'tempest'".format(d=tests))
parser.add_argument("-d", "--debug", help="Debug mode", action="store_true")
@@ -83,7 +83,7 @@ def run_task(test_name):
""" get the date """
cmd = os.popen("date '+%d%m%Y_%H%M'")
test_date = cmd.read().rstrip()
-
+
""" check directory for scenarios test files or retrieve from git otherwise"""
proceed_test = True
tests_path = "./scenarios"
@@ -91,7 +91,7 @@ def run_task(test_name):
if not os.path.exists(test_file_name):
logger.debug('{} does not exists'.format(test_file_name))
proceed_test = retrieve_test_cases_file(test_name, tests_path)
-
+
""" we do the test only if we have a scenario test file """
if proceed_test:
logger.debug('successfully downloaded to : {}'.format(test_file_name))
@@ -100,11 +100,11 @@ def run_task(test_name):
cmd = os.popen(cmd_line)
task_id = get_task_id(cmd.read())
logger.debug('task_id : {}'.format(task_id))
-
+
if task_id is None:
logger.error("failed to retrieve task_id")
exit(-1)
-
+
""" check for result directory and create it otherwise """
report_path = "./results"
if not os.path.exists(report_path):
@@ -126,7 +126,7 @@ def run_task(test_name):
logger.debug('saving json file')
f.write(json_results)
logger.debug('saving json file2')
-
+
""" parse JSON operation result """
if task_succeed(json_results):
print '{} OK'.format(test_date)
@@ -134,14 +134,14 @@ def run_task(test_name):
print '{} KO'.format(test_date)
else:
logger.error('{} test failed, unable to download a scenario test file'.format(test_name))
-
-
+
+
def retrieve_test_cases_file(test_name, tests_path):
"""
Retrieve from github the sample test files
:return: Boolean that indicates the retrieval status
"""
-
+
""" do not add the "/" at the end """
url_base = "https://git.opnfv.org/cgit/functest/plain/testcases/VIM/OpenStack/CI/suites"