LibBotUniversal/tests/test_i18n_sync.py

55 lines
1.7 KiB
Python
Raw Normal View History

2023-08-06 13:51:23 +03:00
from pathlib import Path
from typing import Any, List, Union
import pytest
2024-12-18 15:16:37 +02:00
from libbot.i18n import _, in_all_locales, in_every_locale
2023-08-06 13:51:23 +03:00
@pytest.mark.parametrize(
"key, args, locale, expected",
[
("foo", [], None, "bar"),
("foo", [], "uk", "бар"),
("example", ["messages"], None, "okay"),
("example", ["messages"], "uk", "окей"),
("nested", ["callbacks", "default"], None, "sure"),
("nested", ["callbacks", "default"], "uk", "авжеж"),
],
)
2023-08-06 20:11:16 +03:00
def test_i18n_get(
key: str,
args: List[str],
locale: Union[str, None],
expected: Any,
location_locale: Path,
):
2023-08-06 13:51:23 +03:00
assert (
2024-12-18 15:16:37 +02:00
_(key, *args, locale=locale, locales_root=location_locale)
2023-08-06 13:51:23 +03:00
if locale is not None
2024-12-18 15:16:37 +02:00
else _(key, *args, locales_root=location_locale)
2023-08-06 13:51:23 +03:00
) == expected
@pytest.mark.parametrize(
"key, args, expected",
[
("foo", [], ["bar", "бар"]),
("example", ["messages"], ["okay", "окей"]),
("nested", ["callbacks", "default"], ["sure", "авжеж"]),
],
)
2024-12-18 15:16:37 +02:00
def test_i18n_in_all_locales(key: str, args: List[str], expected: Any, location_locale: Path):
assert (in_all_locales(key, *args, locales_root=location_locale)) == expected
2023-08-06 13:51:23 +03:00
@pytest.mark.parametrize(
"key, args, expected",
[
("foo", [], {"en": "bar", "uk": "бар"}),
("example", ["messages"], {"en": "okay", "uk": "окей"}),
("nested", ["callbacks", "default"], {"en": "sure", "uk": "авжеж"}),
],
)
2024-12-18 15:16:37 +02:00
def test_i18n_in_every_locale(key: str, args: List[str], expected: Any, location_locale: Path):
assert (in_every_locale(key, *args, locales_root=location_locale)) == expected