mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_ext_graphviz
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Test sphinx.ext.graphviz extension.
|
|
|
|
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import re
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.sphinx('html', testroot='ext-graphviz')
|
|
@pytest.mark.usefixtures('if_graphviz_found')
|
|
def test_graphviz_html(app, status, warning):
|
|
app.builder.build_all()
|
|
|
|
content = (app.outdir / 'index.html').text()
|
|
html = (r'<div class="figure" .*?>\s*<img .*?/>\s*<p class="caption">'
|
|
r'<span class="caption-text">caption of graph</span>.*</p>\s*</div>')
|
|
assert re.search(html, content, re.S)
|
|
|
|
html = 'Hello <img .*?/>\n graphviz world'
|
|
assert re.search(html, content, re.S)
|
|
|
|
html = '<img src=".*?" alt="digraph {\n bar -> baz\n}" />'
|
|
assert re.search(html, content, re.M)
|
|
|
|
html = (r'<div class="figure align-right" .*?>\s*<img .*?/>\s*<p class="caption">'
|
|
r'<span class="caption-text">on right</span>.*</p>\s*</div>')
|
|
assert re.search(html, content, re.S)
|
|
|
|
|
|
@pytest.mark.sphinx('latex', testroot='ext-graphviz')
|
|
@pytest.mark.usefixtures('if_graphviz_found')
|
|
def test_graphviz_latex(app, status, warning):
|
|
app.builder.build_all()
|
|
|
|
content = (app.outdir / 'SphinxTests.tex').text()
|
|
macro = ('\\\\begin{figure}\\[htbp\\]\n\\\\centering\n\\\\capstart\n\n'
|
|
'\\\\includegraphics{graphviz-\\w+.pdf}\n'
|
|
'\\\\caption{caption of graph}\\\\label{.*}\\\\end{figure}')
|
|
assert re.search(macro, content, re.S)
|
|
|
|
macro = 'Hello \\\\includegraphics{graphviz-\\w+.pdf} graphviz world'
|
|
assert re.search(macro, content, re.S)
|
|
|
|
macro = ('\\\\begin{wrapfigure}{r}{0pt}\n\\\\centering\n'
|
|
'\\\\includegraphics{graphviz-\\w+.pdf}\n'
|
|
'\\\\caption{on right}\\\\label{.*}\\\\end{wrapfigure}')
|
|
assert re.search(macro, content, re.S)
|
|
|
|
|
|
@pytest.mark.sphinx('html', testroot='ext-graphviz', confoverrides={'language': 'xx'})
|
|
@pytest.mark.usefixtures('if_graphviz_found')
|
|
def test_graphviz_i18n(app, status, warning):
|
|
app.builder.build_all()
|
|
|
|
content = (app.outdir / 'index.html').text()
|
|
html = '<img src=".*?" alt="digraph {\n BAR -> BAZ\n}" />'
|
|
assert re.search(html, content, re.M)
|