Added fix for TeX includes with same name as subdirs.
[scons.git] / test / file-names.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 TestSCons
28
29 test = TestSCons.TestSCons()
30
31 # Right now, due to interaction with external quoting conventions,
32 # we do NOT actually support arbitrary characters in file names.
33 # (For example, double-quotes in a file name on POSIX break due
34 # to interaction with the "sh -c" quoting conventions.)
35 #
36 # This is a tough nut to crack, though.  Right now, we use the
37 # external command interpreters so we don't have to roll our own
38 # parsing and interpretation of redirection and piping.  But that
39 # means we have to find ways to work with *all* of their quoting
40 # conventions.
41 #
42 # Until we sort that all out, short-circuit this test so we can
43 # check it in and avoid having to re-invent this wheel later.
44 test.pass_test()
45
46 def contents(c):
47     return "|" + c + "|\n"
48
49 if sys.platform == 'win32':
50     def bad_char(c):
51         return c in '/\\:'
52 else:
53     def bad_char(c):
54         return c in '/'
55
56 # Only worry about ASCII characters right now.
57 # Someone with more Unicode knowledge should enhance this later.
58 for i in range(1, 255):
59     c = chr(i)
60     if not bad_char(c):
61         test.write("in" + c + "in", contents(c))
62
63 test.write('SConstruct', r"""
64 import sys
65 if sys.platform == 'win32':
66     def bad_char(c):
67         return (c == '/' or c == '\\' or c == ':')
68 else:
69     def bad_char(c):
70         return (c == '/')
71 env = Environment()
72 for i in range(1, 255):
73     c = chr(i)
74     if not bad_char(c):
75         if c in '$':
76             c = '\\' + c
77         infile = "in" + c + "in"
78         env.Command(c + "out", infile, "cp $SOURCE $TARGET")
79         env.Command("out" + c + "out", infile, "cp $SOURCE $TARGET")
80         env.Command("out" + c, infile, "cp $SOURCE $TARGET")
81 """)
82
83 test.run(arguments = '.')
84
85 for i in range(1, 255):
86     c = chr(i)
87     if not bad_char(c):
88         test.fail_test(test.read(c + "out") != contents(c))
89         test.fail_test(test.read("out" + c + "out") != contents(c))
90         test.fail_test(test.read("out" + c) != contents(c))
91
92 test.pass_test()
93
94 # Local Variables:
95 # tab-width:4
96 # indent-tabs-mode:nil
97 # End:
98 # vim: set expandtab tabstop=4 shiftwidth=4: