sphinx/tests/test_ext_imgconverter.py
Takeshi KOMIYA 00a0e13292
Merge pull request #10411 from tk0miya/10384_skip_tests_for_imgconverter
Fix #10384: test: Skip tests for imgconvert if imagemagick not found
2022-05-03 01:42:50 +09:00

36 lines
1.0 KiB
Python

"""Test sphinx.ext.imgconverter extension."""
import subprocess
from subprocess import PIPE
import pytest
@pytest.fixture
def if_converter_found(app):
image_converter = getattr(app.config, 'image_converter', '')
try:
if image_converter:
subprocess.run([image_converter, '-version'], stdout=PIPE, stderr=PIPE) # show version
return
except OSError: # No such file or directory
pass
pytest.skip('image_converter "%s" is not available' % image_converter)
@pytest.mark.usefixtures('if_converter_found')
@pytest.mark.sphinx('latex', testroot='ext-imgconverter')
def test_ext_imgconverter(app, status, warning):
app.builder.build_all()
content = (app.outdir / 'python.tex').read_text(encoding='utf8')
# supported image (not converted)
assert '\\sphinxincludegraphics{{img}.pdf}' in content
# non supported image (converted)
assert '\\sphinxincludegraphics{{svgimg}.png}' in content
assert not (app.outdir / 'svgimg.svg').exists()
assert (app.outdir / 'svgimg.png').exists()