5 # Copyright The SCons Foundation
7 # Permission is hereby granted, free of charge, to any person obtaining
8 # a copy of this software and associated documentation files (the
9 # "Software"), to deal in the Software without restriction, including
10 # without limitation the rights to use, copy, modify, merge, publish,
11 # distribute, sublicense, and/or sell copies of the Software, and to
12 # permit persons to whom the Software is furnished to do so, subject to
13 # the following conditions:
15 # The above copyright notice and this permission notice shall be included
16 # in all copies or substantial portions of the Software.
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
19 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
20 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 _python_
= TestSCons
._python
_
32 test
= TestSCons
.TestSCons()
36 test
.write('mytex.py', r
"""
40 cmd_opts, args = getopt.getopt(sys.argv[1:], 'tx', [])
42 for opt, arg in cmd_opts:
43 opt_string = opt_string + ' ' + opt
44 base_name = os.path.splitext(args[0])[0]
45 with open(base_name+'.dvi', 'w') as ofp, open(args[0], 'r') as ifp:
46 ofp.write(opt_string + "\n")
47 for l in ifp.readlines():
53 test
.write('SConstruct', """
54 env = Environment(TEX = r'%(_python_)s mytex.py',
57 env.DVI(target = 'test.dvi', source = 'test.tex')
60 test
.write('test.tex', r
"""This is a test.
64 test
.run(arguments
= 'test.dvi', stderr
= None)
66 test
.must_match('test.dvi'," -x\nThis is a test.\n", mode
='r')
70 # TODO: split this test? Taking a skip here invalidates the above, too
71 tex
= test
.where_is('tex')
74 test
.file_fixture('wrapper.py')
76 test
.write('SConstruct', """
78 ENV = { 'PATH' : os.environ['PATH'] }
79 foo = Environment(ENV = ENV, TEXFLAGS = '--output-comment Commentary')
80 tex = foo.Dictionary('TEX')
81 bar = Environment(ENV = ENV, TEX = r'%(_python_)s wrapper.py ' + tex)
82 foo.DVI(target = 'foo.dvi', source = 'foo.tex')
83 bar.DVI(target = 'bar', source = 'bar.tex')
87 This is the %s TeX file.
91 test
.write('foo.tex', tex
% 'foo.tex')
93 test
.write('bar.tex', tex
% 'bar.tex')
95 test
.run(arguments
= 'foo.dvi', stderr
= None)
97 test
.fail_test(os
.path
.exists(test
.workpath('wrapper.out')))
99 test
.fail_test(not os
.path
.exists(test
.workpath('foo.dvi')))
101 test
.run(arguments
= 'bar.dvi', stderr
= None)
103 test
.fail_test(not os
.path
.exists(test
.workpath('wrapper.out')))
105 test
.fail_test(not os
.path
.exists(test
.workpath('bar.dvi')))
111 # indent-tabs-mode:nil
113 # vim: set expandtab tabstop=4 shiftwidth=4: