Escape path names to fix regular expression matches on Windows
[scons.git] / test / SConscriptChdir.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
30 test = TestSCons.TestSCons()
31
32 test.subdir('dir1', 'dir2', 'dir3', 'dir4', 'dir5')
33
34 test.write('SConstruct', """
35 env = Environment()
36 SConscript('dir1/SConscript')
37 SConscriptChdir(1)
38 SConscript('dir2/SConscript')
39 SConscriptChdir(0)
40 SConscript('dir3/SConscript')
41 env.SConscriptChdir(1)
42 SConscript('dir4/SConscript')
43 env.SConscriptChdir(0)
44 SConscript('dir5/SConscript')
45 """)
46
47 test.write(['dir1', 'SConscript'], """
48 execfile("create_test.py")
49 """)
50
51 test.write(['dir2', 'SConscript'], """
52 execfile("create_test.py")
53 """)
54
55 test.write(['dir3', 'SConscript'], """
56 import os.path
57 name = os.path.join('dir3', 'create_test.py')
58 execfile(name)
59 """)
60
61 test.write(['dir4', 'SConscript'], """
62 execfile("create_test.py")
63 """)
64
65 test.write(['dir5', 'SConscript'], """
66 import os.path
67 name = os.path.join('dir5', 'create_test.py')
68 execfile(name)
69 """)
70
71 for dir in ['dir1', 'dir2', 'dir3','dir4', 'dir5']:
72     test.write([dir, 'create_test.py'], r"""
73 f = open("test.txt", "ab")
74 f.write("This is the %s test.\n")
75 f.close()
76 """ % dir)
77
78 test.run(arguments=".", stderr=None)
79
80 test.fail_test(test.read(['dir1', 'test.txt']) != "This is the dir1 test.\n")
81 test.fail_test(test.read(['dir2', 'test.txt']) != "This is the dir2 test.\n")
82 test.fail_test(test.read('test.txt') != "This is the dir3 test.\nThis is the dir5 test.\n")
83 test.fail_test(test.read(['dir4', 'test.txt']) != "This is the dir4 test.\n")
84
85 test.pass_test()