summaryrefslogtreecommitdiff
path: root/test/DVIPS
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-01-06 01:39:03 +0000
committerSteven Knight <knight@baldmt.com>2005-01-06 01:39:03 +0000
commit8209788c5d6a2554317a13416bb953b6c3f572ab (patch)
tree94c9d4e2e123a270c35f30c4b8691f1feeb0f2e3 /test/DVIPS
parent1344c9c2297d5e0931bfcd15a853b13d8e5caf34 (diff)
downloadscons-8209788c5d6a2554317a13416bb953b6c3f572ab.tar.gz
More command-line customizability: , , , , , , .
Diffstat (limited to 'test/DVIPS')
-rw-r--r--test/DVIPS/DVIPS.py178
-rw-r--r--test/DVIPS/DVIPSFLAGS.py185
-rw-r--r--test/DVIPS/PSCOM.py63
-rw-r--r--test/DVIPS/PSCOMSTR.py67
4 files changed, 493 insertions, 0 deletions
diff --git a/test/DVIPS/DVIPS.py b/test/DVIPS/DVIPS.py
new file mode 100644
index 00000000..2ae856a5
--- /dev/null
+++ b/test/DVIPS/DVIPS.py
@@ -0,0 +1,178 @@
+#!/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 os
+import os.path
+import string
+import sys
+import TestSCons
+
+python = TestSCons.python
+
+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',
+ 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')
+""" % (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 = test.where_is('dvips')
+
+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', """
+import os
+ENV = { 'PATH' : os.environ['PATH'] }
+foo = Environment(ENV = ENV)
+dvips = foo.Dictionary('DVIPS')
+bar = Environment(ENV = ENV, 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()
diff --git a/test/DVIPS/DVIPSFLAGS.py b/test/DVIPS/DVIPSFLAGS.py
new file mode 100644
index 00000000..82e57c59
--- /dev/null
+++ b/test/DVIPS/DVIPSFLAGS.py
@@ -0,0 +1,185 @@
+#!/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 os
+import os.path
+import string
+import sys
+import TestSCons
+
+python = TestSCons.python
+
+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 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'%s mytex.py',
+ LATEX = r'%s mylatex.py',
+ DVIPS = r'%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')
+""" % (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') != " -x\nThis is a .dvi test.\n")
+
+test.fail_test(test.read('test2.ps') != " -x\nThis is a .tex test.\n")
+
+test.fail_test(test.read('test3.ps') != " -x\nThis is a .ltx test.\n")
+
+test.fail_test(test.read('test4.ps') != " -x\nThis is a .latex test.\n")
+
+
+
+dvips = test.where_is('dvips')
+
+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', """
+import os
+ENV = {'PATH' : os.environ['PATH']}
+foo = Environment(ENV = ENV, DVIPSFLAGS = '-N')
+dvips = foo.Dictionary('DVIPS')
+bar = Environment(ENV = ENV,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()
diff --git a/test/DVIPS/PSCOM.py b/test/DVIPS/PSCOM.py
new file mode 100644
index 00000000..65e66a29
--- /dev/null
+++ b/test/DVIPS/PSCOM.py
@@ -0,0 +1,63 @@
+#!/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 filter(lambda l: l != '/*ps*/\\n', infile.readlines()):
+ outfile.write(l)
+sys.exit(0)
+""")
+
+test.write('SConstruct', """
+env = Environment(tools=['default', 'dvips'],
+ PSCOM = r'%s myps.py $TARGET $SOURCES')
+env.PostScript(target = 'aaa', source = 'aaa.dvi')
+""" % python)
+
+test.write('aaa.dvi', "aaa.dvi\n/*ps*/\n")
+
+test.run()
+
+test.must_match('aaa.ps', "aaa.dvi\n")
+
+
+
+test.pass_test()
diff --git a/test/DVIPS/PSCOMSTR.py b/test/DVIPS/PSCOMSTR.py
new file mode 100644
index 00000000..9a565a4a
--- /dev/null
+++ b/test/DVIPS/PSCOMSTR.py
@@ -0,0 +1,67 @@
+#!/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 filter(lambda l: l != '/*ps*/\\n', infile.readlines()):
+ outfile.write(l)
+sys.exit(0)
+""")
+
+test.write('SConstruct', """
+env = Environment(tools=['default', 'dvips'],
+ PSCOM = r'%s myps.py $TARGET $SOURCES',
+ PSCOMSTR = 'PostScripting $TARGET from $SOURCE')
+env.PostScript(target = 'aaa', source = 'aaa.dvi')
+""" % python)
+
+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()