LibBotUniversal/tests/test_i18n_sync.py

60 lines
1.7 KiB
Python
Raw Permalink Normal View History

2023-08-06 13:51:23 +03:00
from pathlib import Path
from typing import Any, List, Union
import pytest
from libbot.i18n import sync
@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 (
2023-08-06 20:11:16 +03:00
sync._(key, *args, locale=locale, locales_root=location_locale)
2023-08-06 13:51:23 +03:00
if locale is not None
2023-08-06 20:11:16 +03:00
else sync._(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", "авжеж"]),
],
)
2023-08-06 20:11:16 +03:00
def test_i18n_in_all_locales(
key: str, args: List[str], expected: Any, location_locale: Path
):
assert (sync.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": "авжеж"}),
],
)
2023-08-06 20:11:16 +03:00
def test_i18n_in_every_locale(
key: str, args: List[str], expected: Any, location_locale: Path
):
assert (sync.in_every_locale(key, *args, locales_root=location_locale)) == expected