aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/tests/functional/test_cli_scenario.py
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2017-11-29 23:02:43 +0000
committerRoss Brattain <ross.b.brattain@intel.com>2018-01-11 20:50:41 +0000
commit11802c9ec469ab570dace176c18093bc655561a2 (patch)
tree983d57a7339b2ff7d85c1960c4ba98c18ce91435 /yardstick/tests/functional/test_cli_scenario.py
parent5702f5b5e0721d9af61e494691376f32652e0048 (diff)
Move tests: functional/
All tests in tests/functional have been moved to yardstick/tests/functional JIRA: YARDSTICK-837 Change-Id: I89276b36635de74dd7b8f70e961c71aa0d2c494e Signed-off-by: Emma Foley <emma.l.foley@intel.com>
Diffstat (limited to 'yardstick/tests/functional/test_cli_scenario.py')
-rwxr-xr-xyardstick/tests/functional/test_cli_scenario.py54
1 files changed, 54 insertions, 0 deletions
diff --git a/yardstick/tests/functional/test_cli_scenario.py b/yardstick/tests/functional/test_cli_scenario.py
new file mode 100755
index 000000000..7aaacad0a
--- /dev/null
+++ b/yardstick/tests/functional/test_cli_scenario.py
@@ -0,0 +1,54 @@
+##############################################################################
+# Copyright (c) 2015 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
+
+from yardstick.tests.functional import utils
+
+
+class ScenarioTestCase(unittest.TestCase):
+
+ def setUp(self):
+ super(ScenarioTestCase, self).setUp()
+ self.yardstick = utils.Yardstick()
+
+ def test_scenario_list(self):
+ res = self.yardstick("scenario list")
+
+ self.assertIn("Lmbench", res)
+ self.assertIn("Perf", res)
+ self.assertIn("Fio", res)
+ self.assertIn("Ping", res)
+ self.assertIn("Iperf3", res)
+ self.assertIn("Pktgen", res)
+
+ def test_scenario_show_Lmbench(self):
+ res = self.yardstick("scenario show Lmbench")
+ self.assertIn("Execute lmbench memory read latency or memory "
+ "bandwidth benchmark in a hos", res)
+
+ def test_scenario_show_Perf(self):
+ res = self.yardstick("scenario show Perf")
+ self.assertIn("Execute perf benchmark in a host", res)
+
+ def test_scenario_show_Fio(self):
+ res = self.yardstick("scenario show Fio")
+ self.assertIn("Execute fio benchmark in a host", res)
+
+ def test_scenario_show_Ping(self):
+ res = self.yardstick("scenario show Ping")
+ self.assertIn("Execute ping between two hosts", res)
+
+ def test_scenario_show_Iperf3(self):
+ res = self.yardstick("scenario show Iperf3")
+ self.assertIn("Execute iperf3 between two hosts", res)
+
+ def test_scenario_show_Pktgen(self):
+ res = self.yardstick("scenario show Pktgen")
+ self.assertIn("Execute pktgen between two hosts", res)