From: Morgan Richomme Date: Fri, 30 Oct 2015 10:11:52 +0000 (+0000) Subject: Merge "Updated vIMS result format" X-Git-Tag: brahmaputra.1.0~284 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=0238177bdfdfd30e4ff84de8f1cbf1375dab49a6;hp=559a8842c03d34c1bb4ad9dab87387ac2b4f280e;p=functest.git Merge "Updated vIMS result format" --- diff --git a/testcases/vIMS/CI/vIMS.py b/testcases/vIMS/CI/vIMS.py index 05bd0c51b..124265c21 100644 --- a/testcases/vIMS/CI/vIMS.py +++ b/testcases/vIMS/CI/vIMS.py @@ -337,7 +337,7 @@ def undeploy_clearwater(): def test_clearwater(): - time.sleep(120) + time.sleep(180) script = "source " + VIMS_DATA_DIR + "venv_cloudify/bin/activate; " script += "cd " + VIMS_DATA_DIR + "; " @@ -386,12 +386,15 @@ def test_clearwater(): logger.error("Unable to retrieve test results") if vims_test_result != "": + logger.debug("Pushing results to DB....") git_version = functest_utils.get_git_branch(args.repo_path) functest_utils.push_results_to_db(db_url=TEST_DB, case_name="vIMS", logger=logger, pod_name="opnfv-jump-2", git_version=git_version, - payload={'orchestrator_deployment_duration': CFY_DEPLOYMENT_DURATION, - 'VNF_deployment_duration': CW_DEPLOYMENT_DURATION, - 'functional_test': {'duration': duration, + payload={'orchestrator':{'duration': CFY_DEPLOYMENT_DURATION, + 'result': ""}, + 'vIMS': {'duration': CW_DEPLOYMENT_DURATION, + 'result': ""} + 'sig_test': {'duration': duration, 'result': vims_test_result}}) try: os.remove(VIMS_TEST_DIR + "temp.json")