X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=blobdiff_plain;f=testsuites%2Fposca%2Ftestcase_script%2Fposca_factor_multistack_storage.py;fp=testsuites%2Fposca%2Ftestcase_script%2Fposca_factor_multistack_storage.py;h=34ee225c8cb4fa679033a191f85d0076818b6003;hp=db4cb73627d8de19ff29324803ce60e627ee2d7c;hb=c7e43d91f4a6babaff1f373b0a7ed102a876e7d3;hpb=ca207611e853332780f61b2a69b999a35e55d0c7 diff --git a/testsuites/posca/testcase_script/posca_factor_multistack_storage.py b/testsuites/posca/testcase_script/posca_factor_multistack_storage.py index db4cb736..34ee225c 100644 --- a/testsuites/posca/testcase_script/posca_factor_multistack_storage.py +++ b/testsuites/posca/testcase_script/posca_factor_multistack_storage.py @@ -54,11 +54,9 @@ def env_pre(test_config): test_yardstick = True stack_prepare._prepare_env_daemon(test_yardstick) quota_prepare.quota_env_prepare() - cmd = ('yardstick env prepare') LOG.info("yardstick environment prepare!") if(test_config["contexts"]['yardstick_envpre']): - yardstick_container = docker_env.yardstick_info['container'] - stdout = docker_env.docker_exec_cmd(yardstick_container, cmd) + stdout = yardstick_task.yardstick_image_prepare() LOG.debug(stdout) @@ -83,11 +81,11 @@ def do_test(test_config): loop_value = loop_value + 1 with open(out_file) as f: data = json.load(f) - if data["status"] == 1: + if data["result"]["criteria"] == "PASS": LOG.info("yardstick run success") LOG.info("%s" % data["result"]["testcases"]) break - elif data["status"] == 2: + else: LOG.error("yardstick error exit") break @@ -192,6 +190,7 @@ def run(test_config): numjobs = scenarios_conf["num_jobs"] direct = scenarios_conf["direct"] volume_num = scenarios_conf["volume_num"] + volume_size = scenarios_conf["volume_size"] for value in test_num: result = [] @@ -211,7 +210,8 @@ def run(test_config): "size": size, "rwmixwrite": rwmixwrite, "numjobs": numjobs, - "direct": direct} + "direct": direct, + "volume_size": int(volume_size)} tmp_thread = threading.Thread(target=func_run, args=(case_config,)) threadings.append(tmp_thread) tmp_thread.start()