aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common
diff options
context:
space:
mode:
authorRex Lee <limingjiang@huawei.com>2017-01-23 02:52:24 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-01-23 02:52:24 +0000
commit5babed1aa6b2f867e639193841b231c3a0200b87 (patch)
tree0157186e4e3c94762bc80c3372a9b94254854d7d /yardstick/common
parent75f55c05789beb4fbe2391d33349058bba4ea5c0 (diff)
parent0d95404dcdbda326a3fffa344a8295bf696f9626 (diff)
Merge "Record task status if running via CLI"
Diffstat (limited to 'yardstick/common')
-rw-r--r--yardstick/common/constants.py2
-rw-r--r--yardstick/common/utils.py10
2 files changed, 12 insertions, 0 deletions
diff --git a/yardstick/common/constants.py b/yardstick/common/constants.py
index bf616a1f6..e6faf6828 100644
--- a/yardstick/common/constants.py
+++ b/yardstick/common/constants.py
@@ -59,3 +59,5 @@ ENV_ACTION_API = BASE_URL + '/yardstick/env/action'
ASYNC_TASK_API = BASE_URL + '/yardstick/asynctask'
SQLITE = 'sqlite:////tmp/yardstick.db'
+
+DEFAULT_OUTPUT_FILE = '/tmp/yardstick.out'
diff --git a/yardstick/common/utils.py b/yardstick/common/utils.py
index 57ace14e6..473bbf540 100644
--- a/yardstick/common/utils.py
+++ b/yardstick/common/utils.py
@@ -30,6 +30,7 @@ from keystoneauth1 import identity
from keystoneauth1 import session
from neutronclient.v2_0 import client
from oslo_utils import importutils
+from oslo_serialization import jsonutils
import yardstick
@@ -145,3 +146,12 @@ def get_neutron_client():
sess = get_openstack_session()
neutron_client = client.Client(session=sess)
return neutron_client
+
+
+def write_json_to_file(path, data, mode='w'):
+ write_file(path, jsonutils.dump_as_bytes(data), mode)
+
+
+def write_file(path, data, mode='w'):
+ with open(path, mode) as f:
+ f.write(data)