diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-08-21 14:36:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-21 14:36:22 +0000 |
commit | 2cfa22a0d0aa86cee5d77707c2f06ef3c4434a14 (patch) | |
tree | f4add964b9404c889d10cad47af332642be7c0bd /functest/api/common/api_utils.py | |
parent | f9fc2c1df0c6293df3f7c5e413a8aab643a4177a (diff) | |
parent | 26efacba9304071956d16a9a50a18e8f243518bb (diff) |
Merge "Create API to run a test case"
Diffstat (limited to 'functest/api/common/api_utils.py')
-rw-r--r-- | functest/api/common/api_utils.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/functest/api/common/api_utils.py b/functest/api/common/api_utils.py index f518e777..d85acf92 100644 --- a/functest/api/common/api_utils.py +++ b/functest/api/common/api_utils.py @@ -18,6 +18,7 @@ import os import sys from oslo_utils import importutils +from flask import jsonify import six import functest @@ -89,3 +90,12 @@ def change_obj_to_dict(obj): for key, value in vars(obj).items(): dic.update({key: value}) return dic + + +def result_handler(status, data): + """ Return the json format of result in dict """ + result = { + 'status': status, + 'result': data + } + return jsonify(result) |