summaryrefslogtreecommitdiff
path: root/tests/test_ext_graphviz.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ext_graphviz.py')
-rw-r--r--tests/test_ext_graphviz.py81
1 files changed, 81 insertions, 0 deletions
diff --git a/tests/test_ext_graphviz.py b/tests/test_ext_graphviz.py
new file mode 100644
index 000000000..dbab33761
--- /dev/null
+++ b/tests/test_ext_graphviz.py
@@ -0,0 +1,81 @@
+# -*- 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 subprocess
+from functools import wraps
+
+from util import with_app, SkipTest
+
+
+def skip_if_graphviz_not_found(fn):
+ @wraps(fn)
+ def decorator(app, *args, **kwargs):
+ found = False
+ graphviz_dot = getattr(app.config, 'graphviz_dot', '')
+ try:
+ if graphviz_dot:
+ dot = subprocess.Popen([graphviz_dot, '-V'],
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE) # show version
+ dot.wait()
+ found = True
+ except OSError: # No such file or directory
+ pass
+
+ if not found:
+ raise SkipTest('graphviz "dot" is not available')
+
+ return fn(app, *args, **kwargs)
+
+ return decorator
+
+
+@with_app('html', testroot='ext-graphviz')
+@skip_if_graphviz_not_found
+def test_graphviz_html(app, status, warning):
+ app.builder.build_all()
+
+ content = (app.outdir / 'index.html').text()
+ html = ('<div class="figure" .*?>\s*<img .*?/>\s*<p class="caption">'
+ '<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 -&gt; baz\n}" />'
+ assert re.search(html, content, re.M)
+
+
+@with_app('latex', testroot='ext-graphviz')
+@skip_if_graphviz_not_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)
+
+
+@with_app('html', testroot='ext-graphviz', confoverrides={'language': 'xx'})
+@skip_if_graphviz_not_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 -&gt; BAZ\n}" />'
+ assert re.search(html, content, re.M)