summaryrefslogtreecommitdiffstats
path: root/storperf/tests/utilities/dictionary_test.py
diff options
context:
space:
mode:
authorMark Beierl <mark.beierl@emc.com>2016-07-14 00:11:23 -0400
committerMark Beierl <mark.beierl@emc.com>2016-07-14 00:11:23 -0400
commit1e3a579bb9adc83b1c77163e0a6a48f44665cfb3 (patch)
tree4414b90585fb06abe93fa30d8469a27412612083 /storperf/tests/utilities/dictionary_test.py
parentd7d5efb6fe647e117f54ce0923e4966014eaeb9a (diff)
Fix missing test
All test files must end in _test.py or they don't get executed Change-Id: If3a46a66570f7d07d0e93de72438a8a46b3e0a22 Signed-off-by: Mark Beierl <mark.beierl@emc.com>
Diffstat (limited to 'storperf/tests/utilities/dictionary_test.py')
-rw-r--r--storperf/tests/utilities/dictionary_test.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/storperf/tests/utilities/dictionary_test.py b/storperf/tests/utilities/dictionary_test.py
new file mode 100644
index 0000000..0819cef
--- /dev/null
+++ b/storperf/tests/utilities/dictionary_test.py
@@ -0,0 +1,42 @@
+##############################################################################
+# Copyright (c) 2016 EMC and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+import unittest
+from storperf.utilities import dictionary
+
+
+class DictionaryTest(unittest.TestCase):
+
+ def setUp(self):
+ self.dictionary = {}
+ self.dictionary['key'] = 'value'
+ pass
+
+ def test_get_no_default(self):
+ expected = None
+ actual = dictionary.get_key_from_dict(self.dictionary, 'no-key')
+ self.assertEqual(expected, actual)
+
+ def test_get_with_default(self):
+ expected = 'value 2'
+ actual = dictionary.get_key_from_dict(
+ self.dictionary, 'no-key', expected)
+ self.assertEqual(expected, actual)
+
+ def test_get_with_value(self):
+ expected = 'value'
+ actual = dictionary.get_key_from_dict(
+ self.dictionary, 'key')
+ self.assertEqual(expected, actual)
+
+ def test_get_with_value_and_default(self):
+ expected = 'value'
+ actual = dictionary.get_key_from_dict(
+ self.dictionary, 'key', 'value 2')
+ self.assertEqual(expected, actual)