Update tests for now discovering dependencies on quoted commands
[scons.git] / test / explain / function-actions.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Verify that --debug=explain correctly handles changes to actions
29 that contain a list of function Actions.
30 """
31
32 import os.path
33 import string
34 import sys
35 import TestSCons
36
37 _python_ = TestSCons._python_
38
39 test = TestSCons.TestSCons()
40
41
42
43 test.write('SConstruct', """\
44 import shutil
45
46 env = Environment()
47 mode = int(ARGUMENTS.get('mode'))
48 if mode:
49     def DifferentCopy(target, source, env):
50         tgt = str(target[0])
51         src = str(source[0])
52         shutil.copy(src, tgt)
53     def AltCopyStage2(target, source, env):
54         pass
55     MyCopy = Builder(action = [DifferentCopy, AltCopyStage2])
56
57     def ChangingCopy(target, source, env):
58         tgt = str(target[0])
59         src = str(source[0])
60         shutil.copy(src, tgt)
61     ChangingCopy = Builder(action = ChangingCopy)
62 else:
63     MyCopy = Builder(action = Copy('$TARGET', '$SOURCE'))
64     def ChangingCopy(target, source, env):
65         tgt = str(target[0].abspath)
66         src = str(source[0].abspath)
67         shutil.copy(src, tgt)
68     ChangingCopy = Builder(action = ChangingCopy)
69
70 env['BUILDERS']['MyCopy'] = MyCopy
71 env['BUILDERS']['ChangingCopy'] = ChangingCopy
72
73 env.MyCopy('f1.out', 'f1.in')
74 env.ChangingCopy('f2.out', 'f2.in')
75 """)
76
77 test.write('f1.in', "f1.in\n")
78 test.write('f2.in', "f2.in\n")
79
80 test.run(arguments = "mode=0 .")
81
82 test.must_match('f1.out', "f1.in\n")
83 test.must_match('f2.out', "f2.in\n")
84
85 test.run(arguments = "--debug=explain mode=1 .",
86          stdout = test.wrap_stdout("""\
87 scons: rebuilding `f1.out' because the build action changed:
88                old: Copy("$TARGET", "$SOURCE")
89                new: DifferentCopy(target, source, env)
90                     AltCopyStage2(target, source, env)
91 DifferentCopy(["f1.out"], ["f1.in"])
92 AltCopyStage2(["f1.out"], ["f1.in"])
93 scons: rebuilding `f2.out' because the contents of the build action changed
94                action: ChangingCopy(target, source, env)
95 ChangingCopy(["f2.out"], ["f2.in"])
96 """))
97
98
99
100 test.pass_test()