diff options
author | Robert Managan <managan1@llnl.gov> | 2009-08-21 17:54:18 (GMT) |
---|---|---|
committer | Robert Managan <managan1@llnl.gov> | 2009-08-21 17:54:18 (GMT) |
commit | 1d0dbdfff3a64758fd001dd290eaeefa12038ed1 (patch) | |
tree | 1ffab44151a804c5ca4f1c6e92c9576f1ca106f4 /test/TEX | |
parent | 9e29749bb17c30bfdafd7c9a564432bc643072a7 (diff) | |
download | SCons-1d0dbdfff3a64758fd001dd290eaeefa12038ed1.zip SCons-1d0dbdfff3a64758fd001dd290eaeefa12038ed1.tar.gz SCons-1d0dbdfff3a64758fd001dd290eaeefa12038ed1.tar.bz2 |
Add test for glossaries package. and patch tex.py
to support it
Diffstat (limited to 'test/TEX')
-rw-r--r-- | test/TEX/glossaries.py | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/test/TEX/glossaries.py b/test/TEX/glossaries.py new file mode 100644 index 0000000..2a3ca82 --- /dev/null +++ b/test/TEX/glossaries.py @@ -0,0 +1,118 @@ +#!/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__" + +""" +Validate that use of \glossaries in TeX source files causes SCons to +be aware of the necessary created glossary files. + +Test configuration contributed by Robert Managan. +""" + +import os +import TestSCons + +test = TestSCons.TestSCons() + +latex = test.where_is('latex') +gloss = os.system('kpsewhich glossaries.sty') + +if not latex: + test.skip_test("Could not find latex; skipping test(s).\n") + +if not gloss==0: + test.skip_test("glossaries.sty not installed; skipping test(s).\n") + +test.write('SConstruct', """\ +import os +env = Environment(ENV = {'PATH' : os.environ['PATH'], + 'HOME' : os.environ['HOME']}) +env.PDF('glossaries', 'glossaries.tex') +""") + +test.write('glossaries.tex', r""" +\documentclass{article} + +\usepackage[acronym]{glossaries} + +\newglossaryentry{nix}{ + name={Nix}, + description={Version 5} +} + +\newacronym{gnu}{GNU}{GNU's Not UNIX} + +\makeglossaries + + +\begin{document} + +Acronyms \gls{gnu} and glossary entries \gls{nix}. + +\printglossary[type=acronym] +\printglossary[type=main] + +\end{document} +""") + +test.run(arguments = '.', stderr=None) + +test.must_exist(test.workpath('glossaries.acn')) +test.must_exist(test.workpath('glossaries.acr')) +test.must_exist(test.workpath('glossaries.alg')) +test.must_exist(test.workpath('glossaries.aux')) +test.must_exist(test.workpath('glossaries.fls')) +test.must_exist(test.workpath('glossaries.glg')) +test.must_exist(test.workpath('glossaries.glo')) +test.must_exist(test.workpath('glossaries.ist')) +test.must_exist(test.workpath('glossaries.log')) +test.must_exist(test.workpath('glossaries.pdf')) + +test.run(arguments = '-c .') + +x = "Could not remove 'glossaries.aux': No such file or directory" +test.must_not_contain_any_line(test.stdout(), [x]) + +test.must_not_exist(test.workpath('glossaries.acn')) +test.must_not_exist(test.workpath('glossaries.acr')) +test.must_not_exist(test.workpath('glossaries.alg')) +test.must_not_exist(test.workpath('glossaries.aux')) +test.must_not_exist(test.workpath('glossaries.fls')) +test.must_not_exist(test.workpath('glossaries.glg')) +test.must_not_exist(test.workpath('glossaries.glo')) +test.must_not_exist(test.workpath('glossaries.ist')) +test.must_not_exist(test.workpath('glossaries.log')) +test.must_not_exist(test.workpath('glossaries.pdf')) + +test.pass_test() + + + + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: |