summaryrefslogtreecommitdiffstats
path: root/storperf/tests/utilities/dictionary.py
diff options
context:
space:
mode:
authorMark Beierl <mark.beierl@emc.com>2016-05-12 10:05:25 -0600
committerMark Beierl <mark.beierl@emc.com>2016-05-12 10:35:49 -0600
commitd0f40c056a9283f30df45da5d35b72ce79b5d9a0 (patch)
treea0ece870394afa7eb1f936b2cf3a8c4583853d4f /storperf/tests/utilities/dictionary.py
parent4e7e1d2ffea89950ae516a19997765daccf92664 (diff)
Results DB Reporting
Add the ability to push results to the test result db. If the environment variable TEST_DB_URL is defined, results will be pushed there. If not, no push is attempted. Change-Id: Ib833530d7379c5f37f0d2904a83d31a4ee559ae6 JIRA: STORPERF-13 Signed-off-by: Mark Beierl <mark.beierl@emc.com>
Diffstat (limited to 'storperf/tests/utilities/dictionary.py')
-rw-r--r--storperf/tests/utilities/dictionary.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/storperf/tests/utilities/dictionary.py b/storperf/tests/utilities/dictionary.py
new file mode 100644
index 0000000..0819cef
--- /dev/null
+++ b/storperf/tests/utilities/dictionary.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)