diff options
author | Steven Knight <knight@baldmt.com> | 2002-03-27 16:48:32 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-03-27 16:48:32 (GMT) |
commit | 2fc00deefae65e7cd54f96518bedc62b763e0dda (patch) | |
tree | 6e8af6f71511d9eb97c3d3f299b71aef20dd283c /test/DVIPS.py | |
parent | 052a3dd4b1ee1d40e12de1436af9d9f183bd6516 (diff) | |
download | SCons-2fc00deefae65e7cd54f96518bedc62b763e0dda.zip SCons-2fc00deefae65e7cd54f96518bedc62b763e0dda.tar.gz SCons-2fc00deefae65e7cd54f96518bedc62b763e0dda.tar.bz2 |
Add more document Builders: PDF and PostScript.
Diffstat (limited to 'test/DVIPS.py')
-rw-r--r-- | test/DVIPS.py | 185 |
1 files changed, 185 insertions, 0 deletions
diff --git a/test/DVIPS.py b/test/DVIPS.py new file mode 100644 index 0000000..91900be --- /dev/null +++ b/test/DVIPS.py @@ -0,0 +1,185 @@ +#!/usr/bin/env python +# +# Copyright (c) 2001, 2002 Steven Knight +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + +__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" + +import os +import os.path +import string +import sys +import TestSCons + +python = sys.executable + +if sys.platform == 'win32': + _exe = '.exe' +else: + _exe = '' + +test = TestSCons.TestSCons() + + + +test.write('mytex.py', r""" +import os +import sys +base_name = os.path.splitext(sys.argv[1])[0] +infile = open(sys.argv[1], 'rb') +out_file = open(base_name+'.dvi', 'wb') +for l in infile.readlines(): + if l[:4] != '#tex': + out_file.write(l) +sys.exit(0) +""") + +test.write('mylatex.py', r""" +import os +import sys +base_name = os.path.splitext(sys.argv[1])[0] +infile = open(sys.argv[1], 'rb') +out_file = open(base_name+'.dvi', 'wb') +for l in infile.readlines(): + if l[:6] != '#latex': + out_file.write(l) +sys.exit(0) +""") + +test.write('mydvips.py', r""" +import os +import sys +infile = open(sys.argv[3], 'rb') +out_file = open(sys.argv[2], 'wb') +for l in infile.readlines(): + if l[:6] != '#dvips': + out_file.write(l) +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(TEX = r'%s mytex.py', + LATEX = r'%s mylatex.py', + DVIPS = r'%s mydvips.py') +dvi = env.DVI(target = 'test1.dvi', source = 'test1.tex') +env.PostScript(target = 'test1.ps', source = dvi) +env.PostScript(target = 'test2.ps', source = 'test2.tex') +env.PostScript(target = 'test3.ps', source = 'test3.ltx') +env.PostScript(target = 'test4.ps', source = 'test4.latex') +""" % (python, python, python)) + +test.write('test1.tex', r"""This is a .dvi test. +#tex +#dvips +""") + +test.write('test2.tex', r"""This is a .tex test. +#tex +#dvips +""") + +test.write('test3.ltx', r"""This is a .ltx test. +#latex +#dvips +""") + +test.write('test4.latex', r"""This is a .latex test. +#latex +#dvips +""") + +test.run(arguments = '.', stderr = None) + +test.fail_test(test.read('test1.ps') != "This is a .dvi test.\n") + +test.fail_test(test.read('test2.ps') != "This is a .tex test.\n") + +test.fail_test(test.read('test3.ps') != "This is a .ltx test.\n") + +test.fail_test(test.read('test4.ps') != "This is a .latex test.\n") + + + +dvips = None +for dir in string.split(os.environ['PATH'], os.pathsep): + l = os.path.join(dir, 'dvips' + _exe) + if os.path.exists(l): + dvips = l + break + +if dvips: + + test.write("wrapper.py", """import os +import string +import sys +cmd = string.join(sys.argv[1:], " ") +open('%s', 'ab').write("%%s\\n" %% cmd) +os.system(cmd) +""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) + + test.write('SConstruct', """ +foo = Environment() +dvips = foo.Dictionary('DVIPS') +bar = Environment(DVIPS = r'%s wrapper.py ' + dvips) +foo.PostScript(target = 'foo.ps', source = 'foo.tex') +bar.PostScript(target = 'bar1', source = 'bar1.tex') +bar.PostScript(target = 'bar2', source = 'bar2.ltx') +bar.PostScript(target = 'bar3', source = 'bar3.latex') +""" % python) + + tex = r""" +This is the %s TeX file. +\end +""" + + latex = r""" +\documentclass{letter} +\begin{document} +This is the %s LaTeX file. +\end{document} +""" + + test.write('foo.tex', tex % 'foo.tex') + test.write('bar1.tex', tex % 'bar1.tex') + test.write('bar2.ltx', latex % 'bar2.ltx') + test.write('bar3.latex', latex % 'bar3.latex') + + test.run(arguments = 'foo.dvi', stderr = None) + + test.fail_test(os.path.exists(test.workpath('wrapper.out'))) + + test.fail_test(not os.path.exists(test.workpath('foo.dvi'))) + + test.run(arguments = 'bar1.ps bar2.ps bar3.ps', stderr = None) + + expect = """dvips -o bar1.ps bar1.dvi +dvips -o bar2.ps bar2.dvi +dvips -o bar3.ps bar3.dvi +""" + + test.fail_test(test.read('wrapper.out') != expect) + + test.fail_test(not os.path.exists(test.workpath('bar1.ps'))) + test.fail_test(not os.path.exists(test.workpath('bar2.ps'))) + test.fail_test(not os.path.exists(test.workpath('bar3.ps'))) + +test.pass_test() |