sphinx/tests/test_ext_imgconverter.py

35 lines
1.0 KiB
Python
Raw Normal View History

2022-02-19 21:05:56 -06:00
"""Test sphinx.ext.imgconverter extension."""
2017-03-06 23:10:23 -06:00
import subprocess
2017-03-06 23:10:23 -06:00
2018-02-19 07:39:14 -06:00
import pytest
2017-03-06 23:10:23 -06:00
2023-02-17 16:49:04 -06:00
@pytest.fixture()
2023-02-17 17:46:31 -06:00
def _if_converter_found(app):
image_converter = getattr(app.config, 'image_converter', '')
try:
if image_converter:
2022-10-17 09:54:59 -05:00
subprocess.run([image_converter, '-version'], capture_output=True) # show version
return
except OSError: # No such file or directory
pass
pytest.skip('image_converter "%s" is not available' % image_converter)
2023-02-17 17:46:31 -06:00
@pytest.mark.usefixtures('_if_converter_found')
2017-03-06 23:10:23 -06:00
@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)
2017-04-23 03:59:39 -05:00
assert '\\sphinxincludegraphics{{svgimg}.png}' in content
2017-03-06 23:10:23 -06:00
assert not (app.outdir / 'svgimg.svg').exists()
assert (app.outdir / 'svgimg.png').exists()