Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: scripts/slave/unittests/expect_tests/pipeline.py

Issue 220353003: Replace recipes_test.py with a new parallel expectation-based test runner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: address comments Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import Queue
6 import glob
7 import multiprocessing
8 import re
9 import signal
10
11 from .types import Test, UnknownError, TestError, Result, ResultStageAbort
12
13
14 def GenLoopProcess(gen, test_queue, result_queue, opts, kill_switch, cover_ctx):
Vadim Sh. 2014/04/03 01:00:30 gen_loop_process, same for other functions
iannucci 2014/04/03 02:30:58 Done.
15 """Generate `Test`'s from |gen|, and feed them into |test_queue|.
16
17 Non-Test instances will be translated into `UnknownError` objects.
18
19 On completion, feed |opts.jobs| None objects into |test_queue|.
20
21 @param gen: generator yielding Test() instances.
22 @type test_queue: multiprocessing.Queue()
23 @type result_queue: multiprocessing.Queue()
24 @type opts: argparse.Namespace
25 @type kill_switch: multiprocessing.Event()
26 @type match_globs: [str]
agable 2014/04/03 00:38:00 no longer used
iannucci 2014/04/03 02:30:58 Done.
27 @type cover_ctx: cover.CoverageContext().create_subprocess_context()
28 @type handler: types.Handler
agable 2014/04/03 00:38:00 no longer used
iannucci 2014/04/03 02:30:58 Done.
29 """
30 matcher = re.compile(
31 '^%s$' % '|'.join('(?:%s)' % glob.fnmatch.translate(g)
32 for g in opts.test_glob if g[0] != '-'))
33 if matcher.pattern == '^$':
34 matcher = re.compile('^.*$')
35
36 neg_matcher = re.compile(
37 '^%s$' % '|'.join('(?:%s)' % glob.fnmatch.translate(g[1:])
38 for g in opts.test_glob if g[0] == '-'))
39
40 def generate_tests():
41 try:
42 for test in gen():
43 if kill_switch.is_set():
44 break
45
46 if not isinstance(test, Test):
47 result_queue.put_nowait(
48 UnknownError(
49 'Got non-Test isinstance from generator: %r' % test))
50 continue
51
52 if not neg_matcher.match(test.name) and matcher.match(test.name):
53 yield test
54 except KeyboardInterrupt:
55 pass
56 finally:
57 for _ in xrange(opts.jobs):
58 test_queue.put_nowait(None)
59
60
61 next_stage = (result_queue if opts.handler.SKIP_RUNLOOP else test_queue)
62 with cover_ctx:
63 opts.handler.gen_stage_loop(opts, generate_tests(), next_stage.put_nowait,
64 result_queue.put_nowait)
65
66
67 def RunLoopProcess(test_queue, result_queue, opts, kill_switch, cover_ctx):
68 """Consume `Test` instances from |test_queue|, run them, and yield the results
69 into opts.run_stage_loop().
70
71 Generates coverage data as a side-effect.
72 @type test_queue: multiprocessing.Queue()
73 @type result_queue: multiprocessing.Queue()
74 @type opts: argparse.Namespace
75 @type kill_switch: multiprocessing.Event()
76 @type cover_ctx: cover.CoverageContext().create_subprocess_context()
77 """
78 def generate_tests_results():
79 try:
80 while not kill_switch.is_set():
81 try:
82 test = test_queue.get(timeout=0.1)
83 if test is None:
84 break
85 except Queue.Empty:
86 continue
87
88 try:
89 result = test.run()
90 if not isinstance(result, Result):
91 result_queue.put_nowait(
92 TestError(test, 'Got non-Result instance from test: %r'
93 % result))
94 continue
95
96 yield test, result
97 except Exception as e:
98 # TODO(iannucci): include stacktrace
99 result_queue.put_nowait(TestError(test, str(e)))
100 except KeyboardInterrupt:
101 pass
102
103 with cover_ctx:
104 opts.handler.run_stage_loop(opts, generate_tests_results(),
105 result_queue.put_nowait)
106
107
108 def ResultLoop(test_gen, cover_ctx, opts):
109 kill_switch = multiprocessing.Event()
110 def handle_killswitch(*_):
111 kill_switch.set()
112 # Reset the signal to DFL so that double ctrl-C kills us for sure.
113 signal.signal(signal.SIGINT, signal.SIG_DFL)
114 signal.signal(signal.SIGTERM, signal.SIG_DFL)
115 signal.signal(signal.SIGINT, handle_killswitch)
116 signal.signal(signal.SIGTERM, handle_killswitch)
117
118 test_queue = multiprocessing.Queue()
119 result_queue = multiprocessing.Queue()
120
121 test_gen_args = (
122 test_gen, test_queue, result_queue, opts, kill_switch, cover_ctx)
123
124 procs = []
125 if opts.handler.SKIP_RUNLOOP:
126 GenLoopProcess(*test_gen_args)
127 class DeadProc(object):
128 """It's alive exactly once."""
129 alive = True
130 def is_alive(self):
131 ret = self.alive
132 self.alive = False
133 return ret
134 # This is so we can write generate_objects() in a non-racy way
135 procs = [DeadProc()]
136 else:
137 procs = [multiprocessing.Process(
138 target=GenLoopProcess, args=test_gen_args)]
139
140 procs += [
141 multiprocessing.Process(
142 target=RunLoopProcess, args=(
143 test_queue, result_queue, opts, kill_switch, cover_ctx))
144 for _ in xrange(opts.jobs)
145 ]
146
147 for p in procs:
148 p.daemon = True
149 p.start()
150
151 error = False
152 try:
153 def generate_objects():
154 while not kill_switch.is_set():
155 if not any(p.is_alive() for p in procs):
156 break
157
158 while not kill_switch.is_set():
159 try:
160 yield result_queue.get(timeout=0.1)
161 except Queue.Empty:
162 break
iannucci 2014/04/03 02:30:58 never mind, this loop is still racy. I'll fix it.
163 if kill_switch.is_set():
164 raise ResultStageAbort()
165 error = opts.handler.result_stage_loop(opts, generate_objects())
166 except ResultStageAbort:
167 pass
168
169 if not kill_switch.is_set() and not result_queue.empty():
170 error = True
171
172 return error, kill_switch.is_set()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698