sphinx/tests/test_extensions/test_ext_imgconverter.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Python
Raw Normal View History

2017-03-06 23:10:23 -06:00
"""Test sphinx.ext.imgconverter extension."""
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
2024-07-10 08:13:10 -05: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:
# print the image_converter version, to check that the command is available
subprocess.run([image_converter, '-version'], capture_output=True, check=False)
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):
2024-01-16 20:38:46 -06:00
app.build(force_all=True)
2017-03-06 23:10:23 -06:00
content = (app.outdir / 'projectnamenotset.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()