diff options
Diffstat (limited to 'test/DVIPS')
| -rw-r--r-- | test/DVIPS/DVIPS.py | 183 | ||||
| -rw-r--r-- | test/DVIPS/DVIPSFLAGS.py | 190 | ||||
| -rw-r--r-- | test/DVIPS/PSCOM.py | 69 | ||||
| -rw-r--r-- | test/DVIPS/PSCOMSTR.py | 73 |
4 files changed, 515 insertions, 0 deletions
diff --git a/test/DVIPS/DVIPS.py b/test/DVIPS/DVIPS.py new file mode 100644 index 0000000..e28a121 --- /dev/null +++ b/test/DVIPS/DVIPS.py @@ -0,0 +1,183 @@ +#!/usr/bin/env python +# +# __COPYRIGHT__ +# +# 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 TestSCons + +_python_ = TestSCons._python_ + +test = TestSCons.TestSCons() + + + +test.write('mytex.py', r""" +import os +import sys +import getopt +cmd_opts, arg = getopt.getopt(sys.argv[1:], 'i:r:', []) +base_name = os.path.splitext(arg[0])[0] +infile = open(arg[0], '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 +import getopt +cmd_opts, arg = getopt.getopt(sys.argv[1:], 'i:r:', []) +base_name = os.path.splitext(arg[0])[0] +infile = open(arg[0], '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'%(_python_)s mytex.py', + LATEX = r'%(_python_)s mylatex.py', + DVIPS = r'%(_python_)s mydvips.py', + tools=['tex', 'latex', 'dvips']) +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') +""" % locals()) + +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.must_match('test1.ps', "This is a .dvi test.\n") + +test.must_match('test2.ps', "This is a .tex test.\n") + +test.must_match('test3.ps', "This is a .ltx test.\n") + +test.must_match('test4.ps', "This is a .latex test.\n") + + + +dvips = test.where_is('dvips') + +if dvips: + + test.write("wrapper.py", """import os +import sys +cmd = " ".join(sys.argv[1:]) +open('%s', 'ab').write("%%s\\n" %% cmd) +os.system(cmd) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) + + test.write('SConstruct', """ +import os +ENV = { 'PATH' : os.environ['PATH'] } +foo = Environment(ENV = ENV) +dvips = foo.Dictionary('DVIPS') +bar = Environment(ENV = ENV, DVIPS = r'%(_python_)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') +""" % locals()) + + 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.must_not_exist(test.workpath('wrapper.out')) + + test.must_exist(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.must_match('wrapper.out', expect) + + test.must_exist(test.workpath('bar1.ps')) + test.must_exist(test.workpath('bar2.ps')) + test.must_exist(test.workpath('bar3.ps')) + +test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/DVIPS/DVIPSFLAGS.py b/test/DVIPS/DVIPSFLAGS.py new file mode 100644 index 0000000..285c729 --- /dev/null +++ b/test/DVIPS/DVIPSFLAGS.py @@ -0,0 +1,190 @@ +#!/usr/bin/env python +# +# __COPYRIGHT__ +# +# 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 TestSCons + +_python_ = TestSCons._python_ + +test = TestSCons.TestSCons() + + + +test.write('mytex.py', r""" +import os +import sys +import getopt +cmd_opts, arg = getopt.getopt(sys.argv[1:], 'i:r:', []) +base_name = os.path.splitext(arg[0])[0] +infile = open(arg[0], '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 +import getopt +cmd_opts, arg = getopt.getopt(sys.argv[1:], 'i:r:', []) +base_name = os.path.splitext(arg[0])[0] +infile = open(arg[0], '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 getopt +import os +import sys +cmd_opts, args = getopt.getopt(sys.argv[1:], 'o:x', []) +opt_string = '' +for opt, arg in cmd_opts: + if opt == '-o': outfile = arg + else: opt_string = opt_string + ' ' + opt +infile = open(args[0], 'rb') +out_file = open(outfile, 'wb') +out_file.write(opt_string + "\n") +for l in infile.readlines(): + if l[:6] != '#dvips': + out_file.write(l) +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(TEX = r'%(_python_)s mytex.py', + LATEX = r'%(_python_)s mylatex.py', + DVIPS = r'%(_python_)s mydvips.py', DVIPSFLAGS = '-x', + tools=['tex', 'latex', 'dvips']) +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') +""" % locals()) + +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.must_match('test1.ps', " -x\nThis is a .dvi test.\n") + +test.must_match('test2.ps', " -x\nThis is a .tex test.\n") + +test.must_match('test3.ps', " -x\nThis is a .ltx test.\n") + +test.must_match('test4.ps', " -x\nThis is a .latex test.\n") + + + +dvips = test.where_is('dvips') + +if dvips: + + test.write("wrapper.py", """import os +import sys +cmd = " ".join(sys.argv[1:]) +open('%s', 'ab').write("%%s\\n" %% cmd) +os.system(cmd) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) + + test.write('SConstruct', """ +import os +ENV = {'PATH' : os.environ['PATH']} +foo = Environment(ENV = ENV, DVIPSFLAGS = '-N') +dvips = foo.Dictionary('DVIPS') +bar = Environment(ENV = ENV,DVIPS = r'%(_python_)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') +""" % locals()) + + 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.must_not_exist(test.workpath('wrapper.out')) + + test.must_exist(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.must_match('wrapper.out', expect) + + test.must_exist(test.workpath('bar1.ps')) + test.must_exist(test.workpath('bar2.ps')) + test.must_exist(test.workpath('bar3.ps')) + +test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/DVIPS/PSCOM.py b/test/DVIPS/PSCOM.py new file mode 100644 index 0000000..fe4832b --- /dev/null +++ b/test/DVIPS/PSCOM.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python +# +# __COPYRIGHT__ +# +# 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__" + +""" +Test the ability to configure the $PSCOM construction variable. +""" + +import TestSCons + +_python_ = TestSCons._python_ + +test = TestSCons.TestSCons() + + + +test.write('myps.py', """ +import sys +outfile = open(sys.argv[1], 'wb') +for f in sys.argv[2:]: + infile = open(f, 'rb') + for l in [l for l in infile.readlines() if l != '/*ps*/\\n']: + outfile.write(l) +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(tools=['default', 'dvips'], + PSCOM = r'%(_python_)s myps.py $TARGET $SOURCES') +env.PostScript(target = 'aaa', source = 'aaa.dvi') +""" % locals()) + +test.write('aaa.dvi', "aaa.dvi\n/*ps*/\n") + +test.run() + +test.must_match('aaa.ps', "aaa.dvi\n") + + + +test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: diff --git a/test/DVIPS/PSCOMSTR.py b/test/DVIPS/PSCOMSTR.py new file mode 100644 index 0000000..7c57ded --- /dev/null +++ b/test/DVIPS/PSCOMSTR.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python +# +# __COPYRIGHT__ +# +# 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__" + +""" +Test that the $PSCOMSTR construction variable allows you to customize +the displayed string when is called. +""" + +import TestSCons + +_python_ = TestSCons._python_ + +test = TestSCons.TestSCons() + + + +test.write('myps.py', """ +import sys +outfile = open(sys.argv[1], 'wb') +for f in sys.argv[2:]: + infile = open(f, 'rb') + for l in [l for l in infile.readlines() if l != '/*ps*/\\n']: + outfile.write(l) +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(tools=['default', 'dvips'], + PSCOM = r'%(_python_)s myps.py $TARGET $SOURCES', + PSCOMSTR = 'PostScripting $TARGET from $SOURCE') +env.PostScript(target = 'aaa', source = 'aaa.dvi') +""" % locals()) + +test.write('aaa.dvi', "aaa.dvi\n/*ps*/\n") + +test.run(stdout = test.wrap_stdout("""\ +PostScripting aaa.ps from aaa.dvi +""")) + +test.must_match('aaa.ps', "aaa.dvi\n") + + + +test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |
