Merge "Point to user guide to get started on VNF testing"
[yardstick.git] / yardstick / benchmark / scenarios / availability / monitor / monitor_command.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 absolute_import
10 import logging
11 import subprocess
12 import traceback
13
14 import yardstick.ssh as ssh
15 from yardstick.benchmark.scenarios.availability.monitor import basemonitor
16
17 LOG = logging.getLogger(__name__)
18
19
20 def _execute_shell_command(command):
21     """execute shell script with error handling"""
22     exitcode = 0
23     output = []
24     try:
25         output = subprocess.check_output(command, shell=True)
26     except Exception:
27         exitcode = -1
28         output = traceback.format_exc()
29         LOG.error("exec command '%s' error:\n ", command)
30         LOG.error(traceback.format_exc())
31
32     return exitcode, output
33
34
35 class MonitorOpenstackCmd(basemonitor.BaseMonitor):
36     """docstring for MonitorApi"""
37
38     __monitor_type__ = "openstack-cmd"
39
40     def setup(self):
41         self.connection = None
42         node_name = self._config.get("host", None)
43         if node_name:
44             host = self._context[node_name]
45
46             self.connection = ssh.SSH.from_node(host,
47                                                 defaults={"user": "root"})
48             self.connection.wait(timeout=600)
49             LOG.debug("ssh host success!")
50
51         self.check_script = self.get_script_fullpath(
52             "ha_tools/check_openstack_cmd.bash")
53
54         self.cmd = self._config["command_name"]
55
56     def monitor_func(self):
57         exit_status = 0
58         exit_status, stdout = _execute_shell_command(self.cmd)
59         if exit_status:
60             return False
61         return True
62
63     def verify_SLA(self):
64         outage_time = self._result.get('outage_time', None)
65         LOG.debug("the _result:%s", self._result)
66         max_outage_time = self._config["sla"]["max_outage_time"]
67         if outage_time > max_outage_time:
68             LOG.info("SLA failure: %f > %f", outage_time, max_outage_time)
69             return False
70         else:
71             LOG.info("the sla is passed")
72             return True
73
74
75 def _test():    # pragma: no cover
76     host = {
77         "ip": "192.168.235.22",
78         "user": "root",
79         "key_filename": "/root/.ssh/id_rsa"
80     }
81     context = {"node1": host}
82     monitor_configs = []
83     config = {
84         'monitor_type': 'openstack-cmd',
85         'command_name': 'nova image-list',
86         'monitor_time': 1,
87         'host': 'node1',
88         'sla': {'max_outage_time': 5}
89     }
90     monitor_configs.append(config)
91
92     p = basemonitor.MonitorMgr()
93     p.init_monitors(monitor_configs, context)
94     p.start_monitors()
95     p.wait_monitors()
96     p.verify_SLA()
97
98
99 if __name__ == '__main__':    # pragma: no cover
100     _test()