More command-line customizability: , , , , .
[scons.git] / test / TEX / LATEX.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 import os.path
29 import string
30 import sys
31 import TestSCons
32
33 python = TestSCons.python
34
35 test = TestSCons.TestSCons()
36
37
38
39 test.write('mylatex.py', r"""
40 import sys
41 import os
42 base_name = os.path.splitext(sys.argv[1])[0]
43 infile = open(sys.argv[1], 'rb')
44 out_file = open(base_name+'.dvi', 'wb')
45 for l in infile.readlines():
46     if l[0] != '\\':
47         out_file.write(l)
48 sys.exit(0)
49 """)
50
51 test.write('SConstruct', """
52 env = Environment(LATEX = r'%s mylatex.py', tools=['latex'])
53 env.DVI(target = 'test1.dvi', source = 'test1.ltx')
54 env.DVI(target = 'test2.dvi', source = 'test2.latex')
55 """ % python)
56
57 test.write('test1.ltx', r"""This is a .ltx test.
58 \end
59 """)
60
61 test.write('test2.latex', r"""This is a .latex test.
62 \end
63 """)
64
65 test.run(arguments = '.', stderr = None)
66
67 test.fail_test(test.read('test1.dvi') != "This is a .ltx test.\n")
68
69 test.fail_test(test.read('test2.dvi') != "This is a .latex test.\n")
70
71
72
73 latex = test.where_is('latex')
74
75 if latex:
76
77     test.write("wrapper.py", """import os
78 import string
79 import sys
80 open('%s', 'wb').write("wrapper.py\\n")
81 os.system(string.join(sys.argv[1:], " "))
82 """ % string.replace(test.workpath('wrapper.out'), '\\', '\\\\'))
83
84     test.write('SConstruct', """
85 import os
86 ENV = { 'PATH' : os.environ['PATH'] }
87 foo = Environment(ENV = ENV)
88 latex = foo.Dictionary('LATEX')
89 bar = Environment(ENV = ENV, LATEX = r'%s wrapper.py ' + latex)
90 foo.DVI(target = 'foo.dvi', source = 'foo.ltx')
91 bar.DVI(target = 'bar', source = 'bar.latex')
92 """ % python)
93
94     latex = r"""
95 \documentclass{letter}
96 \begin{document}
97 This is the %s LaTeX file.
98 \end{document}
99 """
100
101     test.write('foo.ltx', latex % 'foo.ltx')
102
103     test.write('bar.latex', latex % 'bar.latex')
104
105     test.run(arguments = 'foo.dvi', stderr = None)
106
107     test.fail_test(os.path.exists(test.workpath('wrapper.out')))
108
109     test.fail_test(not os.path.exists(test.workpath('foo.dvi')))
110
111     test.run(arguments = 'bar.dvi', stderr = None)
112
113     test.fail_test(test.read('wrapper.out') != "wrapper.py\n")
114
115     test.fail_test(not os.path.exists(test.workpath('bar.dvi')))
116
117 test.pass_test()