Update Copyright lines for the new year.
[scons.git] / test / LEX.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2001, 2002 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 os
28 import os.path
29 import string
30 import sys
31 import TestSCons
32
33 python = sys.executable
34
35 if sys.platform == 'win32':
36     _exe = '.exe'
37 else:
38     _exe = ''
39
40 lex = None
41 for dir in string.split(os.environ['PATH'], os.pathsep):
42     l = os.path.join(dir, 'lex' + _exe)
43     if os.path.exists(l):
44         lex = l
45         break
46
47 test = TestSCons.TestSCons()
48
49 test.no_result(not lex)
50
51 test.write("wrapper.py",
52 """import os
53 import string
54 import sys
55 open('%s', 'wb').write("wrapper.py\\n")
56 os.system(string.join(sys.argv[1:], " "))
57 """ % string.replace(test.workpath('wrapper.out'), '\\', '\\\\'))
58
59 test.write('SConstruct', """
60 foo = Environment()
61 lex = foo.Dictionary('LEX')
62 bar = Environment(LEX = r'%s wrapper.py ' + lex)
63 foo.Program(target = 'foo', source = 'foo.l')
64 bar.Program(target = 'bar', source = 'bar.l')
65 """ % python)
66
67 lex = r"""
68 %%%%
69 a       printf("A%sA");
70 b       printf("B%sB");
71 %%%%
72 int
73 yywrap()
74 {
75     return 1;
76 }
77
78 main()
79 {
80     yylex();
81 }
82 """
83
84 test.write('foo.l', lex % ('foo.l', 'foo.l'))
85
86 test.write('bar.l', lex % ('bar.l', 'bar.l'))
87
88 test.run(arguments = 'foo' + _exe, stderr = None)
89
90 test.fail_test(os.path.exists(test.workpath('wrapper.out')))
91
92 test.run(program = test.workpath('foo'), stdin = "a\n", stdout = "Afoo.lA\n")
93
94 test.run(arguments = 'bar' + _exe)
95
96 test.fail_test(test.read('wrapper.out') != "wrapper.py\n")
97
98 test.run(program = test.workpath('bar'), stdin = "b\n", stdout = "Bbar.lB\n")
99
100 test.pass_test()