Expanded SCons.Scanner.LaTeX.comment_re to not break on \%
[scons.git] / test / TEX / glossary.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Validate that use of \glossary in TeX source files causes SCons to
29 be aware of the necessary created glossary files.
30
31 Test configuration contributed by Robert Managan.
32 """
33
34 import os
35 import TestSCons
36
37 test = TestSCons.TestSCons()
38
39 latex = test.where_is('latex')
40 gloss = os.system('kpsewhich glossary.sty')
41
42 if not latex:
43     test.skip_test("Could not find latex; skipping test(s).\n")
44
45 if not gloss==0:
46     test.skip_test("glossary.sty not installed; skipping test(s).\n")
47
48 test.write('SConstruct', """\
49 import os
50 env = Environment(tools = ['latex'], ENV = {'PATH' : os.environ['PATH']})
51 env.DVI('gloassary', 'glossary.ltx')
52 """)
53
54 test.write('glossary.ltx', r"""
55 \documentclass{article}
56
57 \usepackage{glossary}
58
59 \makeglossary
60
61
62 \begin{document}
63
64 A glossary entry \glossary{name={gnu}, description={an animal or software group}}
65 and another\glossary{name={nix}, description={not sure}}.
66
67 \printglossary
68
69 \end{document}
70 """)
71
72 test.run(arguments = '.', stderr=None)
73
74 test.must_exist(test.workpath('glossary.aux'))
75 test.must_exist(test.workpath('glossary.fls'))
76 test.must_exist(test.workpath('glossary.glg'))
77 test.must_exist(test.workpath('glossary.glo'))
78 test.must_exist(test.workpath('glossary.gls'))
79 test.must_exist(test.workpath('glossary.ist'))
80 test.must_exist(test.workpath('glossary.log'))
81 test.must_exist(test.workpath('gloassary.dvi'))
82
83 test.run(arguments = '-c .')
84
85 x = "Could not remove 'glossary.aux': No such file or directory"
86 test.must_not_contain_any_line(test.stdout(), [x])
87
88 test.must_not_exist(test.workpath('glossary.aux'))
89 test.must_not_exist(test.workpath('glossary.fls'))
90 test.must_not_exist(test.workpath('glossary.glg'))
91 test.must_not_exist(test.workpath('glossary.glo'))
92 test.must_not_exist(test.workpath('glossary.gls'))
93 test.must_not_exist(test.workpath('glossary.ist'))
94 test.must_not_exist(test.workpath('glossary.log'))
95 test.must_not_exist(test.workpath('gloassary.dvi'))
96
97 test.pass_test()
98
99
100
101
102 # Local Variables:
103 # tab-width:4
104 # indent-tabs-mode:nil
105 # End:
106 # vim: set expandtab tabstop=4 shiftwidth=4: