sphinx/tests/test_transforms/test_unreferenced_footnotes.py

44 lines
1.5 KiB
Python
Raw Normal View History

"""Test the ``UnreferencedFootnotesDetector`` transform."""
from pathlib import Path
from sphinx.testing.util import SphinxTestApp
from sphinx.util.console import strip_colors
def test_warnings(make_app: type[SphinxTestApp], tmp_path: Path) -> None:
"""Test that warnings are emitted for unreferenced footnotes."""
2024-08-11 08:58:56 -05:00
tmp_path.joinpath('conf.py').touch()
tmp_path.joinpath('index.rst').write_text(
"""
Title
=====
[1]_ [#label2]_
.. [1] This is a normal footnote.
.. [2] This is a normal footnote.
.. [2] This is a normal footnote.
.. [3] This is a normal footnote.
.. [*] This is a symbol footnote.
.. [#] This is an auto-numbered footnote.
.. [#label1] This is an auto-numbered footnote with a label.
.. [#label1] This is an auto-numbered footnote with a label.
.. [#label2] This is an auto-numbered footnote with a label.
2024-08-11 08:58:56 -05:00
""",
encoding='utf8',
)
app = make_app(srcdir=tmp_path)
app.build()
2024-08-11 08:58:56 -05:00
warnings = strip_colors(app.warning.getvalue()).lstrip()
warnings = warnings.replace(str(tmp_path / 'index.rst'), 'source/index.rst')
assert (
warnings
== """\
source/index.rst:8: WARNING: Duplicate explicit target name: "2". [docutils]
source/index.rst:13: WARNING: Duplicate explicit target name: "label1". [docutils]
source/index.rst:9: WARNING: Footnote [3] is not referenced. [ref.footnote]
source/index.rst:10: WARNING: Footnote [*] is not referenced. [ref.footnote]
source/index.rst:11: WARNING: Footnote [#] is not referenced. [ref.footnote]
2024-08-11 08:58:56 -05:00
"""
)