From cf7da1843c45a4c2df7a749f7886a2d2ba0ee92a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 19:25:40 +0200 Subject: Adding upstream version 7.2.6. Signed-off-by: Daniel Baumann --- tests/test_ext_autosectionlabel.py | 77 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 tests/test_ext_autosectionlabel.py (limited to 'tests/test_ext_autosectionlabel.py') diff --git a/tests/test_ext_autosectionlabel.py b/tests/test_ext_autosectionlabel.py new file mode 100644 index 0000000..f99a6d3 --- /dev/null +++ b/tests/test_ext_autosectionlabel.py @@ -0,0 +1,77 @@ +"""Test sphinx.ext.autosectionlabel extension.""" + +import re + +import pytest + + +@pytest.mark.sphinx('html', testroot='ext-autosectionlabel') +def test_autosectionlabel_html(app, status, warning, skipped_labels=False): + app.builder.build_all() + + content = (app.outdir / 'index.html').read_text(encoding='utf8') + html = ('
  • ' + 'Introduce of Sphinx

  • ') + assert re.search(html, content, re.S) + + html = ('
  • ' + 'Installation

  • ') + assert re.search(html, content, re.S) + + html = ('
  • ' + 'For Windows users

  • ') + assert re.search(html, content, re.S) + + html = ('
  • ' + 'For UNIX users

  • ') + assert re.search(html, content, re.S) + + html = ('
  • ' + 'Linux

  • ') + assert re.search(html, content, re.S) + + html = ('
  • ' + 'FreeBSD

  • ') + assert re.search(html, content, re.S) + + # for smart_quotes (refs: #4027) + html = ('
  • ' + 'This one’s got an apostrophe' + '

  • ') + assert re.search(html, content, re.S) + + +# Re-use test definition from above, just change the test root directory +@pytest.mark.sphinx('html', testroot='ext-autosectionlabel-prefix-document') +def test_autosectionlabel_prefix_document_html(app, status, warning): + test_autosectionlabel_html(app, status, warning) + + +@pytest.mark.sphinx('html', testroot='ext-autosectionlabel', + confoverrides={'autosectionlabel_maxdepth': 3}) +def test_autosectionlabel_maxdepth(app, status, warning): + app.builder.build_all() + + content = (app.outdir / 'index.html').read_text(encoding='utf8') + + # depth: 1 + html = ('
  • ' + 'test-ext-autosectionlabel

  • ') + assert re.search(html, content, re.S) + + # depth: 2 + html = ('
  • ' + 'Installation

  • ') + assert re.search(html, content, re.S) + + # depth: 3 + html = ('
  • ' + 'For Windows users

  • ') + assert re.search(html, content, re.S) + + # depth: 4 + html = '
  • Linux

  • ' + assert re.search(html, content, re.S) + + assert "WARNING: undefined label: 'linux'" in warning.getvalue() -- cgit v1.2.3