Adding a structure for the reporting of test cases for functest
[functest.git] / testcases / features / promise.py
index f4da956..16b2618 100644 (file)
 # Maintainer : jose.lausuch@ericsson.com
 #
 import argparse
+import json
 import logging
 import os
+import requests
 import subprocess
 import sys
 import time
@@ -36,7 +38,7 @@ with open('/home/opnfv/functest/conf/config_functest.yaml') as f:
 dirs = functest_yaml.get('general').get('directories')
 FUNCTEST_REPO = dirs.get('dir_repo_functest')
 PROMISE_REPO = dirs.get('dir_repo_promise')
-TEST_DB_URL = functest_yaml.get('results').get('test_db_url')
+TEST_DB = functest_yaml.get('results').get('test_db_url')
 
 TENANT_NAME = functest_yaml.get('promise').get('general').get('tenant_name')
 TENANT_DESCRIPTION = functest_yaml.get('promise').get(
@@ -199,19 +201,14 @@ def main():
 
 
     os.chdir(PROMISE_REPO)
-    results_file=open('promise-results.json','w+')
-    cmd = 'DEBUG=1 npm run -s test -- --reporter json'
-    start_time_ts = time.time()
-    start_time = time.strftime("%a %b %d %H:%M:%S %Z %Y")
-    #'Tue Feb 02 20:37:19 CET 2016'
+    results_file_name='promise-results.json'
+    results_file=open(results_file_name,'w+')
+    cmd = 'npm run -s test -- --reporter json'
 
     logger.info("Running command: %s" % cmd)
     ret = subprocess.call(cmd, shell=True, stdout=results_file, \
                     stderr=subprocess.STDOUT)
     results_file.close()
-    end_time_ts = time.time()
-    end_time = time.strftime("%a %b %d %H:%M:%S %Z %Y")
-    duration = round(end_time_ts - start_time_ts, 1)
 
     if ret == 0:
         logger.info("The test succeeded.")
@@ -221,38 +218,45 @@ def main():
         test_status = "Failed"
 
     # Print output of file
-    test_count = 0
-    errors = 0
-    with open('promise-results.json','r') as results_file:
-        for line in results_file:
-            print line.replace('\n', '')
-            if "title" in line:
-                test_count += 1
-            if 'err": {' in line and not 'err": {}' in line:
-                errors += 1
+    with open(results_file_name,'r') as results_file:
+        data = results_file.read()
+        logger.debug("\n%s" % data)
+        json_data = json.loads(data)
+
+        suites = json_data["stats"]["suites"]
+        tests = json_data["stats"]["tests"]
+        passes = json_data["stats"]["passes"]
+        pending = json_data["stats"]["pending"]
+        failures = json_data["stats"]["failures"]
+        start_time = json_data["stats"]["start"]
+        end_time = json_data["stats"]["end"]
+        duration = float(json_data["stats"]["duration"])/float(1000)
 
     logger.info("\n" \
-    "**********************************\n"\
-    "      Promise test summary\n\n"\
-    "**********************************\n\n"\
-    " Test start:\t\t%s\n"\
-    " Test end:\t\t%s\n"\
-    " Execution time:\t%s\n"\
-    " Total tests executed:\t%s\n"\
-    " Total tests failed:\t%s\n\n"\
-    "**********************************\n\n"\
-    % (start_time, end_time, duration, test_count, errors))
+    "****************************************\n"\
+    "          Promise test report\n\n"\
+    "****************************************\n"\
+    " Suites:  \t%s\n"\
+    " Tests:   \t%s\n"\
+    " Passes:  \t%s\n"\
+    " Pending: \t%s\n"\
+    " Failures:\t%s\n"\
+    " Start:   \t%s\n"\
+    " End:     \t%s\n"\
+    " Duration:\t%s\n"\
+    "****************************************\n\n"\
+    % (suites, tests, passes, pending, failures, start_time, end_time, duration))
 
 
     if args.report:
         pod_name = functest_utils.get_pod_name(logger)
-        installer = get_installer_type(logger)
+        installer = functest_utils.get_installer_type(logger)
         scenario = functest_utils.get_scenario(logger)
         git_version = functest_utils.get_git_branch(PROMISE_REPO)
         url = TEST_DB + "/results"
 
         json_results = {"timestart": start_time, "duration": duration,
-                        "tests": int(test_count), "failures": int(errors)}
+                        "tests": int(tests), "failures": int(failures)}
         logger.debug("Results json: "+str(json_results))
 
         params = {"project_name": "promise", "case_name": "promise",