summaryrefslogtreecommitdiffstats
path: root/tests/unit/benchmark/scenarios/lib/test_get_flavor.py
diff options
context:
space:
mode:
authorJingLu5 <lvjing5@huawei.com>2017-08-10 06:00:58 +0000
committerJingLu5 <lvjing5@huawei.com>2017-08-11 01:13:24 +0000
commit4d065d2f4080e935b4e3bab4cbcf2b97f8a61ed3 (patch)
tree5d32d39b88e3901dfbe43c5f519fd1c033ddab48 /tests/unit/benchmark/scenarios/lib/test_get_flavor.py
parent7322829b9f4e3981f9c6214b37f5693c0963b159 (diff)
Add common openstack opertation scenarios: flavor & server
JIRA: YARDSTICK-781 This patch adds some common openstack opertation scenarios Change-Id: I9e84a8894fe9b9c1754a45a0ddfdf93739164b9a Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'tests/unit/benchmark/scenarios/lib/test_get_flavor.py')
-rw-r--r--tests/unit/benchmark/scenarios/lib/test_get_flavor.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/unit/benchmark/scenarios/lib/test_get_flavor.py b/tests/unit/benchmark/scenarios/lib/test_get_flavor.py
new file mode 100644
index 000000000..bf12e0a32
--- /dev/null
+++ b/tests/unit/benchmark/scenarios/lib/test_get_flavor.py
@@ -0,0 +1,33 @@
+##############################################################################
+# Copyright (c) 2017 Huawei Technologies Co.,Ltd 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
+import mock
+
+from yardstick.benchmark.scenarios.lib.get_flavor import GetFlavor
+
+
+class GetFlavorTestCase(unittest.TestCase):
+
+ @mock.patch('yardstick.common.openstack_utils.get_flavor_by_name')
+ def test_get_flavor(self, mock_get_flavor_by_name):
+ options = {
+ 'flavor_name': 'yardstick_test_flavor'
+ }
+ args = {"options": options}
+ obj = GetFlavor(args, {})
+ obj.run({})
+ self.assertTrue(mock_get_flavor_by_name.called)
+
+
+def main():
+ unittest.main()
+
+
+if __name__ == '__main__':
+ main()