4fe4bd0b62ec21e08b73a08025a7370505c48977
[scons.git] / test / Install / InstallAs.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 the InstallAs() Environment method.
29 """
30
31 import os.path
32 import sys
33 import TestSCons
34
35 test = TestSCons.TestSCons()
36
37 test.subdir('install', 'subdir')
38
39 install = test.workpath('install')
40 install_file1_out = test.workpath('install', 'file1.out')
41 install_file2_out = test.workpath('install', 'file2.out')
42 install_file3_out = test.workpath('install', 'file3.out')
43
44 #
45 test.write('SConstruct', r"""
46 env = Environment(INSTALLDIR=r'%s', SUBDIR='subdir')
47 InstallAs(r'%s', 'file1.in')
48 env.InstallAs([r'%s', r'%s'], ['file2.in', r'%s'])
49 """ % (install,
50        install_file1_out,
51        os.path.join('$INSTALLDIR', 'file2.out'),
52        install_file3_out,
53        os.path.join('$SUBDIR', 'file3.in')))
54
55 test.write('file1.in', "file1.in\n")
56 test.write('file2.in', "file2.in\n")
57 test.write(['subdir', 'file3.in'], "subdir/file3.in\n")
58
59 install_file1_out = os.path.join('install', 'file1.out')
60 install_file2_out = os.path.join('install', 'file2.out')
61 install_file3_out = os.path.join('install', 'file3.out')
62
63 subdir_file3_in = os.path.join('subdir', 'file3.in')
64
65 expect = test.wrap_stdout("""\
66 Install file: "file1.in" as "%(install_file1_out)s"
67 Install file: "file2.in" as "%(install_file2_out)s"
68 Install file: "%(subdir_file3_in)s" as "%(install_file3_out)s"
69 """ % locals())
70
71 test.run(arguments = '.', stdout=expect)
72
73 test.fail_test(test.read(install_file1_out) != "file1.in\n")
74 test.fail_test(test.read(install_file2_out) != "file2.in\n")
75 test.fail_test(test.read(install_file3_out) != "subdir/file3.in\n")
76
77 test.up_to_date(arguments = '.')
78
79 #
80 test.pass_test()