mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
87 lines
3.0 KiB
Python
87 lines
3.0 KiB
Python
"""
|
|
test_build_htmlhelp
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
Test the HTML Help builder and check output against XPath.
|
|
|
|
:copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import re
|
|
|
|
import pytest
|
|
|
|
from sphinx.builders.htmlhelp import chm_htmlescape
|
|
|
|
from sphinx.builders.htmlhelp import default_htmlhelp_basename
|
|
from sphinx.config import Config
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='basic')
|
|
def test_build_htmlhelp(app, status, warning):
|
|
app.build()
|
|
|
|
hhp = (app.outdir / 'pythondoc.hhp').text()
|
|
assert 'Compiled file=pythondoc.chm' in hhp
|
|
assert 'Contents file=pythondoc.hhc' in hhp
|
|
assert 'Default Window=pythondoc' in hhp
|
|
assert 'Default topic=index.html' in hhp
|
|
assert 'Full text search stop list file=pythondoc.stp' in hhp
|
|
assert 'Index file=pythondoc.hhk' in hhp
|
|
assert 'Language=0x409' in hhp
|
|
assert 'Title=Python documentation' in hhp
|
|
assert ('pythondoc="Python documentation","pythondoc.hhc",'
|
|
'"pythondoc.hhk","index.html","index.html",,,,,'
|
|
'0x63520,220,0x10384e,[0,0,1024,768],,,,,,,0' in hhp)
|
|
|
|
files = ['genindex.html', 'index.html', '_static\\alabaster.css', '_static\\basic.css',
|
|
'_static\\custom.css', '_static\\file.png', '_static\\minus.png',
|
|
'_static\\plus.png', '_static\\pygments.css']
|
|
assert '[FILES]\n%s' % '\n'.join(files) in hhp
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='basic')
|
|
def test_default_htmlhelp_file_suffix(app, warning):
|
|
assert app.builder.out_suffix == '.html'
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='basic',
|
|
confoverrides={'htmlhelp_file_suffix': '.htm'})
|
|
def test_htmlhelp_file_suffix(app, warning):
|
|
assert app.builder.out_suffix == '.htm'
|
|
|
|
|
|
def test_default_htmlhelp_basename():
|
|
config = Config({'project': 'Sphinx Documentation'})
|
|
config.init_values()
|
|
assert default_htmlhelp_basename(config) == 'sphinxdoc'
|
|
|
|
|
|
@pytest.mark.sphinx('htmlhelp', testroot='build-htmlhelp')
|
|
def test_chm(app):
|
|
app.build()
|
|
|
|
# check .hhk file
|
|
outname = app.builder.config.htmlhelp_basename
|
|
hhk_path = str(app.outdir / outname + '.hhk')
|
|
|
|
with open(hhk_path, 'rb') as f:
|
|
data = f.read()
|
|
m = re.search(br'&#[xX][0-9a-fA-F]+;', data)
|
|
assert m is None, 'Hex escaping exists in .hhk file: ' + str(m.group(0))
|
|
|
|
|
|
def test_chm_htmlescape():
|
|
assert chm_htmlescape('Hello world') == 'Hello world'
|
|
assert chm_htmlescape(u'Unicode 文字') == u'Unicode 文字'
|
|
assert chm_htmlescape('E') == '&#x45'
|
|
|
|
assert chm_htmlescape('<Hello> "world"') == '<Hello> "world"'
|
|
assert chm_htmlescape('<Hello> "world"', True) == '<Hello> "world"'
|
|
assert chm_htmlescape('<Hello> "world"', False) == '<Hello> "world"'
|
|
|
|
assert chm_htmlescape("Hello 'world'") == "Hello 'world'"
|
|
assert chm_htmlescape("Hello 'world'", True) == "Hello 'world'"
|
|
assert chm_htmlescape("Hello 'world'", False) == "Hello 'world'"
|