mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_build_texinfo
|
|
~~~~~~~~~~~~~~~~~~
|
|
|
|
Test the build process with Texinfo builder with the test root.
|
|
|
|
:copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import re
|
|
from subprocess import Popen, PIPE
|
|
|
|
import six
|
|
|
|
from sphinx.writers.texinfo import TexinfoTranslator
|
|
|
|
from util import test_root, SkipTest, remove_unicode_literals, with_app
|
|
from test_build_html import ENV_WARNINGS
|
|
|
|
|
|
def teardown_module():
|
|
(test_root / '_build').rmtree(True)
|
|
|
|
|
|
texinfo_warnfile = six.StringIO()
|
|
|
|
TEXINFO_WARNINGS = ENV_WARNINGS + """\
|
|
None:None: WARNING: citation not found: missing
|
|
None:None: WARNING: no matching candidate for image URI u'foo.\\*'
|
|
None:None: WARNING: no matching candidate for image URI u'svgimg.\\*'
|
|
"""
|
|
|
|
if six.PY3:
|
|
TEXINFO_WARNINGS = remove_unicode_literals(TEXINFO_WARNINGS)
|
|
|
|
|
|
@with_app(buildername='texinfo', warning=texinfo_warnfile, cleanenv=True)
|
|
def test_texinfo(app):
|
|
TexinfoTranslator.ignore_missing_images = True
|
|
app.builder.build_all()
|
|
texinfo_warnings = texinfo_warnfile.getvalue().replace(os.sep, '/')
|
|
texinfo_warnings_exp = TEXINFO_WARNINGS % {
|
|
'root': re.escape(app.srcdir.replace(os.sep, '/'))}
|
|
assert re.match(texinfo_warnings_exp + '$', texinfo_warnings), \
|
|
'Warnings don\'t match:\n' + \
|
|
'--- Expected (regex):\n' + texinfo_warnings_exp + \
|
|
'--- Got:\n' + texinfo_warnings
|
|
# now, try to run makeinfo over it
|
|
cwd = os.getcwd()
|
|
os.chdir(app.outdir)
|
|
try:
|
|
try:
|
|
p = Popen(['makeinfo', '--no-split', 'SphinxTests.texi'],
|
|
stdout=PIPE, stderr=PIPE)
|
|
except OSError:
|
|
raise SkipTest # most likely makeinfo was not found
|
|
else:
|
|
stdout, stderr = p.communicate()
|
|
retcode = p.returncode
|
|
if retcode != 0:
|
|
print(stdout)
|
|
print(stderr)
|
|
del app.cleanup_trees[:]
|
|
assert False, 'makeinfo exited with return code %s' % retcode
|
|
finally:
|
|
os.chdir(cwd)
|