Support construction variable expansion anywhere in a file or path name.
[scons.git] / test / LEX.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 import os.path
29 import string
30 import sys
31 import TestSCons
32
33 python = TestSCons.python
34 _exe   = TestSCons._exe
35
36 test = TestSCons.TestSCons()
37
38
39
40 test.write('mylex.py', """
41 import getopt
42 import string
43 import sys
44 cmd_opts, args = getopt.getopt(sys.argv[1:], 't', [])
45 for a in args:
46     contents = open(a, 'rb').read()
47     sys.stdout.write(string.replace(contents, 'LEX', 'mylex.py'))
48 sys.exit(0)
49 """)
50
51 test.write('SConstruct', """
52 env = Environment(LEX = r'%s mylex.py', tools=['default', 'lex'])
53 env.Program(target = 'aaa', source = 'aaa.l')
54 """ % python)
55
56 test.write('aaa.l', r"""
57 int
58 main(int argc, char *argv[])
59 {
60         argv[argc++] = "--";
61         printf("LEX\n");
62         printf("aaa.l\n");
63         exit (0);
64 }
65 """)
66
67 test.run(arguments = 'aaa' + _exe, stderr = None)
68
69 test.run(program = test.workpath('aaa' + _exe), stdout = "mylex.py\naaa.l\n")
70
71
72
73 lex = test.where_is('lex')
74
75 if lex:
76
77     test.write("wrapper.py", """import os
78 import string
79 import sys
80 open('%s', 'wb').write("wrapper.py\\n")
81 os.system(string.join(sys.argv[1:], " "))
82 """ % string.replace(test.workpath('wrapper.out'), '\\', '\\\\'))
83
84     test.write('SConstruct', """
85 foo = Environment()
86 lex = foo.Dictionary('LEX')
87 bar = Environment(LEX = r'%s wrapper.py ' + lex)
88 foo.Program(target = 'foo', source = 'foo.l')
89 bar.Program(target = 'bar', source = 'bar.l')
90 """ % python)
91
92     lex = r"""
93 %%%%
94 a       printf("A%sA");
95 b       printf("B%sB");
96 %%%%
97 int
98 yywrap()
99 {
100     return 1;
101 }
102
103 main()
104 {
105     yylex();
106 }
107 """
108
109     test.write('foo.l', lex % ('foo.l', 'foo.l'))
110
111     test.write('bar.l', lex % ('bar.l', 'bar.l'))
112
113     test.run(arguments = 'foo' + _exe, stderr = None)
114
115     test.fail_test(os.path.exists(test.workpath('wrapper.out')))
116
117     test.run(program = test.workpath('foo'), stdin = "a\n", stdout = "Afoo.lA\n")
118
119     test.run(arguments = 'bar' + _exe)
120
121     test.fail_test(test.read('wrapper.out') != "wrapper.py\n")
122
123     test.run(program = test.workpath('bar'), stdin = "b\n", stdout = "Bbar.lB\n")
124
125 test.pass_test()