Add support for Python 3
[yardstick.git] / tests / unit / benchmark / scenarios / availability / test_attacker_baremetal.py
1 #!/usr/bin/env python
2
3 ##############################################################################
4 # Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
5 #
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
13 # yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal
14
15 from __future__ import absolute_import
16 import mock
17 import unittest
18
19 from yardstick.benchmark.scenarios.availability.attacker import \
20     attacker_baremetal
21
22
23 @mock.patch(
24     'yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal'
25     '.subprocess')
26 class ExecuteShellTestCase(unittest.TestCase):
27
28     def test__fun_execute_shell_command_successful(self, mock_subprocess):
29         cmd = "env"
30         mock_subprocess.check_output.return_value = (0, 'unittest')
31         exitcode, output = attacker_baremetal._execute_shell_command(cmd)
32         self.assertEqual(exitcode, 0)
33
34     def test__fun_execute_shell_command_fail_cmd_exception(self,
35                                                            mock_subprocess):
36         cmd = "env"
37         mock_subprocess.check_output.side_effect = RuntimeError
38         exitcode, output = attacker_baremetal._execute_shell_command(cmd)
39         self.assertEqual(exitcode, -1)
40
41
42 @mock.patch(
43     'yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal'
44     '.ssh')
45 class AttackerBaremetalTestCase(unittest.TestCase):
46
47     def setUp(self):
48         host = {
49             "ipmi_ip": "10.20.0.5",
50             "ipmi_user": "root",
51             "ipmi_pwd": "123456",
52             "ip": "10.20.0.5",
53             "user": "root",
54             "key_filename": "/root/.ssh/id_rsa"
55         }
56         self.context = {"node1": host}
57         self.attacker_cfg = {
58             'fault_type': 'bear-metal-down',
59             'host': 'node1',
60         }
61
62     def test__attacker_baremetal_all_successful(self, mock_ssh):
63         ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg,
64                                                    self.context)
65
66         mock_ssh.SSH().execute.return_value = (0, "running", '')
67         ins.setup()
68         ins.inject_fault()
69         ins.recover()
70
71     def test__attacker_baremetal_check_failuer(self, mock_ssh):
72         ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg,
73                                                    self.context)
74         mock_ssh.SSH().execute.return_value = (0, "error check", '')
75         ins.setup()
76
77     def test__attacker_baremetal_recover_successful(self, mock_ssh):
78
79         self.attacker_cfg["jump_host"] = 'node1'
80         self.context["node1"]["pwd"] = "123456"
81         ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg,
82                                                    self.context)
83
84         mock_ssh.SSH().execute.return_value = (0, "running", '')
85         ins.setup()
86         ins.recover()