summaryrefslogtreecommitdiffstats
path: root/tests/unit/common/test_utils.py
diff options
context:
space:
mode:
authorJing Lu <lvjing5@huawei.com>2017-07-17 01:58:00 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-17 01:58:00 +0000
commit04776024ae7a404c2987e842fe725589a56600dd (patch)
tree089ed7546fc0ead5e52262815af4b2e0553e47f5 /tests/unit/common/test_utils.py
parent90e407589014ecba0719fc123ed2e8b2bf86309c (diff)
parent3cc7480d6af4c40fe9c14f50e365337619768cf5 (diff)
Merge "Kubernetes (k8s) support"
Diffstat (limited to 'tests/unit/common/test_utils.py')
-rw-r--r--tests/unit/common/test_utils.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unit/common/test_utils.py b/tests/unit/common/test_utils.py
index 664b38b13..e21e5fa3a 100644
--- a/tests/unit/common/test_utils.py
+++ b/tests/unit/common/test_utils.py
@@ -176,6 +176,25 @@ class ChangeObjToDictTestCase(unittest.TestCase):
self.assertEqual(obj_r, obj_s)
+class SetDictValueTestCase(unittest.TestCase):
+
+ def test_set_dict_value(self):
+ input_dic = {
+ 'hello': 'world'
+ }
+ output_dic = utils.set_dict_value(input_dic, 'welcome.to', 'yardstick')
+ self.assertEqual(output_dic.get('welcome', {}).get('to'), 'yardstick')
+
+
+class RemoveFileTestCase(unittest.TestCase):
+
+ def test_remove_file(self):
+ try:
+ utils.remove_file('notexistfile.txt')
+ except Exception as e:
+ self.assertTrue(isinstance(e, OSError))
+
+
def main():
unittest.main()