A test case for my last commit.
[scons.git] / test / expansion.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 """
28 Test construction variable expansion in Builder paths.
29 """
30
31 import os.path
32 import sys
33 import time
34 import TestSCons
35
36 _exe = TestSCons._exe
37 _obj = TestSCons._obj
38
39 test = TestSCons.TestSCons()
40
41 test.subdir('sub')
42
43 test.write('SConstruct', """\
44 env = Environment(SUBDIR = 'sub')
45 env.Program(target = 'foo1', source = env.Object(source = r'%s'))
46 env.Program(source = env.Object(target = r'%s', source = 'f2.c'))
47 env.Program('foo3', r'%s')
48 env.Program(r'%s')
49 """ % (os.path.join('$SUBDIR', 'f1.c'),
50        os.path.join('$SUBDIR', 'foo2'),
51        os.path.join('$SUBDIR', 'f3.c'),
52        os.path.join('$SUBDIR', 'foo4.c')))
53
54 test.write(['sub', 'f1.c'], r"""
55 #include <stdio.h>
56 #include <stdlib.h>
57 int
58 main(int argc, char *argv[])
59 {
60         argv[argc++] = "--";
61         printf("sub/f1.c\n");
62         exit (0);
63 }
64 """)
65
66 test.write('f2.c', r"""
67 #include <stdio.h>
68 #include <stdlib.h>
69 int
70 main(int argc, char *argv[])
71 {
72         argv[argc++] = "--";
73         printf("f2.c\n");
74         exit (0);
75 }
76 """)
77
78 test.write(['sub', 'f3.c'], r"""
79 #include <stdio.h>
80 #include <stdlib.h>
81 int
82 main(int argc, char *argv[])
83 {
84         argv[argc++] = "--";
85         printf("sub/f3.c\n");
86         exit (0);
87 }
88 """)
89
90 test.write(['sub', 'foo4.c'], r"""
91 #include <stdio.h>
92 #include <stdlib.h>
93 int
94 main(int argc, char *argv[])
95 {
96         argv[argc++] = "--";
97         printf("sub/foo4.c\n");
98         exit (0);
99 }
100 """)
101
102 test.run(arguments = '.')
103
104 test.run(program = test.workpath('foo1' + _exe), stdout = "sub/f1.c\n")
105 test.run(program = test.workpath('sub', 'foo2' + _exe), stdout = "f2.c\n")
106 test.run(program = test.workpath('foo3' + _exe), stdout = "sub/f3.c\n")
107 test.run(program = test.workpath('sub','foo4' + _exe), stdout = "sub/foo4.c\n")
108
109 test.fail_test(not os.path.exists(test.workpath('sub', 'f1' + _obj)))
110 test.fail_test(not os.path.exists(test.workpath('sub', 'foo2' + _obj)))
111 test.fail_test(not os.path.exists(test.workpath('sub', 'f3' + _obj)))
112 test.fail_test(not os.path.exists(test.workpath('sub', 'foo4' + _obj)))
113
114 test.up_to_date(arguments = '.')
115
116 test.pass_test()