Support Java when using Repository and SConscriptChdir(0). (Charles Crain)
[scons.git] / test / Repository / within-repository.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 sys
28 import TestSCons
29
30 if sys.platform == 'win32':
31     _exe = '.exe'
32 else:
33     _exe = ''
34
35
36
37 test = TestSCons.TestSCons()
38
39 #
40 test.subdir('repository', ['repository', 'src'])
41
42 #
43 workpath_repository = test.workpath('repository')
44 repository_foo = test.workpath('repository', 'foo' + _exe)
45 repository_src_bar = test.workpath('repository', 'src', 'bar' + _exe)
46
47 #
48 test.write(['repository', 'SConstruct'], """
49 Repository(r'%s')
50 SConscript('src/SConscript')
51 env = Environment()
52 env.Program(target = 'foo', source = ['aaa.c', 'bbb.c', 'foo.c'])
53 """ % workpath_repository)
54
55 test.write(['repository', 'aaa.c'], r"""
56 void
57 aaa(void)
58 {
59         printf("repository/aaa.c\n");
60 }
61 """)
62
63 test.write(['repository', 'bbb.c'], r"""
64 void
65 bbb(void)
66 {
67         printf("repository/bbb.c\n");
68 }
69 """)
70
71 test.write(['repository', 'foo.c'], r"""
72 extern void aaa(void);
73 extern void bbb(void);
74 int
75 main(int argc, char *argv[])
76 {
77         argv[argc++] = "--";
78         aaa();
79         bbb();
80         printf("repository/foo.c\n");
81         exit (0);
82 }
83 """)
84
85 test.write(['repository', 'src', 'SConscript'], """
86 env = Environment()
87 env.Program(target = 'bar', source = ['aaa.c', 'bbb.c', 'bar.c'])
88 """)
89
90 test.write(['repository', 'src', 'aaa.c'], r"""
91 void
92 aaa(void)
93 {
94         printf("repository/src/aaa.c\n");
95 }
96 """)
97
98 test.write(['repository', 'src', 'bbb.c'], r"""
99 void
100 bbb(void)
101 {
102         printf("repository/src/bbb.c\n");
103 }
104 """)
105
106 test.write(['repository', 'src', 'bar.c'], r"""
107 extern void aaa(void);
108 extern void bbb(void);
109 int
110 main(int argc, char *argv[])
111 {
112         argv[argc++] = "--";
113         aaa();
114         bbb();
115         printf("repository/src/bar.c\n");
116         exit (0);
117 }
118 """)
119
120 #
121 test.run(chdir = 'repository', arguments = ".")
122
123 test.run(program = repository_foo, stdout =
124 """repository/aaa.c
125 repository/bbb.c
126 repository/foo.c
127 """)
128
129 test.run(program = repository_src_bar, stdout =
130 """repository/src/aaa.c
131 repository/src/bbb.c
132 repository/src/bar.c
133 """)
134
135 #
136 test.up_to_date(chdir = 'repository', arguments = ".")
137
138 #
139 test.pass_test()