sphinx/tests/test_catalogs.py

82 lines
2.6 KiB
Python
Raw Normal View History

2022-02-19 21:05:56 -06:00
"""Test the base build process."""
import shutil
2017-01-03 07:24:00 -06:00
import pytest
from sphinx.testing.util import find_files
2023-02-17 16:49:04 -06:00
@pytest.fixture()
def setup_test(app_params):
srcdir = app_params.kwargs['srcdir']
src_locale_dir = srcdir / 'xx' / 'LC_MESSAGES'
dest_locale_dir = srcdir / 'locale'
# copy all catalogs into locale layout directory
for po in find_files(src_locale_dir, '.po'):
copy_po = (dest_locale_dir / 'en' / 'LC_MESSAGES' / po)
if not copy_po.parent.exists():
copy_po.parent.makedirs()
shutil.copy(src_locale_dir / po, copy_po)
2017-01-03 07:24:00 -06:00
yield
# delete remnants left over after failed build
dest_locale_dir.rmtree(True)
(srcdir / '_build').rmtree(True)
2017-01-03 07:24:00 -06:00
@pytest.mark.usefixtures('setup_test')
@pytest.mark.test_params(shared_result='test-catalogs')
@pytest.mark.sphinx(
'html', testroot='intl',
confoverrides={'language': 'en', 'locale_dirs': ['./locale']})
def test_compile_all_catalogs(app, status, warning):
app.builder.compile_all_catalogs()
locale_dir = app.srcdir / 'locale'
catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES'
expect = {
x.replace('.po', '.mo')
for x in find_files(catalog_dir, '.po')
}
actual = set(find_files(catalog_dir, '.mo'))
assert actual # not empty
assert actual == expect
2017-01-03 07:24:00 -06:00
@pytest.mark.usefixtures('setup_test')
@pytest.mark.test_params(shared_result='test-catalogs')
@pytest.mark.sphinx(
'html', testroot='intl',
confoverrides={'language': 'en', 'locale_dirs': ['./locale']})
def test_compile_specific_catalogs(app, status, warning):
locale_dir = app.srcdir / 'locale'
catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES'
2016-06-11 10:00:52 -05:00
def get_actual():
return set(find_files(catalog_dir, '.mo'))
actual_on_boot = get_actual() # sphinx.mo might be included
app.builder.compile_specific_catalogs([app.srcdir / 'admonitions.txt'])
actual = get_actual() - actual_on_boot
assert actual == {'admonitions.mo'}
2017-01-03 07:24:00 -06:00
@pytest.mark.usefixtures('setup_test')
@pytest.mark.test_params(shared_result='test-catalogs')
@pytest.mark.sphinx(
'html', testroot='intl',
confoverrides={'language': 'en', 'locale_dirs': ['./locale']})
def test_compile_update_catalogs(app, status, warning):
app.builder.compile_update_catalogs()
locale_dir = app.srcdir / 'locale'
catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES'
expect = {
x.replace('.po', '.mo')
for x in find_files(catalog_dir, '.po')
}
actual = set(find_files(catalog_dir, '.mo'))
assert actual # not empty
assert actual == expect