sphinx/tests/test_ext_graphviz.py

27 lines
750 B
Python
Raw Normal View History

2015-06-26 07:23:03 -05:00
# -*- coding: utf-8 -*-
"""
test_ext_graphviz
~~~~~~~~~~~~~~~~~
Test sphinx.ext.graphviz extension.
2016-01-14 15:54:04 -06:00
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
2015-06-26 07:23:03 -05:00
:license: BSD, see LICENSE for details.
"""
import re
from util import with_app, SkipTest
2015-06-26 07:23:03 -05:00
@with_app('html', testroot='ext-graphviz')
def test_graphviz(app, status, warning):
app.builder.build_all()
if "dot command 'dot' cannot be run" in warning.getvalue():
raise SkipTest('graphviz "dot" is not available')
content = (app.outdir / 'index.html').text()
html = ('<p class="graphviz">\s*<img .*?/>\s*</p>\s*'
'<p class="caption"><span class="caption-text">caption of graph</span>')
assert re.search(html, content, re.S)