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