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