Expanded SCons.Scanner.LaTeX.comment_re to not break on \%
[scons.git] / test / TEX / TEXFLAGS.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 os
28
29 import TestSCons
30
31 _python_ = TestSCons._python_
32
33 test = TestSCons.TestSCons()
34
35
36
37 test.write('mytex.py', r"""
38 import getopt
39 import os
40 import sys
41 cmd_opts, args = getopt.getopt(sys.argv[1:], 'tx', [])
42 opt_string = ''
43 for opt, arg in cmd_opts:
44     opt_string = opt_string + ' ' + opt
45 base_name = os.path.splitext(args[0])[0]
46 infile = open(args[0], 'rb')
47 out_file = open(base_name+'.dvi', 'wb')
48 out_file.write(opt_string + "\n")
49 for l in infile.readlines():
50     if l[0] != '\\':
51         out_file.write(l)
52 sys.exit(0)
53 """)
54
55 test.write('SConstruct', """
56 env = Environment(TEX = r'%(_python_)s mytex.py',
57                   TEXFLAGS = '-x',
58                   tools=['tex'])
59 env.DVI(target = 'test.dvi', source = 'test.tex')
60 """ % locals())
61
62 test.write('test.tex', r"""This is a test.
63 \end
64 """)
65
66 test.run(arguments = 'test.dvi', stderr = None)
67
68 test.fail_test(test.read('test.dvi') != " -x\nThis is a test.\n")
69
70
71
72 tex = test.where_is('tex')
73
74 if tex:
75
76     test.write("wrapper.py", """import os
77 import sys
78 open('%s', 'wb').write("wrapper.py\\n")
79 os.system(" ".join(sys.argv[1:]))
80 """ % test.workpath('wrapper.out').replace('\\', '\\\\'))
81
82     test.write('SConstruct', """
83 import os
84 ENV = { 'PATH' : os.environ['PATH'] }
85 foo = Environment(ENV = ENV, TEXFLAGS = '--output-comment Commentary')
86 tex = foo.Dictionary('TEX')
87 bar = Environment(ENV = ENV, TEX = r'%(_python_)s wrapper.py ' + tex)
88 foo.DVI(target = 'foo.dvi', source = 'foo.tex')
89 bar.DVI(target = 'bar', source = 'bar.tex')
90 """ % locals())
91
92     tex = r"""
93 This is the %s TeX file.
94 \end
95 """
96
97     test.write('foo.tex', tex % 'foo.tex')
98
99     test.write('bar.tex', tex % 'bar.tex')
100
101     test.run(arguments = 'foo.dvi', stderr = None)
102
103     test.fail_test(os.path.exists(test.workpath('wrapper.out')))
104
105     test.fail_test(not os.path.exists(test.workpath('foo.dvi')))
106
107     test.run(arguments = 'bar.dvi', stderr = None)
108
109     test.fail_test(not os.path.exists(test.workpath('wrapper.out')))
110
111     test.fail_test(not os.path.exists(test.workpath('bar.dvi')))
112
113 test.pass_test()
114
115 # Local Variables:
116 # tab-width:4
117 # indent-tabs-mode:nil
118 # End:
119 # vim: set expandtab tabstop=4 shiftwidth=4: