blob: d578349cca268fce0c9aa6411ea192cd2f56cb06 [file] [log] [blame]
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +03001from __future__ import print_function
2
gstepanov023c1e42015-04-08 15:50:19 +03003import os
koder aka kdanilov7acd6bd2015-02-12 14:28:30 -08004import sys
koder aka kdanilove87ae652015-04-20 02:14:35 +03005import time
koder aka kdanilov2c473092015-03-29 17:12:13 +03006import Queue
koder aka kdanilov7acd6bd2015-02-12 14:28:30 -08007import pprint
koder aka kdanilove21d7472015-02-14 19:02:04 -08008import logging
koder aka kdanilov7acd6bd2015-02-12 14:28:30 -08009import argparse
koder aka kdanilov168f6092015-04-19 02:33:38 +030010import functools
koder aka kdanilov2c473092015-03-29 17:12:13 +030011import threading
koder aka kdanilov168f6092015-04-19 02:33:38 +030012import contextlib
koder aka kdanilov2c473092015-03-29 17:12:13 +030013import collections
koder aka kdanilov7acd6bd2015-02-12 14:28:30 -080014
koder aka kdanilov66839a92015-04-11 13:22:31 +030015import yaml
koder aka kdanilov2c473092015-03-29 17:12:13 +030016from concurrent.futures import ThreadPoolExecutor
koder aka kdanilov6c491062015-04-09 22:33:13 +030017
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +030018from wally import pretty_yaml
koder aka kdanilove87ae652015-04-20 02:14:35 +030019from wally.sensors_utils import deploy_sensors_stage
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +030020from wally.discover import discover, Node, undiscover
21from wally import utils, report, ssh_utils, start_vms
22from wally.suits.itest import IOPerfTest, PgBenchTest
23from wally.config import cfg_dict, load_config, setup_loggers
koder aka kdanilov2c473092015-03-29 17:12:13 +030024
25
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +030026logger = logging.getLogger("wally")
koder aka kdanilovcee43342015-04-14 22:52:53 +030027
koder aka kdanilov7acd6bd2015-02-12 14:28:30 -080028
Yulia Portnova7ddfa732015-02-24 17:32:58 +020029def format_result(res, formatter):
koder aka kdanilove21d7472015-02-14 19:02:04 -080030 data = "\n{0}\n".format("=" * 80)
31 data += pprint.pformat(res) + "\n"
32 data += "{0}\n".format("=" * 80)
koder aka kdanilovfe056622015-02-19 08:46:15 -080033 templ = "{0}\n\n====> {1}\n\n{2}\n\n"
Yulia Portnova7ddfa732015-02-24 17:32:58 +020034 return templ.format(data, formatter(res), "=" * 80)
koder aka kdanilove21d7472015-02-14 19:02:04 -080035
36
koder aka kdanilov1c2b5112015-04-10 16:53:51 +030037class Context(object):
38 def __init__(self):
39 self.build_meta = {}
40 self.nodes = []
41 self.clear_calls_stack = []
42 self.openstack_nodes_ids = []
koder aka kdanilov168f6092015-04-19 02:33:38 +030043 self.sensors_mon_q = None
koder aka kdanilov1c2b5112015-04-10 16:53:51 +030044
45
koder aka kdanilov168f6092015-04-19 02:33:38 +030046def connect_one(node, vm=False):
koder aka kdanilov0c598a12015-04-21 03:01:40 +030047 if node.conn_url == 'local':
48 node.connection = ssh_utils.connect(node.conn_url)
49 return
50
koder aka kdanilov5d589b42015-03-26 12:25:51 +020051 try:
koder aka kdanilov2c473092015-03-29 17:12:13 +030052 ssh_pref = "ssh://"
53 if node.conn_url.startswith(ssh_pref):
54 url = node.conn_url[len(ssh_pref):]
koder aka kdanilov168f6092015-04-19 02:33:38 +030055
56 if vm:
koder aka kdanilov6b1341a2015-04-21 22:44:21 +030057 conn_timeout = 240
koder aka kdanilov168f6092015-04-19 02:33:38 +030058 else:
koder aka kdanilov6b1341a2015-04-21 22:44:21 +030059 conn_timeout = 30
koder aka kdanilov168f6092015-04-19 02:33:38 +030060
61 node.connection = ssh_utils.connect(url,
koder aka kdanilov6b1341a2015-04-21 22:44:21 +030062 conn_timeout=conn_timeout)
koder aka kdanilov2c473092015-03-29 17:12:13 +030063 else:
64 raise ValueError("Unknown url type {0}".format(node.conn_url))
koder aka kdanilove87ae652015-04-20 02:14:35 +030065 except Exception as exc:
66 # logger.exception("During connect to " + node.get_conn_id())
67 msg = "During connect to {0}: {1}".format(node.get_conn_id(),
68 exc.message)
69 logger.error(msg)
koder aka kdanilov168f6092015-04-19 02:33:38 +030070 node.connection = None
koder aka kdanilov5d589b42015-03-26 12:25:51 +020071
72
koder aka kdanilov168f6092015-04-19 02:33:38 +030073def connect_all(nodes, vm=False):
koder aka kdanilov2c473092015-03-29 17:12:13 +030074 logger.info("Connecting to nodes")
75 with ThreadPoolExecutor(32) as pool:
koder aka kdanilov168f6092015-04-19 02:33:38 +030076 connect_one_f = functools.partial(connect_one, vm=vm)
77 list(pool.map(connect_one_f, nodes))
koder aka kdanilov2c473092015-03-29 17:12:13 +030078
79
koder aka kdanilov652cd802015-04-13 12:21:07 +030080def test_thread(test, node, barrier, res_q):
koder aka kdanilov2c473092015-03-29 17:12:13 +030081 try:
koder aka kdanilova047e1b2015-04-21 23:16:59 +030082 logger.debug("Run preparation for {0}".format(node.get_conn_id()))
koder aka kdanilov2c473092015-03-29 17:12:13 +030083 test.pre_run(node.connection)
koder aka kdanilova047e1b2015-04-21 23:16:59 +030084 logger.debug("Run test for {0}".format(node.get_conn_id()))
koder aka kdanilov2c473092015-03-29 17:12:13 +030085 test.run(node.connection, barrier)
koder aka kdanilov652cd802015-04-13 12:21:07 +030086 except Exception as exc:
koder aka kdanilov2c473092015-03-29 17:12:13 +030087 logger.exception("In test {0} for node {1}".format(test, node))
koder aka kdanilov652cd802015-04-13 12:21:07 +030088 res_q.put(exc)
koder aka kdanilov2c473092015-03-29 17:12:13 +030089
koder aka kdanilov4500a5f2015-04-17 16:55:17 +030090 try:
91 test.cleanup(node.connection)
92 except:
93 msg = "Duringf cleanup - in test {0} for node {1}"
94 logger.exception(msg.format(test, node))
95
koder aka kdanilov2c473092015-03-29 17:12:13 +030096
koder aka kdanilovcee43342015-04-14 22:52:53 +030097def run_tests(test_block, nodes):
koder aka kdanilov2c473092015-03-29 17:12:13 +030098 tool_type_mapper = {
99 "io": IOPerfTest,
100 "pgbench": PgBenchTest,
101 }
102
103 test_nodes = [node for node in nodes
104 if 'testnode' in node.roles]
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300105 test_number_per_type = {}
koder aka kdanilov2c473092015-03-29 17:12:13 +0300106 res_q = Queue.Queue()
107
koder aka kdanilovcee43342015-04-14 22:52:53 +0300108 for name, params in test_block.items():
109 logger.info("Starting {0} tests".format(name))
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300110 test_num = test_number_per_type.get(name, 0)
111 test_number_per_type[name] = test_num + 1
koder aka kdanilovcee43342015-04-14 22:52:53 +0300112 threads = []
113 barrier = utils.Barrier(len(test_nodes))
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300114
koder aka kdanilovcee43342015-04-14 22:52:53 +0300115 for node in test_nodes:
116 msg = "Starting {0} test on {1} node"
117 logger.debug(msg.format(name, node.conn_url))
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300118
119 dr = os.path.join(
120 cfg_dict['test_log_directory'],
121 "{0}_{1}_{2}".format(name, test_num, node.get_ip())
122 )
123
124 if not os.path.exists(dr):
125 os.makedirs(dr)
126
127 test = tool_type_mapper[name](params, res_q.put, dr,
koder aka kdanilova047e1b2015-04-21 23:16:59 +0300128 node=node.get_conn_id())
koder aka kdanilovcee43342015-04-14 22:52:53 +0300129 th = threading.Thread(None, test_thread, None,
130 (test, node, barrier, res_q))
131 threads.append(th)
132 th.daemon = True
133 th.start()
koder aka kdanilov2c473092015-03-29 17:12:13 +0300134
koder aka kdanilovcee43342015-04-14 22:52:53 +0300135 def gather_results(res_q, results):
136 while not res_q.empty():
137 val = res_q.get()
koder aka kdanilov66839a92015-04-11 13:22:31 +0300138
koder aka kdanilovcee43342015-04-14 22:52:53 +0300139 if isinstance(val, Exception):
140 msg = "Exception during test execution: {0}"
141 raise ValueError(msg.format(val.message))
koder aka kdanilov652cd802015-04-13 12:21:07 +0300142
koder aka kdanilovcee43342015-04-14 22:52:53 +0300143 results.append(val)
koder aka kdanilov652cd802015-04-13 12:21:07 +0300144
koder aka kdanilovcee43342015-04-14 22:52:53 +0300145 results = []
koder aka kdanilov652cd802015-04-13 12:21:07 +0300146
koder aka kdanilove87ae652015-04-20 02:14:35 +0300147 # MAX_WAIT_TIME = 10
148 # end_time = time.time() + MAX_WAIT_TIME
149
150 # while time.time() < end_time:
koder aka kdanilovcee43342015-04-14 22:52:53 +0300151 while True:
152 for th in threads:
153 th.join(1)
154 gather_results(res_q, results)
koder aka kdanilove87ae652015-04-20 02:14:35 +0300155 # if time.time() > end_time:
156 # break
koder aka kdanilov652cd802015-04-13 12:21:07 +0300157
koder aka kdanilovcee43342015-04-14 22:52:53 +0300158 if all(not th.is_alive() for th in threads):
159 break
koder aka kdanilov652cd802015-04-13 12:21:07 +0300160
koder aka kdanilove87ae652015-04-20 02:14:35 +0300161 # if any(th.is_alive() for th in threads):
162 # logger.warning("Some test threads still running")
163
koder aka kdanilovcee43342015-04-14 22:52:53 +0300164 gather_results(res_q, results)
165 yield name, test.merge_results(results)
koder aka kdanilov2c473092015-03-29 17:12:13 +0300166
167
koder aka kdanilovda45e882015-04-06 02:24:42 +0300168def log_nodes_statistic(_, ctx):
169 nodes = ctx.nodes
koder aka kdanilov2c473092015-03-29 17:12:13 +0300170 logger.info("Found {0} nodes total".format(len(nodes)))
171 per_role = collections.defaultdict(lambda: 0)
172 for node in nodes:
173 for role in node.roles:
174 per_role[role] += 1
175
176 for role, count in sorted(per_role.items()):
177 logger.debug("Found {0} nodes with role {1}".format(count, role))
178
179
koder aka kdanilovda45e882015-04-06 02:24:42 +0300180def connect_stage(cfg, ctx):
181 ctx.clear_calls_stack.append(disconnect_stage)
182 connect_all(ctx.nodes)
183
koder aka kdanilov168f6092015-04-19 02:33:38 +0300184 all_ok = True
koder aka kdanilovda45e882015-04-06 02:24:42 +0300185
koder aka kdanilov168f6092015-04-19 02:33:38 +0300186 for node in ctx.nodes:
187 if node.connection is None:
188 if 'testnode' in node.roles:
189 msg = "Can't connect to testnode {0}"
190 raise RuntimeError(msg.format(node.get_conn_id()))
191 else:
192 msg = "Node {0} would be excluded - can't connect"
193 logger.warning(msg.format(node.get_conn_id()))
194 all_ok = False
195
196 if all_ok:
197 logger.info("All nodes connected successfully")
198
199 ctx.nodes = [node for node in ctx.nodes
200 if node.connection is not None]
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300201
202
koder aka kdanilovda45e882015-04-06 02:24:42 +0300203def discover_stage(cfg, ctx):
koder aka kdanilov652cd802015-04-13 12:21:07 +0300204 if cfg.get('discover') is not None:
koder aka kdanilovda45e882015-04-06 02:24:42 +0300205 discover_objs = [i.strip() for i in cfg['discover'].strip().split(",")]
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300206
koder aka kdanilove87ae652015-04-20 02:14:35 +0300207 nodes, clean_data = discover(ctx,
208 discover_objs,
209 cfg['clouds'],
210 cfg['var_dir'],
211 not cfg['dont_discover_nodes'])
koder aka kdanilov168f6092015-04-19 02:33:38 +0300212
213 def undiscover_stage(cfg, ctx):
214 undiscover(clean_data)
215
216 ctx.clear_calls_stack.append(undiscover_stage)
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300217 ctx.nodes.extend(nodes)
koder aka kdanilovda45e882015-04-06 02:24:42 +0300218
219 for url, roles in cfg.get('explicit_nodes', {}).items():
220 ctx.nodes.append(Node(url, roles.split(",")))
221
222
koder aka kdanilove87ae652015-04-20 02:14:35 +0300223def get_OS_credentials(cfg, ctx, creds_type):
koder aka kdanilovcee43342015-04-14 22:52:53 +0300224 creds = None
koder aka kdanilovda45e882015-04-06 02:24:42 +0300225
koder aka kdanilovcee43342015-04-14 22:52:53 +0300226 if creds_type == 'clouds':
227 if 'openstack' in cfg['clouds']:
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300228 os_cfg = cfg['clouds']['openstack']
koder aka kdanilovcee43342015-04-14 22:52:53 +0300229
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300230 tenant = os_cfg['OS_TENANT_NAME'].strip()
231 user = os_cfg['OS_USERNAME'].strip()
232 passwd = os_cfg['OS_PASSWORD'].strip()
233 auth_url = os_cfg['OS_AUTH_URL'].strip()
234
koder aka kdanilovcee43342015-04-14 22:52:53 +0300235 elif 'fuel' in cfg['clouds'] and \
236 'openstack_env' in cfg['clouds']['fuel']:
237 creds = ctx.fuel_openstack_creds
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300238
koder aka kdanilovcee43342015-04-14 22:52:53 +0300239 elif creds_type == 'ENV':
240 user, passwd, tenant, auth_url = start_vms.ostack_get_creds()
241 elif os.path.isfile(creds_type):
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300242 raise NotImplementedError()
243 # user, passwd, tenant, auth_url = start_vms.ostack_get_creds()
koder aka kdanilovcee43342015-04-14 22:52:53 +0300244 else:
245 msg = "Creds {0!r} isn't supported".format(creds_type)
246 raise ValueError(msg)
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300247
koder aka kdanilovcee43342015-04-14 22:52:53 +0300248 if creds is None:
249 creds = {'name': user,
250 'passwd': passwd,
251 'tenant': tenant,
252 'auth_url': auth_url}
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300253
koder aka kdanilovcee43342015-04-14 22:52:53 +0300254 return creds
koder aka kdanilov4e9f3ed2015-04-14 11:26:12 +0300255
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300256
koder aka kdanilov168f6092015-04-19 02:33:38 +0300257@contextlib.contextmanager
258def create_vms_ctx(ctx, cfg, config):
259 params = config['vm_params'].copy()
260 os_nodes_ids = []
261
262 os_creds_type = config['creds']
koder aka kdanilove87ae652015-04-20 02:14:35 +0300263 os_creds = get_OS_credentials(cfg, ctx, os_creds_type)
koder aka kdanilov168f6092015-04-19 02:33:38 +0300264
265 start_vms.nova_connect(**os_creds)
266
267 logger.info("Preparing openstack")
268 start_vms.prepare_os_subpr(**os_creds)
269
270 new_nodes = []
271 try:
272 params['group_name'] = cfg_dict['run_uuid']
273 for new_node, node_id in start_vms.launch_vms(params):
274 new_node.roles.append('testnode')
275 ctx.nodes.append(new_node)
276 os_nodes_ids.append(node_id)
277 new_nodes.append(new_node)
278
279 store_nodes_in_log(cfg, os_nodes_ids)
280 ctx.openstack_nodes_ids = os_nodes_ids
281
282 yield new_nodes
283
284 finally:
285 if not cfg['keep_vm']:
286 shut_down_vms_stage(cfg, ctx)
287
288
koder aka kdanilovcee43342015-04-14 22:52:53 +0300289def run_tests_stage(cfg, ctx):
290 ctx.results = []
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300291
koder aka kdanilovcee43342015-04-14 22:52:53 +0300292 if 'tests' not in cfg:
293 return
gstepanov023c1e42015-04-08 15:50:19 +0300294
koder aka kdanilovcee43342015-04-14 22:52:53 +0300295 for group in cfg['tests']:
296
297 assert len(group.items()) == 1
298 key, config = group.items()[0]
299
300 if 'start_test_nodes' == key:
koder aka kdanilov168f6092015-04-19 02:33:38 +0300301 with create_vms_ctx(ctx, cfg, config) as new_nodes:
302 connect_all(new_nodes, True)
koder aka kdanilovcee43342015-04-14 22:52:53 +0300303
koder aka kdanilov168f6092015-04-19 02:33:38 +0300304 for node in new_nodes:
305 if node.connection is None:
306 msg = "Failed to connect to vm {0}"
307 raise RuntimeError(msg.format(node.get_conn_id()))
koder aka kdanilovcee43342015-04-14 22:52:53 +0300308
koder aka kdanilov168f6092015-04-19 02:33:38 +0300309 deploy_sensors_stage(cfg_dict,
310 ctx,
311 nodes=new_nodes,
312 undeploy=False)
koder aka kdanilov12ae0632015-04-15 01:13:43 +0300313
koder aka kdanilove87ae652015-04-20 02:14:35 +0300314 if not cfg['no_tests']:
315 for test_group in config.get('tests', []):
316 ctx.results.extend(run_tests(test_group, ctx.nodes))
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300317 else:
koder aka kdanilove87ae652015-04-20 02:14:35 +0300318 if not cfg['no_tests']:
319 ctx.results.extend(run_tests(group, ctx.nodes))
koder aka kdanilovda45e882015-04-06 02:24:42 +0300320
gstepanov023c1e42015-04-08 15:50:19 +0300321
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300322def shut_down_vms_stage(cfg, ctx):
koder aka kdanilov66839a92015-04-11 13:22:31 +0300323 vm_ids_fname = cfg_dict['vm_ids_fname']
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300324 if ctx.openstack_nodes_ids is None:
koder aka kdanilov66839a92015-04-11 13:22:31 +0300325 nodes_ids = open(vm_ids_fname).read().split()
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300326 else:
327 nodes_ids = ctx.openstack_nodes_ids
328
koder aka kdanilov652cd802015-04-13 12:21:07 +0300329 if len(nodes_ids) != 0:
330 logger.info("Removing nodes")
331 start_vms.clear_nodes(nodes_ids)
332 logger.info("Nodes has been removed")
gstepanov023c1e42015-04-08 15:50:19 +0300333
koder aka kdanilov66839a92015-04-11 13:22:31 +0300334 if os.path.exists(vm_ids_fname):
335 os.remove(vm_ids_fname)
gstepanov023c1e42015-04-08 15:50:19 +0300336
koder aka kdanilov66839a92015-04-11 13:22:31 +0300337
338def store_nodes_in_log(cfg, nodes_ids):
339 with open(cfg['vm_ids_fname'], 'w') as fd:
340 fd.write("\n".join(nodes_ids))
gstepanov023c1e42015-04-08 15:50:19 +0300341
342
343def clear_enviroment(cfg, ctx):
koder aka kdanilov66839a92015-04-11 13:22:31 +0300344 if os.path.exists(cfg_dict['vm_ids_fname']):
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300345 shut_down_vms_stage(cfg, ctx)
gstepanov023c1e42015-04-08 15:50:19 +0300346
347
koder aka kdanilovda45e882015-04-06 02:24:42 +0300348def disconnect_stage(cfg, ctx):
koder aka kdanilov652cd802015-04-13 12:21:07 +0300349 ssh_utils.close_all_sessions()
350
koder aka kdanilovda45e882015-04-06 02:24:42 +0300351 for node in ctx.nodes:
352 if node.connection is not None:
353 node.connection.close()
354
355
koder aka kdanilov66839a92015-04-11 13:22:31 +0300356def store_raw_results_stage(cfg, ctx):
357
358 raw_results = os.path.join(cfg_dict['var_dir'], 'raw_results.yaml')
359
360 if os.path.exists(raw_results):
361 cont = yaml.load(open(raw_results).read())
362 else:
363 cont = []
364
koder aka kdanilov168f6092015-04-19 02:33:38 +0300365 cont.extend(utils.yamable(ctx.results))
koder aka kdanilov66839a92015-04-11 13:22:31 +0300366 raw_data = pretty_yaml.dumps(cont)
367
368 with open(raw_results, "w") as fd:
369 fd.write(raw_data)
370
371
372def console_report_stage(cfg, ctx):
373 for tp, data in ctx.results:
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300374 if 'io' == tp and data is not None:
koder aka kdanilove87ae652015-04-20 02:14:35 +0300375 print("\n")
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300376 print(IOPerfTest.format_for_console(data))
koder aka kdanilove87ae652015-04-20 02:14:35 +0300377 print("\n")
koder aka kdanilov66839a92015-04-11 13:22:31 +0300378
379
koder aka kdanilove87ae652015-04-20 02:14:35 +0300380def html_report_stage(cfg, ctx):
Yulia Portnova8ca20572015-04-14 14:09:39 +0300381 html_rep_fname = cfg['html_report_file']
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300382
383 try:
384 fuel_url = cfg['clouds']['fuel']['url']
385 except KeyError:
386 fuel_url = None
387
388 try:
389 creds = cfg['clouds']['fuel']['creds']
390 except KeyError:
391 creds = None
392
gstepanov69339ac2015-04-16 20:09:33 +0300393 report.make_io_report(ctx.results, html_rep_fname, fuel_url, creds=creds)
koder aka kdanilov652cd802015-04-13 12:21:07 +0300394
koder aka kdanilov652cd802015-04-13 12:21:07 +0300395 text_rep_fname = cfg_dict['text_report_file']
396 with open(text_rep_fname, "w") as fd:
397 for tp, data in ctx.results:
koder aka kdanilov4500a5f2015-04-17 16:55:17 +0300398 if 'io' == tp and data is not None:
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300399 fd.write(IOPerfTest.format_for_console(data))
koder aka kdanilov652cd802015-04-13 12:21:07 +0300400 fd.write("\n")
401 fd.flush()
402
403 logger.info("Text report were stored in " + text_rep_fname)
koder aka kdanilovda45e882015-04-06 02:24:42 +0300404
405
406def complete_log_nodes_statistic(cfg, ctx):
407 nodes = ctx.nodes
408 for node in nodes:
409 logger.debug(str(node))
410
411
koder aka kdanilov66839a92015-04-11 13:22:31 +0300412def load_data_from(var_dir):
koder aka kdanilov4e9f3ed2015-04-14 11:26:12 +0300413 def load_data_from_file(cfg, ctx):
koder aka kdanilov66839a92015-04-11 13:22:31 +0300414 raw_results = os.path.join(var_dir, 'raw_results.yaml')
415 ctx.results = yaml.load(open(raw_results).read())
koder aka kdanilov4e9f3ed2015-04-14 11:26:12 +0300416 return load_data_from_file
gstepanovcd256d62015-04-07 17:47:32 +0300417
418
koder aka kdanilovcee43342015-04-14 22:52:53 +0300419def parse_args(argv):
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300420 descr = "Disk io performance test suite"
421 parser = argparse.ArgumentParser(prog='wally', description=descr)
koder aka kdanilovcee43342015-04-14 22:52:53 +0300422
423 parser.add_argument("-l", dest='extra_logs',
424 action='store_true', default=False,
425 help="print some extra log info")
koder aka kdanilovcee43342015-04-14 22:52:53 +0300426 parser.add_argument("-b", '--build_description',
427 type=str, default="Build info")
428 parser.add_argument("-i", '--build_id', type=str, default="id")
429 parser.add_argument("-t", '--build_type', type=str, default="GA")
430 parser.add_argument("-u", '--username', type=str, default="admin")
koder aka kdanilove87ae652015-04-20 02:14:35 +0300431 parser.add_argument("-n", '--no-tests', action='store_true',
432 help="Don't run tests", default=False)
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300433 parser.add_argument("-p", '--post-process-only', metavar="VAR_DIR",
434 help="Only process data from previour run")
435 parser.add_argument("-k", '--keep-vm', action='store_true',
436 help="Don't remove test vm's", default=False)
koder aka kdanilove87ae652015-04-20 02:14:35 +0300437 parser.add_argument("-d", '--dont-discover-nodes', action='store_true',
438 help="Don't connect/discover fuel nodes",
439 default=False)
koder aka kdanilova047e1b2015-04-21 23:16:59 +0300440 parser.add_argument("-r", '--no-html-report', action='store_true',
441 help="Skip html report", default=False)
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300442 parser.add_argument("config_file")
koder aka kdanilovcee43342015-04-14 22:52:53 +0300443
444 return parser.parse_args(argv[1:])
445
446
koder aka kdanilov3f356262015-02-13 08:06:14 -0800447def main(argv):
koder aka kdanilove06762a2015-03-22 23:32:09 +0200448 opts = parse_args(argv)
koder aka kdanilov2c473092015-03-29 17:12:13 +0300449
koder aka kdanilov66839a92015-04-11 13:22:31 +0300450 if opts.post_process_only is not None:
451 stages = [
koder aka kdanilove87ae652015-04-20 02:14:35 +0300452 load_data_from(opts.post_process_only)
koder aka kdanilov66839a92015-04-11 13:22:31 +0300453 ]
454 else:
455 stages = [
456 discover_stage,
457 log_nodes_statistic,
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300458 connect_stage,
koder aka kdanilov66839a92015-04-11 13:22:31 +0300459 deploy_sensors_stage,
460 run_tests_stage,
koder aka kdanilove87ae652015-04-20 02:14:35 +0300461 store_raw_results_stage
koder aka kdanilov66839a92015-04-11 13:22:31 +0300462 ]
463
koder aka kdanilove87ae652015-04-20 02:14:35 +0300464 report_stages = [
465 console_report_stage,
koder aka kdanilove87ae652015-04-20 02:14:35 +0300466 ]
467
koder aka kdanilova047e1b2015-04-21 23:16:59 +0300468 if not opts.no_html_report:
469 report_stages.append(html_report_stage)
470
koder aka kdanilovcee43342015-04-14 22:52:53 +0300471 load_config(opts.config_file, opts.post_process_only)
koder aka kdanilovf4b82c22015-04-11 13:35:25 +0300472
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300473 if cfg_dict.get('logging', {}).get("extra_logs", False) or opts.extra_logs:
474 level = logging.DEBUG
475 else:
476 level = logging.WARNING
477
478 setup_loggers(level, cfg_dict['log_file'])
koder aka kdanilovf4b82c22015-04-11 13:35:25 +0300479
koder aka kdanilov652cd802015-04-13 12:21:07 +0300480 logger.info("All info would be stored into {0}".format(
481 cfg_dict['var_dir']))
gstepanovcd256d62015-04-07 17:47:32 +0300482
koder aka kdanilovda45e882015-04-06 02:24:42 +0300483 ctx = Context()
gstepanovaffcdb12015-04-07 17:18:29 +0300484 ctx.build_meta['build_id'] = opts.build_id
485 ctx.build_meta['build_descrption'] = opts.build_description
486 ctx.build_meta['build_type'] = opts.build_type
487 ctx.build_meta['username'] = opts.username
koder aka kdanilove87ae652015-04-20 02:14:35 +0300488
koder aka kdanilov168f6092015-04-19 02:33:38 +0300489 cfg_dict['keep_vm'] = opts.keep_vm
koder aka kdanilove87ae652015-04-20 02:14:35 +0300490 cfg_dict['no_tests'] = opts.no_tests
491 cfg_dict['dont_discover_nodes'] = opts.dont_discover_nodes
koder aka kdanilov6c491062015-04-09 22:33:13 +0300492
koder aka kdanilovda45e882015-04-06 02:24:42 +0300493 try:
494 for stage in stages:
495 logger.info("Start {0.__name__} stage".format(stage))
496 stage(cfg_dict, ctx)
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300497 except Exception as exc:
koder aka kdanilove87ae652015-04-20 02:14:35 +0300498 emsg = exc.message
499 if emsg == "":
500 emsg = str(exc)
501 msg = "Exception during {0.__name__}: {1}".format(stage, emsg)
koder aka kdanilovcff7b2e2015-04-18 20:48:15 +0300502 logger.error(msg)
koder aka kdanilovda45e882015-04-06 02:24:42 +0300503 finally:
504 exc, cls, tb = sys.exc_info()
505 for stage in ctx.clear_calls_stack[::-1]:
506 try:
507 logger.info("Start {0.__name__} stage".format(stage))
508 stage(cfg_dict, ctx)
koder aka kdanilov1c2b5112015-04-10 16:53:51 +0300509 except Exception as exc:
510 logger.exception("During {0.__name__} stage".format(stage))
koder aka kdanilov2c473092015-03-29 17:12:13 +0300511
koder aka kdanilovda45e882015-04-06 02:24:42 +0300512 if exc is not None:
513 raise exc, cls, tb
koder aka kdanilov2c473092015-03-29 17:12:13 +0300514
koder aka kdanilove87ae652015-04-20 02:14:35 +0300515 for report_stage in report_stages:
516 report_stage(cfg_dict, ctx)
517
518 logger.info("All info stored in {0} folder".format(cfg_dict['var_dir']))
koder aka kdanilove06762a2015-03-22 23:32:09 +0200519 return 0