Merge "Adding latency test for vfw"
[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         self.data = {}
32         self.pass_flag = True
33
34     def setup(self):
35         """scenario setup"""
36         nodes = self.context_cfg.get("nodes", None)
37         if nodes is None:
38             LOG.error("the nodes info is none")
39             return
40
41         self.attackers = []
42         attacker_cfgs = self.scenario_cfg["options"]["attackers"]
43         for attacker_cfg in attacker_cfgs:
44             attacker_cls = baseattacker.BaseAttacker.get_attacker_cls(
45                 attacker_cfg)
46             attacker_ins = attacker_cls(attacker_cfg, nodes)
47             attacker_ins.setup()
48             self.attackers.append(attacker_ins)
49             self.data = dict(self.data.items() + attacker_ins.data.items())
50
51         monitor_cfgs = self.scenario_cfg["options"]["monitors"]
52
53         self.monitorMgr = basemonitor.MonitorMgr(self.data)
54         self.monitorMgr.init_monitors(monitor_cfgs, nodes)
55
56         self.setup_done = True
57
58     def run(self, result):
59         """execute the benchmark"""
60         if not self.setup_done:
61             LOG.error("The setup not finished!")
62             return
63
64         self.monitorMgr.start_monitors()
65         LOG.info("HA monitor start!")
66
67         for attacker in self.attackers:
68             attacker.inject_fault()
69
70         self.monitorMgr.wait_monitors()
71         LOG.info("HA monitor stop!")
72
73         sla_pass = self.monitorMgr.verify_SLA()
74         for k, v in self.data.items():
75             if v == 0:
76                 result['sla_pass'] = 0
77                 self.pass_flag = False
78                 LOG.info("The service process not found in the host envrioment, \
79 the HA test case NOT pass")
80                 return
81         self.monitorMgr.store_result(result)
82         if sla_pass:
83             result['sla_pass'] = 1
84             LOG.info("The HA test case PASS the SLA")
85         else:
86             result['sla_pass'] = 0
87             self.pass_flag = False
88         assert sla_pass is True, "The HA test case NOT pass the SLA"
89
90         return
91
92     def teardown(self):
93         """scenario teardown"""
94         for attacker in self.attackers:
95             attacker.recover()
96
97         assert self.pass_flag, "The HA test case NOT passed"
98
99
100 def _test():    # pragma: no cover
101     """internal test function"""
102     host = {
103         "ip": "10.20.0.5",
104         "user": "root",
105         "key_filename": "/root/.ssh/id_rsa"
106     }
107     ctx = {"nodes": {"node1": host}}
108     attacker_cfg = {
109         "fault_type": "kill-process",
110         "process_name": "nova-api",
111         "host": "node1"
112     }
113     attacker_cfgs = []
114     attacker_cfgs.append(attacker_cfg)
115     monitor_cfg = {
116         "monitor_cmd": "nova image-list"
117     }
118     monitor_cfgs = []
119     monitor_cfgs.append(monitor_cfg)
120
121     options = {
122         "attackers": attacker_cfgs,
123         "wait_time": 10,
124         "monitors": monitor_cfgs
125     }
126     sla = {"outage_time": 5}
127     args = {"options": options, "sla": sla}
128
129     print("create instance")
130     terstInstance = ServiceHA(args, ctx)
131
132     terstInstance.setup()
133     result = {}
134     terstInstance.run(result)
135     print(result)
136
137     terstInstance.teardown()
138
139
140 if __name__ == '__main__':    # pragma: no cover
141     _test()