Merge "Fixed document for Grafana Port usage"
[yardstick.git] / yardstick / tests / unit / benchmark / scenarios / availability / test_util.py
1 #!/usr/bin/env python
2
3 ##############################################################################
4 # Copyright (c) 2016 Kanglin Yin and others
5 # 14_ykl@tongji.edu.cn
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 # Unittest for yardstick.benchmark.scenarios.availability.utils
13
14 import mock
15 import unittest
16
17 from yardstick.benchmark.scenarios.availability import util
18
19
20 class ExecuteShellTestCase(unittest.TestCase):
21
22     def setUp(self):
23         self.param_config = {'serviceName': '@serviceName', 'value': 1}
24         self.intermediate_variables = {'@serviceName': 'nova-api'}
25         self.std_output = '| id       | 1                     |'
26         self.cmd_config = {'cmd': 'ls', 'param': '-a'}
27
28         self._mock_subprocess = mock.patch.object(util, 'subprocess')
29         self.mock_subprocess = self._mock_subprocess.start()
30         self.addCleanup(self._stop_mock)
31
32     def _stop_mock(self):
33         self._mock_subprocess.stop()
34
35     def test_util_build_command_shell(self):
36         result = util.build_shell_command(self.param_config, True,
37                                           self.intermediate_variables)
38         self.assertIn("nova-api", result)
39
40     def test_read_stdout_item(self):
41         result = util.read_stdout_item(self.std_output, 'id')
42         self.assertEqual('1', result)
43
44     def test_buildshellparams(self):
45         result = util.buildshellparams(self.cmd_config, True)
46         self.assertEqual('/bin/bash -s {0} {1}', result)
47
48     def test__fun_execute_shell_command_successful(self):
49         cmd = "env"
50         self.mock_subprocess.check_output.return_value = (0, 'unittest')
51         exitcode, _ = util.execute_shell_command(cmd)
52         self.assertEqual(exitcode, 0)
53
54     def test__fun_execute_shell_command_fail_cmd_exception(self):
55         cmd = "env"
56         self.mock_subprocess.check_output.side_effect = RuntimeError
57         exitcode, _ = util.execute_shell_command(cmd)
58         self.assertEqual(exitcode, -1)