Only one SCons file uses urllib, and only one routine from that module, so
[scons.git] / test / site_scons / site_init.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 TestSCons
28 import sys
29
30 """
31 Verify site_scons/site_init.py file can define a tool, and it shows up
32 automatically in the SCons.Script namespace.
33 """
34
35 test = TestSCons.TestSCons()
36
37 test.subdir('site_scons')
38
39 if sys.platform == 'win32':
40     cat_cmd='type'
41 else:
42     cat_cmd='cat'
43
44 test.write(['site_scons', 'site_init.py'], """
45 def TOOL_FOO(env):
46       env['FOO'] = '%s'
47       bld = Builder(action = '$FOO ${SOURCE} > ${TARGET}',
48                                       suffix = '.tgt')
49       env.Append(BUILDERS = {'Foo' : bld})
50
51 """%cat_cmd)
52
53 test.write('SConstruct', """
54 e=Environment(tools=['default', TOOL_FOO])
55 e.Foo(target='foo.out', source='SConstruct')
56 """)
57
58 test.run(arguments = '-Q .',
59          stdout = """%s SConstruct > foo.out\n"""%cat_cmd)
60
61
62 """
63 Test errors in site_scons/site_init.py.
64 """
65
66 test = TestSCons.TestSCons()
67
68 test.subdir('site_scons')
69
70 test.write(['site_scons', 'site_init.py'], """
71 raise Exception("Huh?")
72 """)
73
74 test.write('SConstruct', """
75 e=Environment(tools=['default', TOOL_FOO])
76 e.Foo(target='foo.out', source='SConstruct')
77 """)
78
79 test.run(arguments = '-Q .',
80          stdout = "",
81          stderr = """.*Error loading site_init file.*Huh\?.*""",
82          status=2,
83          match=TestSCons.match_re_dotall)
84
85
86
87 test.pass_test()
88
89 # end of file
90
91 # Local Variables:
92 # tab-width:4
93 # indent-tabs-mode:nil
94 # End:
95 # vim: set expandtab tabstop=4 shiftwidth=4: