2022-02-19 21:05:56 -06:00
|
|
|
"""Test sphinx.ext.imgconverter extension."""
|
2017-03-06 23:10:23 -06:00
|
|
|
|
2022-05-02 10:47:55 -05:00
|
|
|
import subprocess
|
|
|
|
from subprocess import PIPE
|
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
|
|
|
|
2022-05-02 10:47:55 -05:00
|
|
|
@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')
|
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()
|
|
|
|
|
2022-04-26 21:04:19 -05:00
|
|
|
content = (app.outdir / 'python.tex').read_text(encoding='utf8')
|
2021-04-17 02:51:19 -05:00
|
|
|
|
|
|
|
# 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()
|