Eliminate unnecessary WIN32/Win32/win32 references in tests, too.
[scons.git] / test / option--D.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 import sys
28 import TestSCons
29 import os
30
31 python = TestSCons.python
32
33 test = TestSCons.TestSCons()
34
35 test.subdir('sub1', 'sub2')
36
37 test.write('build.py', r"""
38 import sys
39 contents = open(sys.argv[2], 'rb').read()
40 file = open(sys.argv[1], 'wb')
41 file.write(contents)
42 file.close()
43 """)
44
45 test.write('SConstruct', """
46 import SCons.Defaults
47 B = Builder(action=r'%s build.py $TARGET $SOURCES')
48 env = Environment()
49 env['BUILDERS']['B'] = B
50 env.B(target = 'sub1/foo.out', source = 'sub1/foo.in')
51 Export('env')
52 SConscript('sub1/SConscript')
53 SConscript('sub2/SConscript')
54 """ % python)
55
56 test.write(['sub1', 'SConscript'], """
57 Import('env')
58 env.B(target = 'foo.out', source = 'foo.in')
59 Default('.')
60 """)
61
62 test.write(['sub1', 'foo.in'], "sub1/foo.in")
63
64 test.write(['sub2', 'SConscript'], """
65 Import('env')
66 env.Alias('bar', env.B(target = 'bar.out', source = 'bar.in'))
67 Default('.')
68
69 """)
70
71 test.write(['sub2', 'bar.in'], "sub2/bar.in")
72
73 test.run(arguments = '-D', chdir = 'sub1')
74
75 test.fail_test(test.read(['sub1', 'foo.out']) != "sub1/foo.in")
76 test.fail_test(test.read(['sub2', 'bar.out']) != "sub2/bar.in")
77
78 test.unlink(['sub1', 'foo.out'])
79 test.unlink(['sub2', 'bar.out'])
80
81 test.run(arguments = '-D bar', chdir = 'sub1')
82
83 test.fail_test(os.path.exists(test.workpath('sub1', 'foo.out')))
84 test.fail_test(not os.path.exists(test.workpath('sub2', 'bar.out')))
85
86 # Make sure explicit targets beginning with ../ get built.
87 test.subdir('sub6', ['sub6', 'dir'])
88
89 test.write(['sub6', 'SConstruct'], """\
90 def cat(env, source, target):
91     target = str(target[0])
92     source = map(str, source)
93     f = open(target, "wb")
94     for src in source:
95         f.write(open(src, "rb").read())
96     f.close()
97 env = Environment(BUILDERS={'Cat':Builder(action=cat)})
98 env.Cat('f1.out', 'f1.in')
99 f2 = env.Cat('f2.out', 'f2.in')
100 Default(f2)
101 SConscript('dir/SConscript', "env")
102 """)
103
104 test.write(['sub6', 'f1.in'], "f1.in\n")
105 test.write(['sub6', 'f2.in'], "f2.in\n")
106
107 test.write(['sub6', 'dir', 'SConscript'], """\
108 Import("env")
109 f3 = env.Cat('f3.out', 'f3.in')
110 env.Cat('f4.out', 'f4.in')
111 Default(f3)
112 """)
113
114 test.write(['sub6', 'dir', 'f3.in'], "f3.in\n")
115 test.write(['sub6', 'dir', 'f4.in'], "f4.in\n")
116
117 test.run(chdir = 'sub6/dir', arguments = '-D ../f1.out')
118
119 test.fail_test(not os.path.exists(test.workpath('sub6', 'f1.out')))
120 test.fail_test(os.path.exists(test.workpath('sub6', 'f2.out')))
121 test.fail_test(os.path.exists(test.workpath('sub6', 'dir', 'f3.out')))
122 test.fail_test(os.path.exists(test.workpath('sub6', 'dir', 'f4.out')))
123
124
125 test.pass_test()