http://scons.tigris.org/issues/show_bug.cgi?id=2345
[scons.git] / test / ENV.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 os
28
29 import TestSCons
30
31 _python_ = TestSCons._python_
32
33 test = TestSCons.TestSCons()
34
35 bin1_build_py = test.workpath('bin1', 'build.py')
36 bin2_build_py = test.workpath('bin2', 'build.py')
37
38 test.write('SConstruct', """
39 import os
40 Bld = Builder(action = r'%(_python_)s build.py $TARGET $SOURCES')
41 env1 = Environment(BUILDERS = { 'Bld' : Bld })
42 env2 = Environment(BUILDERS = { 'Bld' : Bld })
43 env1['ENV']['X'] = 'env1'
44 env2['ENV']['X'] = 'env2'
45 env1.Bld(target = 'env1.out', source = 'input')
46 env2.Bld(target = 'env2.out', source = 'input')
47 """ % locals())
48
49 test.write('build.py',
50 r"""#!/usr/bin/env python
51 import os
52 import sys
53 contents = open(sys.argv[2], 'rb').read()
54 open(sys.argv[1], 'wb').write("build.py %s\n%s" % (os.environ['X'], contents))
55 """)
56
57 test.write('input', "input file\n")
58
59 test.run(arguments = '.')
60
61 test.fail_test(test.read('env1.out') != "build.py env1\ninput file\n")
62 test.fail_test(test.read('env2.out') != "build.py env2\ninput file\n")
63
64
65 test.write('SConstruct', """
66 env = Environment()
67 foo = env.Command('foo', [], r'%(_python_)s build.py $TARGET')
68 env['ENV']['LIST'] = [foo, 'bar']
69 env['ENV']['FOO'] = foo
70 """ % locals())
71
72 test.write('build.py',
73 r"""
74 import os
75 print 'LIST:', os.environ['LIST']
76 print 'FOO:', os.environ['FOO']
77 """)
78
79 test.run()
80
81 expect = [
82     "LIST: foo%sbar" % os.pathsep,
83     "FOO: foo",
84 ]
85
86 test.must_contain_all_lines(test.stdout(), expect)
87
88 test.pass_test()
89
90 # Local Variables:
91 # tab-width:4
92 # indent-tabs-mode:nil
93 # End:
94 # vim: set expandtab tabstop=4 shiftwidth=4: