Portability fixes for tests.
[scons.git] / test / ToolSurrogate.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 that SCons supports use of a home-brew ToolSurrogate class
29 like we use in our bin/sconsexamples.py script.
30 """
31
32 import TestSCons
33
34 test = TestSCons.TestSCons()
35
36 test.write('SConstruct', """\
37 class Curry:
38     def __init__(self, fun, *args, **kwargs):
39         self.fun = fun
40         self.pending = args[:]
41         self.kwargs = kwargs.copy()
42
43     def __call__(self, *args, **kwargs):
44         if kwargs and self.kwargs:
45             kw = self.kwargs.copy()
46             kw.update(kwargs)
47         else:
48             kw = kwargs or self.kwargs
49
50         return apply(self.fun, self.pending + args, kw)
51
52 def Str(target, source, env, cmd=""):
53     return env.subst(cmd, target=target, source=source)
54
55 class ToolSurrogate:
56     def __init__(self, tool, variable, func):
57         self.tool = tool
58         self.variable = variable
59         self.func = func
60     def __call__(self, env):
61         t = Tool(self.tool)
62         t.generate(env)
63         orig = env[self.variable]
64         env[self.variable] = Action(self.func, strfunction=Curry(Str, cmd=orig))
65
66 def Cat(target, source, env):
67     target = str(target[0])
68     f = open(target, "wb")
69     for src in map(str, source):
70         f.write(open(src, "rb").read())
71     f.close()
72
73 ToolList = {
74     'posix' :   [('cc', 'CCCOM', Cat),
75                  ('link', 'LINKCOM', Cat)],
76     'win32' :   [('msvc', 'CCCOM', Cat),
77                  ('mslink', 'LINKCOM', Cat)]
78 }
79
80 platform = ARGUMENTS['platform']
81 tools = map(lambda t: apply(ToolSurrogate, t), ToolList[platform])
82
83 env = Environment(tools=tools, PROGSUFFIX='.exe', OBJSUFFIX='.obj')
84 env.Program('foo.c')
85 """)
86
87 test.write('foo.c', "foo.c posix\n")
88
89 test.run(arguments = '. platform=posix', stdout = test.wrap_stdout("""\
90 cc -c -o foo.obj foo.c
91 c++ -o foo.exe foo.obj
92 """))
93
94 test.write('foo.c', "foo.c win32\n")
95
96 test.run(arguments = '. platform=win32', stdout = test.wrap_stdout("""\
97 cl /nologo /c foo.c /Fofoo.obj
98 link /nologo /OUT:foo.exe foo.obj
99 """))
100
101 test.pass_test()