b3ed75566d37245a1cc480797ab9902f60172741
[scons.git] / test / Repository / M4.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 $M4 and $M4FLAGS work with repositories.
29 """
30
31 import os
32
33 import TestSCons
34
35 _python_ = TestSCons._python_
36
37 test = TestSCons.TestSCons()
38
39 test.subdir('work', 'repository', ['repository', 'src'])
40
41 test.write('mym4.py', """
42 import string
43 import sys
44 contents = sys.stdin.read()
45 sys.stdout.write(string.replace(contents, 'M4', 'mym4.py'))
46 sys.exit(0)
47 """)
48
49 mym4_py = test.workpath('mym4.py')
50
51
52
53 opts = "-Y " + test.workpath('repository')
54
55 test.write(['repository', 'SConstruct'], """\
56 env = Environment(M4 = r'%(_python_)s %(mym4_py)s', tools=['default', 'm4'])
57 env.M4(target = 'aaa.x', source = 'aaa.x.m4')
58 SConscript('src/SConscript', "env", variant_dir="build")
59 """ % locals())
60
61 test.write(['repository', 'aaa.x.m4'], """\
62 line 1
63 M4
64 line 3
65 """)
66
67 test.write(['repository', 'src', 'SConscript'], """
68 Import("env")
69 env.M4('bbb.y', 'bbb.y.m4')
70 """)
71
72 test.write(['repository', 'src', 'bbb.y.m4'], """\
73 line 1 M4
74 line 2
75 line 3 M4
76 """)
77
78 #
79 # Make the repository non-writable,
80 # so we'll detect if we try to write into it accidentally.
81 test.writable('repository', 0)
82
83 #
84 test.run(chdir = 'work', options = opts, arguments = ".")
85
86 expect_aaa_x = """\
87 line 1
88 mym4.py
89 line 3
90 """
91
92 expect_bbb_y = """\
93 line 1 mym4.py
94 line 2
95 line 3 mym4.py
96 """
97
98 test.fail_test(test.read(test.workpath('work', 'aaa.x'), 'r') != expect_aaa_x)
99 test.fail_test(test.read(test.workpath('work', 'build', 'bbb.y'), 'r') != expect_bbb_y)
100
101 #
102 test.pass_test()
103
104 # Local Variables:
105 # tab-width:4
106 # indent-tabs-mode:nil
107 # End:
108 # vim: set expandtab tabstop=4 shiftwidth=4: