2022-02-20 03:05:56 +00:00
|
|
|
"""Test sphinx.ext.imgconverter extension."""
|
2017-03-07 14:10:23 +09:00
|
|
|
|
2022-05-03 00:47:55 +09:00
|
|
|
import subprocess
|
|
|
|
|
from subprocess import PIPE
|
2017-03-07 14:10:23 +09:00
|
|
|
|
2018-02-19 22:39:14 +09:00
|
|
|
import pytest
|
|
|
|
|
|
2017-03-07 14:10:23 +09:00
|
|
|
|
2022-05-03 00:47:55 +09: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-07 14:10:23 +09:00
|
|
|
@pytest.mark.sphinx('latex', testroot='ext-imgconverter')
|
|
|
|
|
def test_ext_imgconverter(app, status, warning):
|
|
|
|
|
app.builder.build_all()
|
|
|
|
|
|
2022-04-27 03:04:19 +01:00
|
|
|
content = (app.outdir / 'python.tex').read_text(encoding='utf8')
|
2021-04-17 16:51:19 +09:00
|
|
|
|
|
|
|
|
# supported image (not converted)
|
|
|
|
|
assert '\\sphinxincludegraphics{{img}.pdf}' in content
|
|
|
|
|
|
|
|
|
|
# non supported image (converted)
|
2017-04-23 17:59:39 +09:00
|
|
|
assert '\\sphinxincludegraphics{{svgimg}.png}' in content
|
2017-03-07 14:10:23 +09:00
|
|
|
assert not (app.outdir / 'svgimg.svg').exists()
|
|
|
|
|
assert (app.outdir / 'svgimg.png').exists()
|