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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
|
#
# __COPYRIGHT__
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import sys
import unittest
import SCons.Taskmaster
import SCons.Errors
built_text = None
visited_nodes = []
executed = None
scan_called = 0
class Node:
def __init__(self, name, kids = [], scans = []):
self.name = name
self.kids = kids
self.scans = scans
self.scanned = 0
self.scanner = None
self.builder = Node.build
self.bsig = None
self.csig = None
self.state = None
self.prepared = None
self.parents = []
self.side_effect = 0
self.side_effects = []
for kid in kids:
kid.parents.append(self)
def build(self):
global built_text
built_text = self.name + " built"
def has_builder(self):
return not self.builder is None
def built(self):
global built_text
built_text = built_text + " really"
def visited(self):
global visited_nodes
visited_nodes.append(self.name)
def prepare(self):
self.prepared = 1
def children(self):
if not self.scanned:
self.scan()
self.scanned = 1
return self.kids
def scan(self):
global scan_called
scan_called = scan_called + 1
self.kids = self.kids + self.scans
for scan in self.scans:
scan.parents.append(self)
self.scans = []
def scanner_key(self):
return self.name
def get_parents(self):
return self.parents
def get_state(self):
return self.state
def set_state(self, state):
self.state = state
def set_bsig(self, bsig):
self.bsig = bsig
def set_csig(self, csig):
self.csig = csig
def store_csig(self):
pass
def store_bsig(self):
pass
def current(self, calc):
return calc.current(self, calc.bsig(self))
def depends_on(self, nodes):
for node in nodes:
if node in self.kids:
return 1
return 0
def __str__(self):
return self.name
class OtherError(Exception):
pass
class MyException(Exception):
pass
class TaskmasterTestCase(unittest.TestCase):
def test_next_task(self):
"""Test fetching the next task
"""
global built_text
n1 = Node("n1")
tm = SCons.Taskmaster.Taskmaster([n1, n1])
t = tm.next_task()
t.prepare()
t.execute()
t = tm.next_task()
assert t == None
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1, n2])
tm = SCons.Taskmaster.Taskmaster([n3])
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n1 built", built_text
t.executed()
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n2 built", built_text
t.executed()
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n3 built", built_text
t.executed()
assert tm.next_task() == None
built_text = "up to date: "
top_node = n3
class MyCalc(SCons.Taskmaster.Calc):
def current(self, node, sig):
return 1
class MyTask(SCons.Taskmaster.Task):
def execute(self):
global built_text
if self.targets[0].get_state() == SCons.Node.up_to_date:
if self.top:
built_text = self.targets[0].name + " up-to-date top"
else:
built_text = self.targets[0].name + " up-to-date"
else:
self.targets[0].build()
n1.set_state(None)
n2.set_state(None)
n3.set_state(None)
tm = SCons.Taskmaster.Taskmaster(targets = [n3],
tasker = MyTask, calc = MyCalc())
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n1 up-to-date", built_text
t.executed()
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n2 up-to-date", built_text
t.executed()
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n3 up-to-date top", built_text
t.executed()
assert tm.next_task() == None
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1, n2])
n4 = Node("n4")
n5 = Node("n5", [n3, n4])
tm = SCons.Taskmaster.Taskmaster([n5])
assert not tm.is_blocked()
t1 = tm.next_task()
assert t1.get_target() == n1
assert not tm.is_blocked()
t2 = tm.next_task()
assert t2.get_target() == n2
assert not tm.is_blocked()
t4 = tm.next_task()
assert t4.get_target() == n4
assert tm.is_blocked()
t4.executed()
assert tm.is_blocked()
t1.executed()
assert tm.is_blocked()
t2.executed()
assert not tm.is_blocked()
t3 = tm.next_task()
assert t3.get_target() == n3
assert tm.is_blocked()
t3.executed()
assert not tm.is_blocked()
t5 = tm.next_task()
assert t5.get_target() == n5, t5.get_target()
assert not tm.is_blocked()
assert tm.next_task() == None
n4 = Node("n4")
n4.set_state(SCons.Node.executed)
tm = SCons.Taskmaster.Taskmaster([n4])
assert tm.next_task() == None
n1 = Node("n1")
n2 = Node("n2", [n1])
tm = SCons.Taskmaster.Taskmaster([n2,n2])
t = tm.next_task()
assert tm.is_blocked()
t.executed()
assert not tm.is_blocked()
t = tm.next_task()
assert tm.next_task() == None
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1], [n2])
tm = SCons.Taskmaster.Taskmaster([n3])
t = tm.next_task()
target = t.get_target()
assert target == n1, target
t.executed()
t = tm.next_task()
target = t.get_target()
assert target == n2, target
t.executed()
t = tm.next_task()
target = t.get_target()
assert target == n3, target
t.executed()
assert tm.next_task() == None
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1, n2])
n4 = Node("n4", [n3])
n5 = Node("n5", [n3])
global scan_called
scan_called = 0
tm = SCons.Taskmaster.Taskmaster([n4])
t = tm.next_task()
assert t.get_target() == n1
t.executed()
t = tm.next_task()
assert t.get_target() == n2
t.executed()
t = tm.next_task()
assert t.get_target() == n3
t.executed()
t = tm.next_task()
assert t.get_target() == n4
t.executed()
assert tm.next_task() == None
assert scan_called == 4, scan_called
tm = SCons.Taskmaster.Taskmaster([n5])
t = tm.next_task()
assert t.get_target() == n5, t.get_target()
t.executed()
assert tm.next_task() == None
assert scan_called == 5, scan_called
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3")
n4 = Node("n4", [n1,n2,n3])
n5 = Node("n5", [n4])
n3.side_effect = 1
n1.side_effects = n2.side_effects = n3.side_effects = [n4]
tm = SCons.Taskmaster.Taskmaster([n1,n2,n3,n4,n5])
t = tm.next_task()
assert t.get_target() == n1
assert n4.state == SCons.Node.executing
assert tm.is_blocked()
t.executed()
assert not tm.is_blocked()
t = tm.next_task()
assert t.get_target() == n2
assert tm.is_blocked()
t.executed()
t = tm.next_task()
assert t.get_target() == n3
assert tm.is_blocked()
t.executed()
t = tm.next_task()
assert t.get_target() == n4
assert tm.is_blocked()
t.executed()
t = tm.next_task()
assert t.get_target() == n5
assert not tm.is_blocked()
assert not tm.next_task()
t.executed()
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3")
n4 = Node("n4", [n1,n2,n3])
def reverse(dependencies):
dependencies.reverse()
return dependencies
tm = SCons.Taskmaster.Taskmaster([n4], order=reverse)
t = tm.next_task()
assert t.get_target() == n3, t.get_target()
t.executed()
t = tm.next_task()
assert t.get_target() == n2, t.get_target()
t.executed()
t = tm.next_task()
assert t.get_target() == n1, t.get_target()
t.executed()
t = tm.next_task()
assert t.get_target() == n4, t.get_target()
t.executed()
def test_make_ready_exception(self):
"""Test handling exceptions from Task.make_ready()
"""
class MyTask(SCons.Taskmaster.Task):
def make_ready(self):
raise MyException, "from make_ready()"
n1 = Node("n1")
tm = SCons.Taskmaster.Taskmaster(targets = [n1], tasker = MyTask)
t = tm.next_task()
assert tm.exc_type == MyException, tm.exc_type
assert str(tm.exc_value) == "from make_ready()", tm.exc_value
def test_children_errors(self):
"""Test errors when fetching the children of a node.
"""
class StopNode(Node):
def children(self):
raise SCons.Errors.StopError, "stop!"
class ExitNode(Node):
def children(self):
sys.exit(77)
n1 = StopNode("n1")
tm = SCons.Taskmaster.Taskmaster([n1])
t = tm.next_task()
assert tm.exc_type == SCons.Errors.StopError, "Did not record StopError on node"
assert str(tm.exc_value) == "stop!", "Unexpected exc_value `%s'" % tm.exc_value
n2 = ExitNode("n2")
tm = SCons.Taskmaster.Taskmaster([n2])
t = tm.next_task()
assert tm.exc_type == SCons.Errors.ExplicitExit, "Did not record ExplicitExit on node"
assert tm.exc_value.node == n2, tm.exc_value.node
assert tm.exc_value.status == 77, tm.exc_value.status
def test_cycle_detection(self):
"""Test detecting dependency cycles
"""
n1 = Node("n1")
n2 = Node("n2", [n1])
n3 = Node("n3", [n2])
n1.kids = [n3]
n3.parents.append(n1)
try:
tm = SCons.Taskmaster.Taskmaster([n3])
t = tm.next_task()
except SCons.Errors.UserError, e:
assert str(e) == "Dependency cycle: n3 -> n1 -> n2 -> n3", str(e)
else:
assert 0
def test_is_blocked(self):
"""Test whether a task is blocked
Both default and overridden in a subclass.
"""
tm = SCons.Taskmaster.Taskmaster()
assert not tm.is_blocked()
class MyTM(SCons.Taskmaster.Taskmaster):
def is_blocked(self):
return 1
tm = MyTM()
assert tm.is_blocked() == 1
def test_stop(self):
"""Test the stop() method
Both default and overridden in a subclass.
"""
global built_text
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1, n2])
tm = SCons.Taskmaster.Taskmaster([n3])
t = tm.next_task()
t.prepare()
t.execute()
assert built_text == "n1 built", built_text
t.executed()
assert built_text == "n1 built really", built_text
tm.stop()
assert tm.next_task() is None
class MyTM(SCons.Taskmaster.Taskmaster):
def stop(self):
global built_text
built_text = "MyTM.stop()"
SCons.Taskmaster.Taskmaster.stop(self)
n1 = Node("n1")
n2 = Node("n2")
n3 = Node("n3", [n1, n2])
built_text = None
tm = MyTM([n3])
tm.next_task().execute()
assert built_text == "n1 built"
tm.stop()
assert built_text == "MyTM.stop()"
assert tm.next_task() is None
def test_executed(self):
"""Test when a task has been executed
"""
global built_text
global visited_nodes
n1 = Node("n1")
tm = SCons.Taskmaster.Taskmaster([n1])
t = tm.next_task()
built_text = "xxx"
visited_nodes = []
n1.set_state(SCons.Node.executing)
t.executed()
s = n1.get_state()
assert s == SCons.Node.executed, s
assert built_text == "xxx really", built_text
assert visited_nodes == [], visited_nodes
n2 = Node("n2")
tm = SCons.Taskmaster.Taskmaster([n2])
t = tm.next_task()
built_text = "should_not_change"
visited_nodes = []
n2.set_state(None)
t.executed()
s = n1.get_state()
assert s == SCons.Node.executed, s
assert built_text == "should_not_change", built_text
assert visited_nodes == ["n2"], visited_nodes
def test_prepare(self):
"""Test preparation of multiple Nodes for a task
"""
n1 = Node("n1")
n2 = Node("n2")
tm = SCons.Taskmaster.Taskmaster([n1, n2])
t = tm.next_task()
# This next line is moderately bogus. We're just reaching
# in and setting the targets for this task to an array. The
# "right" way to do this would be to have the next_task() call
# set it up by having something that approximates a real Builder
# return this list--but that's more work than is probably
# warranted right now.
t.targets = [n1, n2]
t.prepare()
assert n1.prepared
assert n2.prepared
def test_execute(self):
"""Test executing a task
"""
global built_text
n1 = Node("n1")
tm = SCons.Taskmaster.Taskmaster([n1])
t = tm.next_task()
t.execute()
assert built_text == "n1 built", built_text
def raise_UserError():
raise SCons.Errors.UserError
n2 = Node("n2")
n2.build = raise_UserError
tm = SCons.Taskmaster.Taskmaster([n2])
t = tm.next_task()
try:
t.execute()
except SCons.Errors.UserError:
pass
else:
raise TestFailed, "did not catch expected UserError"
def raise_BuildError():
raise SCons.Errors.BuildError
n3 = Node("n3")
n3.build = raise_BuildError
tm = SCons.Taskmaster.Taskmaster([n3])
t = tm.next_task()
try:
t.execute()
except SCons.Errors.BuildError:
pass
else:
raise TestFailed, "did not catch expected BuildError"
# On a generic (non-BuildError) exception from a Builder,
# the target should throw a BuildError exception with the
# args set to the exception value, instance, and traceback.
def raise_OtherError():
raise OtherError
n4 = Node("n4")
n4.build = raise_OtherError
tm = SCons.Taskmaster.Taskmaster([n4])
t = tm.next_task()
try:
t.execute()
except SCons.Errors.BuildError, e:
assert e.node == n4, e.node
assert e.errstr == "Exception", e.errstr
assert len(e.args) == 3, `e.args`
assert e.args[0] == OtherError, e.args[0]
assert isinstance(e.args[1], OtherError), type(e.args[1])
assert type(e.args[2]) == type(sys.exc_traceback), e.args[2]
else:
raise TestFailed, "did not catch expected BuildError"
# If the Node has had an exception recorded (during
# preparation), then execute() should raise that exception,
# not build the Node.
class MyException(Exception):
pass
built_text = None
n5 = Node("n5")
tm = SCons.Taskmaster.Taskmaster([n5])
tm.exc_type = MyException
tm.exc_value = "exception value"
t = tm.next_task()
exc_caught = None
try:
t.execute()
except MyException, v:
assert str(v) == "exception value", v
exc_caught = 1
assert exc_caught, "did not catch expected MyException"
assert built_text is None, built_text
def test_exception(self):
"""Test generic Taskmaster exception handling
"""
n1 = Node("n1")
tm = SCons.Taskmaster.Taskmaster([n1])
tm.exception_set(1, 2)
assert tm.exc_type == 1, tm.exc_type
assert tm.exc_value == 2, tm.exc_value
tm.exception_set(None, None)
assert tm.exc_type is None, tm.exc_type
assert tm.exc_value is None, tm.exc_value
tm.exception_set("exception 1", None)
try:
tm.exception_raise()
except:
assert sys.exc_type == "exception 1", sys.exc_type
assert sys.exc_value is None, sys.exc_type
else:
assert 0, "did not catch expected exception"
tm.exception_set("exception 2", "xyzzy")
try:
tm.exception_raise()
except:
assert sys.exc_type == "exception 2", sys.exc_type
assert sys.exc_value == "xyzzy", sys.exc_type
else:
assert 0, "did not catch expected exception"
if __name__ == "__main__":
suite = unittest.makeSuite(TaskmasterTestCase, 'test_')
if not unittest.TextTestRunner().run(suite).wasSuccessful():
sys.exit(1)
|