diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-27 17:59:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-27 17:59:44 +0000 |
commit | bf42faf9107d14a61a7b07a7276a3ab1c5a68618 (patch) | |
tree | 2318457e57f5b27e537b23085722b9ed11dba6e9 | |
parent | 02dec664b84c9a02e7223e1b38ae597fa38fe2b1 (diff) | |
parent | 5c705a0c56af8d622edafa1e99e9806ba627754e (diff) |
Merge "Print json result file of Promise testcase"
-rw-r--r-- | testcases/features/promise.py | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/testcases/features/promise.py b/testcases/features/promise.py index cc7cf0ab8..f361d8ba6 100644 --- a/testcases/features/promise.py +++ b/testcases/features/promise.py @@ -12,9 +12,11 @@ import argparse import logging import os -import time +import subprocess import sys +import time import yaml + import keystoneclient.v2_0.client as ksclient import glanceclient.client as glclient import novaclient.client as nvclient @@ -179,20 +181,30 @@ def main(): os.environ["OS_TEST_IMAGE"] = image_id os.environ["OS_TEST_FLAVOR"] = flavor_id - cmd = 'DEBUG=1 npm run -s test' + results_file=open('promise-results.json','w+') + cmd = 'DEBUG=1 npm run -s test -- --reporter json' start_time_ts = time.time() logger.info("Running command: %s" % cmd) os.chdir(PROMISE_REPO) - ret = functest_utils.execute_command(cmd, exit_on_error=False) + ret = subprocess.call(cmd, shell=True, stdout=results_file, \ + stderr=subprocess.STDOUT) end_time_ts = time.time() duration = round(end_time_ts - start_time_ts, 1) - test_status = 'Failed' - if ret: + + if ret == 0: + logger.info("The test succeeded.") test_status = 'OK' + else: + logger.info("The command '%s' failed." % cmd) + test_status = "Failed" + + # Print output of file + print results_file.read() + results_file.close() + - logger.info("Test status: %s" % test_status) details = { 'timestart': start_time_ts, 'duration': duration, |