1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
import collections
import copy
import functools
import os
import signal
import traceback
import yaml
import lib
from lib.colorer import color_log
from lib.colorer import color_stdout
from lib.tarantool_server import TarantoolServer
from lib.test import get_result
from lib.test_suite import TestSuite
from lib.utils import safe_makedirs
# Utils
#######
def find_suites():
suite_names = lib.Options().args.suites
if suite_names == []:
for root, dirs, names in os.walk(os.getcwd(), followlinks=True):
if "suite.ini" in names:
suite_names.append(os.path.basename(root))
suites = [TestSuite(suite_name, lib.Options().args)
for suite_name in sorted(suite_names)]
return suites
def parse_reproduce_file(filepath):
reproduce = []
if not filepath:
return reproduce
try:
with open(filepath, 'r') as f:
for task_id in yaml.safe_load(f):
task_name, task_conf = task_id
reproduce.append((task_name, task_conf))
except IOError:
color_stdout('Cannot read "%s" passed as --reproduce argument\n' %
filepath, schema='error')
exit(1)
return reproduce
def get_reproduce_file(worker_name):
main_vardir = os.path.realpath(lib.Options().args.vardir)
reproduce_dir = os.path.join(main_vardir, 'reproduce')
return os.path.join(reproduce_dir, '%s.list.yaml' % worker_name)
def print_greetings():
# print information about tarantool
color_stdout('\n')
TarantoolServer.print_exe()
# Get tasks and worker generators
#################################
def get_task_groups():
"""Scan directories where tests files expected to reside, create the list
of tests and group it by suites. Create workers generator for each of these
group.
"""
suites = find_suites()
res = collections.OrderedDict()
for suite in suites:
key = os.path.basename(suite.suite_path)
gen_worker = functools.partial(Worker, suite) # get _id as an arg
# Split stable and fragile tasks to two groups. Run stable
# tasks in parallel with other ones. Run fragile tasks one
# by one when all parallel tasks will be finished.
stable_task_ids = [task.id for task in suite.stable_tests()]
fragile_task_ids = [task.id for task in suite.fragile_tests()]
if stable_task_ids:
res[key] = {
'gen_worker': gen_worker,
'task_ids': stable_task_ids,
'is_parallel': suite.is_parallel(),
'show_reproduce_content': suite.show_reproduce_content(),
}
if fragile_task_ids:
res[key + '_fragile'] = {
'gen_worker': gen_worker,
'task_ids': fragile_task_ids,
'is_parallel': False,
'show_reproduce_content': suite.show_reproduce_content(),
}
return res
def reproduce_task_groups(task_groups):
"""Filter provided task_groups down to the one certain group. Sort tests in
this group as in the reproduce file.
"""
found_keys = []
reproduce = parse_reproduce_file(lib.Options().args.reproduce)
if not reproduce:
raise ValueError('[reproduce] Tests list cannot be empty')
for i, task_id in enumerate(reproduce):
for key, task_group in task_groups.items():
if task_id in task_group['task_ids']:
found_keys.append(key)
break
if len(found_keys) != i + 1:
raise ValueError('[reproduce] Cannot find test "%s"' %
str(task_id))
found_keys = list(set(found_keys))
if len(found_keys) < 1:
raise ValueError('[reproduce] Cannot find any suite for given tests')
elif len(found_keys) > 1:
raise ValueError(
'[reproduce] Given tests contained by different suites')
res_key = found_keys[0]
res_task_group = copy.deepcopy(task_groups[key])
res_task_group['task_ids'] = reproduce
return {res_key: res_task_group}
# Worker results
################
class BaseWorkerMessage(object):
"""Base class for all objects passed via result queues. It holds worker_id
(int) and worker_name (string). Used as a structure, i.e. w/o data fields
incapsulation.
"""
def __init__(self, worker_id, worker_name):
super(BaseWorkerMessage, self).__init__()
self.worker_id = worker_id
self.worker_name = worker_name
class WorkerTaskResult(BaseWorkerMessage):
""" Passed into the result queue when a task processed (done) by the
worker. The short_status (string) field intended to give short note whether
the task processed successfully or not, but with little more flexibility
than binary True/False. The task_id (any hashable object) field hold ID of
the processed task. The show_reproduce_content configuration form suite.ini
"""
def __init__(self, worker_id, worker_name, task_id,
short_status, show_reproduce_content):
super(WorkerTaskResult, self).__init__(worker_id, worker_name)
self.short_status = short_status
self.task_id = task_id
self.show_reproduce_content = show_reproduce_content
class WorkerOutput(BaseWorkerMessage):
"""The output passed by worker processes via color_stdout/color_log
functions. The output wrapped into objects of this class by setting queue
and wrapper in the Colorer class (see lib/colorer.py). Check
LogOutputWatcher and OutputWatcher classes in listeners.py file to see how
the output multiplexed by the main process.
"""
def __init__(self, worker_id, worker_name, output, log_only):
super(WorkerOutput, self).__init__(worker_id, worker_name)
self.output = output
self.log_only = log_only
class WorkerDone(BaseWorkerMessage):
"""Report the worker as done its work."""
def __init__(self, worker_id, worker_name):
super(WorkerDone, self).__init__(worker_id, worker_name)
class WorkerCurrentTask(BaseWorkerMessage):
""" Provide information about current task running on worker.
It possible to check the `.result` file of hung tests.
And collect information about current tasks in parallel mode,
to show which parallel tests can affect failed test.
"""
def __init__(self, worker_id, worker_name,
task_name, task_param, task_result, task_tmp_result):
super(WorkerCurrentTask, self).__init__(worker_id, worker_name)
self.task_name = task_name
self.task_param = task_param
self.task_result = task_result
self.task_tmp_result = task_tmp_result
# Worker
########
class VoluntaryStopException(Exception):
pass
class Worker:
def report_keyboard_interrupt(self):
color_stdout('\n[Worker "%s"] Caught keyboard interrupt; stopping...\n'
% self.name, schema='test_var')
def wrap_output(self, output, log_only):
return WorkerOutput(self.id, self.name, output, log_only)
def done_marker(self):
return WorkerDone(self.id, self.name)
def current_task(self, task_id):
task_name, task_param = task_id
task_result = os.path.join(self.suite.ini['suite'],
get_result(task_name))
task_tmp_result = os.path.join(self.suite.ini['vardir'],
get_result(task_name))
return WorkerCurrentTask(self.id, self.name, task_name, task_param,
task_result, task_tmp_result)
def wrap_result(self, task_id, short_status):
return WorkerTaskResult(self.id, self.name, task_id, short_status,
self.suite.show_reproduce_content())
def sigterm_handler(self, signum, frame):
self.sigterm_received = True
def __init__(self, suite, _id):
self.sigterm_received = False
signal.signal(signal.SIGTERM, lambda x, y, z=self:
z.sigterm_handler(x, y))
self.initialized = False
self.server = None
self.inspector = None
self.id = _id
self.suite = suite
self.name = '%03d_%s' % (self.id, self.suite.suite_path)
main_vardir = self.suite.ini['vardir']
self.suite.ini['vardir'] = os.path.join(main_vardir, self.name)
self.reproduce_file = get_reproduce_file(self.name)
safe_makedirs(os.path.dirname(self.reproduce_file))
color_stdout.queue_msg_wrapper = self.wrap_output
self.last_task_done = True
self.last_task_id = -1
try:
self.server = suite.gen_server()
self.inspector = suite.start_server(self.server)
self.initialized = True
except KeyboardInterrupt:
self.report_keyboard_interrupt()
self.stop_server(cleanup=False)
except Exception as e:
color_stdout('Worker "%s" cannot start tarantool server; '
'the tasks will be ignored...\n' % self.name,
schema='error')
color_stdout("The raised exception is '%s' of type '%s'.\n"
% (str(e), str(type(e))), schema='error')
color_stdout('Worker "%s" received the following error:\n'
% self.name + traceback.format_exc() + '\n',
schema='error')
self.stop_server(cleanup=False)
def stop_server(self, rais=True, cleanup=True, silent=True):
try:
self.suite.stop_server(self.server, self.inspector, silent=silent,
cleanup=cleanup)
except (KeyboardInterrupt, Exception):
if rais:
raise
# XXX: What if KeyboardInterrupt raised inside task_queue.get() and 'stop
# worker' marker readed from the queue, but not returned to us?
def task_get(self, task_queue):
self.last_task_done = False
self.last_task_id = task_queue.get()
return self.last_task_id
@staticmethod
def is_joinable(task_queue):
return 'task_done' in task_queue.__dict__.keys()
def task_done(self, task_queue):
if Worker.is_joinable(task_queue):
task_queue.task_done()
self.last_task_done = True
def find_task(self, task_id):
for cur_task in self.suite.tests:
if cur_task.id == task_id:
return cur_task
raise ValueError('Cannot find test: %s' % str(task_id))
# Note: it's not exception safe
def run_task(self, task_id):
if not self.initialized:
return self.done_marker()
try:
task = self.find_task(task_id)
with open(self.reproduce_file, 'a') as f:
f.write('- ' + yaml.safe_dump(task.id))
short_status = self.suite.run_test(
task, self.server, self.inspector)
except KeyboardInterrupt:
self.report_keyboard_interrupt()
raise
except Exception:
color_stdout(
'\nWorker "%s" received the following error; stopping...\n'
% self.name + traceback.format_exc() + '\n', schema='error')
raise
return short_status
def run_loop(self, task_queue, result_queue):
""" called from 'run_all' """
while True:
task_id = self.task_get(task_queue)
# None is 'stop worker' marker
if task_id is None:
color_log('Worker "%s" exhausted task queue; '
'stopping the server...\n' % self.name,
schema='test_var')
self.stop_worker(task_queue, result_queue)
break
result_queue.put(self.current_task(task_id))
short_status = self.run_task(task_id)
result_queue.put(self.wrap_result(task_id, short_status))
if not lib.Options().args.is_force and short_status == 'fail':
color_stdout(
'Worker "%s" got failed test; stopping the server...\n'
% self.name, schema='test_var')
raise VoluntaryStopException()
if self.sigterm_received:
color_stdout('Worker "%s" got signal to terminate; '
'stopping the server...\n' % self.name,
schema='test_var')
raise VoluntaryStopException()
self.task_done(task_queue)
def run_all(self, task_queue, result_queue):
if not self.initialized:
self.flush_all_tasks(task_queue, result_queue)
result_queue.put(self.done_marker())
return
try:
self.run_loop(task_queue, result_queue)
except (KeyboardInterrupt, Exception) as e:
if not isinstance(e, KeyboardInterrupt) and \
not isinstance(e, VoluntaryStopException):
color_stdout('Exception: %s\n' % e, schema='error')
self.stop_worker(task_queue, result_queue, cleanup=False)
result_queue.put(self.done_marker())
def stop_worker(self, task_queue, result_queue, cleanup=True):
try:
if not self.last_task_done:
self.task_done(task_queue)
self.flush_all_tasks(task_queue, result_queue)
self.stop_server(cleanup=cleanup)
except (KeyboardInterrupt, Exception):
pass
def flush_all_tasks(self, task_queue, result_queue):
""" A queue flusing is necessary only for joinable queue (when runner
controlling workers with using join() on task queues), so doesn't
used in the current test-run implementation.
"""
if not Worker.is_joinable(task_queue):
return
# None is 'stop worker' marker
while self.last_task_id is not None:
task_id = self.task_get(task_queue)
result_queue.put(self.wrap_result(task_id, 'not_run'))
self.task_done(task_queue)
|