2022-02-19 21:05:56 -06:00
|
|
|
"""Test i18n util."""
|
2014-09-21 10:17:02 -05:00
|
|
|
|
2016-02-14 05:07:28 -06:00
|
|
|
import datetime
|
2018-02-19 07:39:14 -06:00
|
|
|
import os
|
2014-09-21 10:17:02 -05:00
|
|
|
|
2017-01-06 09:46:26 -06:00
|
|
|
import pytest
|
2014-09-21 10:17:02 -05:00
|
|
|
from babel.messages.mofile import read_mo
|
2018-02-19 07:39:14 -06:00
|
|
|
|
2016-01-26 10:36:43 -06:00
|
|
|
from sphinx.errors import SphinxError
|
2018-02-19 07:39:14 -06:00
|
|
|
from sphinx.util import i18n
|
2014-09-21 10:17:02 -05:00
|
|
|
|
|
|
|
|
|
|
|
def test_catalog_info_for_file_and_path():
|
2015-07-25 08:47:56 -05:00
|
|
|
cat = i18n.CatalogInfo('path', 'domain', 'utf-8')
|
2014-09-21 10:17:02 -05:00
|
|
|
assert cat.po_file == 'domain.po'
|
|
|
|
assert cat.mo_file == 'domain.mo'
|
2017-01-06 09:46:26 -06:00
|
|
|
assert cat.po_path == os.path.join('path', 'domain.po')
|
|
|
|
assert cat.mo_path == os.path.join('path', 'domain.mo')
|
2014-09-21 10:17:02 -05:00
|
|
|
|
|
|
|
|
|
|
|
def test_catalog_info_for_sub_domain_file_and_path():
|
2015-07-25 08:47:56 -05:00
|
|
|
cat = i18n.CatalogInfo('path', 'sub/domain', 'utf-8')
|
2014-09-21 10:17:02 -05:00
|
|
|
assert cat.po_file == 'sub/domain.po'
|
|
|
|
assert cat.mo_file == 'sub/domain.mo'
|
2017-01-06 09:46:26 -06:00
|
|
|
assert cat.po_path == os.path.join('path', 'sub/domain.po')
|
|
|
|
assert cat.mo_path == os.path.join('path', 'sub/domain.mo')
|
2014-09-21 10:17:02 -05:00
|
|
|
|
|
|
|
|
2017-01-03 07:24:00 -06:00
|
|
|
def test_catalog_outdated(tempdir):
|
|
|
|
(tempdir / 'test.po').write_text('#')
|
|
|
|
cat = i18n.CatalogInfo(tempdir, 'test', 'utf-8')
|
2014-09-21 10:17:02 -05:00
|
|
|
assert cat.is_outdated() # if mo is not exist
|
|
|
|
|
2017-01-03 07:24:00 -06:00
|
|
|
mo_file = (tempdir / 'test.mo')
|
2014-09-21 10:17:02 -05:00
|
|
|
mo_file.write_text('#')
|
|
|
|
assert not cat.is_outdated() # if mo is exist and newer than po
|
|
|
|
|
2016-06-11 10:00:52 -05:00
|
|
|
os.utime(mo_file, (os.stat(mo_file).st_mtime - 10,) * 2) # to be outdate
|
2014-09-21 10:17:02 -05:00
|
|
|
assert cat.is_outdated() # if mo is exist and older than po
|
|
|
|
|
|
|
|
|
2017-01-03 07:24:00 -06:00
|
|
|
def test_catalog_write_mo(tempdir):
|
|
|
|
(tempdir / 'test.po').write_text('#')
|
|
|
|
cat = i18n.CatalogInfo(tempdir, 'test', 'utf-8')
|
2014-09-21 10:17:02 -05:00
|
|
|
cat.write_mo('en')
|
2017-01-06 09:46:26 -06:00
|
|
|
assert os.path.exists(cat.mo_path)
|
2016-01-09 10:04:38 -06:00
|
|
|
with open(cat.mo_path, 'rb') as f:
|
|
|
|
assert read_mo(f) is not None
|
2014-09-21 10:17:02 -05:00
|
|
|
|
|
|
|
|
2016-02-14 05:07:28 -06:00
|
|
|
def test_format_date():
|
|
|
|
date = datetime.date(2016, 2, 7)
|
|
|
|
|
2016-04-01 20:23:13 -05:00
|
|
|
# strftime format
|
2016-02-14 05:07:28 -06:00
|
|
|
format = '%B %d, %Y'
|
|
|
|
assert i18n.format_date(format, date=date) == 'February 07, 2016'
|
2016-02-16 10:13:00 -06:00
|
|
|
assert i18n.format_date(format, date=date, language='') == 'February 07, 2016'
|
|
|
|
assert i18n.format_date(format, date=date, language='unknown') == 'February 07, 2016'
|
2016-02-14 05:07:28 -06:00
|
|
|
assert i18n.format_date(format, date=date, language='en') == 'February 07, 2016'
|
2018-12-15 08:02:28 -06:00
|
|
|
assert i18n.format_date(format, date=date, language='ja') == '2月 07, 2016'
|
2016-02-14 05:07:28 -06:00
|
|
|
assert i18n.format_date(format, date=date, language='de') == 'Februar 07, 2016'
|
2016-01-26 10:36:43 -06:00
|
|
|
|
2016-04-01 20:23:13 -05:00
|
|
|
# raw string
|
2016-03-31 21:20:30 -05:00
|
|
|
format = 'Mon Mar 28 12:37:08 2016, commit 4367aef'
|
|
|
|
assert i18n.format_date(format, date=date) == format
|
|
|
|
|
2016-04-05 05:16:23 -05:00
|
|
|
format = '%B %d, %Y, %H:%M:%S %I %p'
|
|
|
|
datet = datetime.datetime(2016, 2, 7, 5, 11, 17, 0)
|
|
|
|
assert i18n.format_date(format, date=datet) == 'February 07, 2016, 05:11:17 05 AM'
|
|
|
|
|
2018-01-28 02:22:41 -06:00
|
|
|
format = '%B %-d, %Y, %-H:%-M:%-S %-I %p'
|
|
|
|
assert i18n.format_date(format, date=datet) == 'February 7, 2016, 5:11:17 5 AM'
|
2016-04-05 05:16:23 -05:00
|
|
|
format = '%x'
|
|
|
|
assert i18n.format_date(format, date=datet) == 'Feb 7, 2016'
|
|
|
|
format = '%X'
|
|
|
|
assert i18n.format_date(format, date=datet) == '5:11:17 AM'
|
|
|
|
assert i18n.format_date(format, date=date) == 'Feb 7, 2016'
|
|
|
|
format = '%c'
|
|
|
|
assert i18n.format_date(format, date=datet) == 'Feb 7, 2016, 5:11:17 AM'
|
|
|
|
assert i18n.format_date(format, date=date) == 'Feb 7, 2016'
|
2016-01-26 10:36:43 -06:00
|
|
|
|
2021-01-12 09:33:04 -06:00
|
|
|
# timezone
|
2021-01-12 09:39:13 -06:00
|
|
|
format = '%Z'
|
|
|
|
assert i18n.format_date(format, date=datet) == 'UTC'
|
2021-01-12 09:33:04 -06:00
|
|
|
format = '%z'
|
|
|
|
assert i18n.format_date(format, date=datet) == '+0000'
|
|
|
|
|
2016-06-11 10:00:52 -05:00
|
|
|
|
2017-06-14 13:26:15 -05:00
|
|
|
@pytest.mark.xfail(os.name != 'posix', reason="Path separators don't match on windows")
|
2017-01-06 09:46:26 -06:00
|
|
|
def test_get_filename_for_language(app):
|
2020-08-01 01:24:38 -05:00
|
|
|
app.env.temp_data['docname'] = 'index'
|
|
|
|
|
2016-01-26 10:36:43 -06:00
|
|
|
# language is en
|
|
|
|
app.env.config.language = 'en'
|
|
|
|
assert i18n.get_image_filename_for_language('foo.png', app.env) == 'foo.en.png'
|
|
|
|
assert i18n.get_image_filename_for_language('foo.bar.png', app.env) == 'foo.bar.en.png'
|
|
|
|
assert i18n.get_image_filename_for_language('dir/foo.png', app.env) == 'dir/foo.en.png'
|
|
|
|
assert i18n.get_image_filename_for_language('../foo.png', app.env) == '../foo.en.png'
|
|
|
|
assert i18n.get_image_filename_for_language('foo', app.env) == 'foo.en'
|
|
|
|
|
2016-01-29 00:05:43 -06:00
|
|
|
# modify figure_language_filename and language is 'en'
|
|
|
|
app.env.config.language = 'en'
|
|
|
|
app.env.config.figure_language_filename = 'images/{language}/{root}{ext}'
|
|
|
|
assert i18n.get_image_filename_for_language('foo.png', app.env) == 'images/en/foo.png'
|
2016-03-06 06:37:04 -06:00
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'foo.bar.png', app.env) == 'images/en/foo.bar.png'
|
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'subdir/foo.png', app.env) == 'images/en/subdir/foo.png'
|
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'../foo.png', app.env) == 'images/en/../foo.png'
|
2016-01-29 00:05:43 -06:00
|
|
|
assert i18n.get_image_filename_for_language('foo', app.env) == 'images/en/foo'
|
|
|
|
|
2016-10-12 22:34:19 -05:00
|
|
|
# new path and basename tokens
|
|
|
|
app.env.config.language = 'en'
|
|
|
|
app.env.config.figure_language_filename = '{path}{language}/{basename}{ext}'
|
|
|
|
assert i18n.get_image_filename_for_language('foo.png', app.env) == 'en/foo.png'
|
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'foo.bar.png', app.env) == 'en/foo.bar.png'
|
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'subdir/foo.png', app.env) == 'subdir/en/foo.png'
|
|
|
|
assert i18n.get_image_filename_for_language(
|
|
|
|
'../foo.png', app.env) == '../en/foo.png'
|
|
|
|
assert i18n.get_image_filename_for_language('foo', app.env) == 'en/foo'
|
|
|
|
|
2016-01-29 00:05:43 -06:00
|
|
|
# invalid figure_language_filename
|
|
|
|
app.env.config.figure_language_filename = '{root}.{invalid}{ext}'
|
2017-01-05 09:46:42 -06:00
|
|
|
with pytest.raises(SphinxError):
|
|
|
|
i18n.get_image_filename_for_language('foo.png', app.env)
|
2019-02-27 00:19:54 -06:00
|
|
|
|
2020-08-01 01:24:38 -05:00
|
|
|
# docpath (for a document in the top of source directory)
|
|
|
|
app.env.config.language = 'en'
|
|
|
|
app.env.config.figure_language_filename = '/{docpath}{language}/{basename}{ext}'
|
|
|
|
assert (i18n.get_image_filename_for_language('foo.png', app.env) ==
|
|
|
|
'/en/foo.png')
|
|
|
|
|
|
|
|
# docpath (for a document in the sub directory)
|
|
|
|
app.env.temp_data['docname'] = 'subdir/index'
|
|
|
|
assert (i18n.get_image_filename_for_language('foo.png', app.env) ==
|
|
|
|
'/subdir/en/foo.png')
|
|
|
|
|
2019-02-27 00:19:54 -06:00
|
|
|
|
|
|
|
def test_CatalogRepository(tempdir):
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs()
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#')
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#')
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub').makedirs()
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test3.po').write_text('#')
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#')
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / '.dotdir').makedirs()
|
|
|
|
(tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / '.dotdir' / 'test5.po').write_text('#')
|
|
|
|
(tempdir / 'loc1' / 'yy' / 'LC_MESSAGES').makedirs()
|
|
|
|
(tempdir / 'loc1' / 'yy' / 'LC_MESSAGES' / 'test6.po').write_text('#')
|
|
|
|
(tempdir / 'loc2' / 'xx' / 'LC_MESSAGES').makedirs()
|
|
|
|
(tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#')
|
|
|
|
(tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test7.po').write_text('#')
|
|
|
|
|
|
|
|
# for language xx
|
|
|
|
repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'xx', 'utf-8')
|
|
|
|
assert list(repo.locale_dirs) == [str(tempdir / 'loc1'),
|
|
|
|
str(tempdir / 'loc2')]
|
|
|
|
assert all(isinstance(c, i18n.CatalogInfo) for c in repo.catalogs)
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == ['sub/test3', 'sub/test4',
|
|
|
|
'test1', 'test1', 'test2', 'test7']
|
|
|
|
|
|
|
|
# for language yy
|
|
|
|
repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'yy', 'utf-8')
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == ['test6']
|
|
|
|
|
|
|
|
# unknown languages
|
|
|
|
repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'zz', 'utf-8')
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == []
|
|
|
|
|
|
|
|
# no languages
|
|
|
|
repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], None, 'utf-8')
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == []
|
|
|
|
|
|
|
|
# unknown locale_dirs
|
|
|
|
repo = i18n.CatalogRepository(tempdir, ['loc3'], None, 'utf-8')
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == []
|
|
|
|
|
|
|
|
# no locale_dirs
|
|
|
|
repo = i18n.CatalogRepository(tempdir, [], None, 'utf-8')
|
|
|
|
assert sorted(c.domain for c in repo.catalogs) == []
|