2015-03-02 07:43:14 -06:00
|
|
|
"""Test sphinx.ext.ifconfig extension."""
|
|
|
|
|
2024-11-22 15:54:26 -06:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-02-14 23:45:28 -06:00
|
|
|
import docutils.utils
|
2017-01-05 10:14:47 -06:00
|
|
|
import pytest
|
2015-03-02 07:43:14 -06:00
|
|
|
|
2023-02-14 23:45:28 -06:00
|
|
|
from sphinx import addnodes
|
|
|
|
from sphinx.testing import restructuredtext
|
|
|
|
|
2015-03-02 07:43:14 -06:00
|
|
|
|
2017-01-05 10:14:47 -06:00
|
|
|
@pytest.mark.sphinx('text', testroot='ext-ifconfig')
|
2024-07-23 09:35:55 -05:00
|
|
|
def test_ifconfig(app):
|
2024-01-16 20:38:46 -06:00
|
|
|
app.build(force_all=True)
|
2022-04-26 21:04:19 -05:00
|
|
|
result = (app.outdir / 'index.txt').read_text(encoding='utf8')
|
2016-07-13 19:16:51 -05:00
|
|
|
assert 'spam' in result
|
|
|
|
assert 'ham' not in result
|
2023-02-14 23:45:28 -06:00
|
|
|
|
|
|
|
|
2024-08-12 16:34:03 -05:00
|
|
|
@pytest.mark.sphinx('html', testroot='root')
|
2023-02-14 23:45:28 -06:00
|
|
|
def test_ifconfig_content_line_number(app):
|
2024-08-11 08:58:56 -05:00
|
|
|
app.setup_extension('sphinx.ext.ifconfig')
|
|
|
|
text = '.. ifconfig:: confval1\n\n Some link here: :ref:`abc`\n'
|
2023-02-14 23:45:28 -06:00
|
|
|
doc = restructuredtext.parse(app, text)
|
|
|
|
xrefs = list(doc.findall(condition=addnodes.pending_xref))
|
|
|
|
assert len(xrefs) == 1
|
|
|
|
source, line = docutils.utils.get_source_line(xrefs[0])
|
|
|
|
assert 'index.rst' in source
|
|
|
|
assert line == 3
|