Merged revisions 1767-1783 via svnmerge from
[scons.git] / test / ParseConfig.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 sys
29
30 import TestCmd
31 import TestSCons
32
33 _python_ = TestSCons._python_
34
35 test = TestSCons.TestSCons()
36
37 test_config1 = test.workpath('test-config1')
38 test_config2 = test.workpath('test-config2')
39 test_config3 = test.workpath('test-config3')
40
41 # 'abc' is supposed to be a static lib; it is included in LIBS as a
42 # File node.
43 # It used to be returned as the 'static_libs' output of ParseConfig.
44 test.write(test_config1, """\
45 print "-I/usr/include/fum -Ibar -X -arch i386"
46 print "-L/usr/fax -Lfoo -lxxx abc"
47 """)
48
49 test.write(test_config2, """\
50 print "-L foo -L lib_dir"
51 """)
52
53 # This is like what wxWidgets does on OSX w/ Universal Binaries
54 test.write(test_config3, """\
55 print "-L foo -L lib_dir -isysroot /tmp -arch ppc -arch i386"
56 """)
57
58 test.write('SConstruct', """
59 env = Environment(CPPPATH = [], LIBPATH = [], LIBS = [], CCFLAGS = '')
60 env.ParseConfig([r'%(_python_)s', r"%(test_config1)s", "--libs --cflags"])
61 env.ParseConfig([r'%(_python_)s', r"%(test_config2)s", "--libs --cflags"])
62 print env['CPPPATH']
63 print env['LIBPATH']
64 print map(lambda x: str(x), env['LIBS'])
65 print env['CCFLAGS']
66 """ % locals())
67
68 test.write('SConstruct2', """
69 env = Environment(CPPPATH = [], LIBPATH = [], LIBS = [], CCFLAGS = '',
70                   PYTHON = r'%(_python_)s')
71 env.ParseConfig(r"$PYTHON %(test_config1)s --libs --cflags")
72 env.ParseConfig(r"$PYTHON %(test_config2)s --libs --cflags")
73 print env['CPPPATH']
74 print env['LIBPATH']
75 print map(lambda x: str(x), env['LIBS'])
76 print env['CCFLAGS']
77 """ % locals())
78
79 test.write('SConstruct3', """
80 env = Environment(CPPPATH = [], LIBPATH = [], LIBS = [], CCFLAGS = '',
81                   PYTHON = r'%(_python_)s')
82 env.ParseConfig(r"$PYTHON %(test_config3)s --libs --cflags")
83 print env['CPPPATH']
84 print env['LIBPATH']
85 print map(lambda x: str(x), env['LIBS'])
86 print env['CCFLAGS']
87 """ % locals())
88
89 good_stdout = test.wrap_stdout(read_str = """\
90 ['/usr/include/fum', 'bar']
91 ['/usr/fax', 'foo', 'lib_dir']
92 ['xxx', 'abc']
93 ['-X', ('-arch', 'i386')]
94 """, build_str = "scons: `.' is up to date.\n")
95
96 stdout3 = test.wrap_stdout(read_str = """\
97 []
98 ['foo', 'lib_dir']
99 []
100 [('-isysroot', '/tmp'), ('-arch', 'ppc'), ('-arch', 'i386')]
101 """, build_str = "scons: `.' is up to date.\n")
102
103 test.run(arguments = ".", stdout = good_stdout)
104
105 test.run(arguments = "-f SConstruct2 .", stdout = good_stdout)
106
107 test.run(arguments = "-f SConstruct3 .", stdout = stdout3)
108
109 test.pass_test()