Use """ to replace ''' in docstring
[yardstick.git] / yardstick / benchmark / scenarios / availability / serviceha.py
1 ##############################################################################
2 # Copyright (c) 2015 Huawei Technologies Co.,Ltd. and others
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from __future__ import print_function
10 from __future__ import absolute_import
11 import logging
12 from yardstick.benchmark.scenarios import base
13 from yardstick.benchmark.scenarios.availability.monitor import basemonitor
14 from yardstick.benchmark.scenarios.availability.attacker import baseattacker
15
16 LOG = logging.getLogger(__name__)
17
18
19 class ServiceHA(base.Scenario):
20     """TODO: docstring of ServiceHA
21     """
22     __scenario_type__ = "ServiceHA"
23
24     def __init__(self, scenario_cfg, context_cfg):
25         LOG.debug(
26             "scenario_cfg:%s context_cfg:%s",
27             scenario_cfg, context_cfg)
28         self.scenario_cfg = scenario_cfg
29         self.context_cfg = context_cfg
30         self.setup_done = False
31
32     def setup(self):
33         """scenario setup"""
34         nodes = self.context_cfg.get("nodes", None)
35         if nodes is None:
36             LOG.error("the nodes info is none")
37             return
38
39         self.attackers = []
40         attacker_cfgs = self.scenario_cfg["options"]["attackers"]
41         for attacker_cfg in attacker_cfgs:
42             attacker_cls = baseattacker.BaseAttacker.get_attacker_cls(
43                 attacker_cfg)
44             attacker_ins = attacker_cls(attacker_cfg, nodes)
45             attacker_ins.setup()
46             self.attackers.append(attacker_ins)
47
48         monitor_cfgs = self.scenario_cfg["options"]["monitors"]
49
50         self.monitorMgr = basemonitor.MonitorMgr()
51         self.monitorMgr.init_monitors(monitor_cfgs, nodes)
52
53         self.setup_done = True
54
55     def run(self, result):
56         """execute the benchmark"""
57         if not self.setup_done:
58             LOG.error("The setup not finished!")
59             return
60
61         self.monitorMgr.start_monitors()
62         LOG.info("monitor start!")
63
64         for attacker in self.attackers:
65             attacker.inject_fault()
66
67         self.monitorMgr.wait_monitors()
68         LOG.info("monitor stop!")
69
70         sla_pass = self.monitorMgr.verify_SLA()
71         if sla_pass:
72             result['sla_pass'] = 1
73         else:
74             result['sla_pass'] = 0
75         assert sla_pass is True, "the test cases is not pass the SLA"
76
77         return
78
79     def teardown(self):
80         """scenario teardown"""
81         for attacker in self.attackers:
82             attacker.recover()
83
84
85 def _test():    # pragma: no cover
86     """internal test function"""
87     host = {
88         "ip": "10.20.0.5",
89         "user": "root",
90         "key_filename": "/root/.ssh/id_rsa"
91     }
92     ctx = {"nodes": {"node1": host}}
93     attacker_cfg = {
94         "fault_type": "kill-process",
95         "process_name": "nova-api",
96         "host": "node1"
97     }
98     attacker_cfgs = []
99     attacker_cfgs.append(attacker_cfg)
100     monitor_cfg = {
101         "monitor_cmd": "nova image-list"
102     }
103     monitor_cfgs = []
104     monitor_cfgs.append(monitor_cfg)
105
106     options = {
107         "attackers": attacker_cfgs,
108         "wait_time": 10,
109         "monitors": monitor_cfgs
110     }
111     sla = {"outage_time": 5}
112     args = {"options": options, "sla": sla}
113
114     print("create instance")
115     terstInstance = ServiceHA(args, ctx)
116
117     terstInstance.setup()
118     result = {}
119     terstInstance.run(result)
120     print(result)
121
122     terstInstance.teardown()
123
124
125 if __name__ == '__main__':    # pragma: no cover
126     _test()