1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
from unittest.mock import Mock, patch
import pytest
import streamlink.utils.l10n as l10n
class TestLocalization:
@pytest.mark.parametrize(
("locale", "expected"),
[
("en_US", "en_US"),
("ko_KR", "ko_KR"),
],
)
def test_valid(self, locale, expected):
locale = l10n.Localization(locale)
assert locale.language_code == expected
@pytest.mark.parametrize(
"locale",
[
"enUS",
"eng_US",
"en_USA",
],
)
def test_invalid(self, locale):
with pytest.raises(LookupError):
l10n.Localization(locale)
@pytest.mark.parametrize(
"mock_getlocale",
[
Mock(return_value=(None, None)),
Mock(return_value=("en_150", None)),
Mock(side_effect=ValueError("unknown locale: foo_bar")),
],
)
def test_default(self, mock_getlocale: Mock):
with patch("locale.getlocale", mock_getlocale):
locale = l10n.Localization()
assert locale.language_code == "en_US"
assert locale.equivalent(language="en", country="US")
def test_setter(self):
with patch("locale.getlocale", Mock(return_value=(None, None))):
locale = l10n.Localization()
assert locale.language_code == "en_US"
assert locale.equivalent(language="en", country="US")
locale.language_code = "de_DE"
assert locale.language_code == "de_DE"
assert locale.equivalent(language="de", country="DE")
class TestLocalizationEquality:
@pytest.mark.parametrize(
("language", "country"),
[
(None, None),
("eng", None),
("en", None),
("en", "CA"),
("en", "CAN"),
("en", "Canada"),
],
)
def test_equivalent(self, language, country):
locale = l10n.Localization("en_CA")
assert locale.equivalent(language, country)
@pytest.mark.parametrize(
("language", "country"),
[
("en", "ca"),
("English", "Canada"),
],
)
def test_equivalent_language_country_objects(self, language, country):
locale = l10n.Localization("en_CA")
assert locale.equivalent(l10n.Language.get(language), l10n.Country.get(country))
@pytest.mark.parametrize(
"language",
[
"fra",
"fre",
],
)
def test_equivalent_remap(self, language):
locale = l10n.Localization("fr_FR")
assert locale.equivalent(language)
@pytest.mark.parametrize(
("language", "country"),
[
("eng", None),
("en", None),
("en", "US"),
("en", "Canada"),
("en", "ES"),
("en", "Spain"),
("en", "UNKNOWN"),
("UNKNOWN", "Spain"),
],
)
def test_not_equivalent(self, language, country):
locale = l10n.Localization("es_ES")
assert not locale.equivalent(language, country)
class TestCountry:
@pytest.mark.parametrize(
("country", "attr", "expected"),
[
("USA", "alpha2", "US"),
("GB", "alpha2", "GB"),
("Canada", "name", "Canada"),
],
)
def test_get_country(self, country, attr, expected):
assert getattr(l10n.Localization.get_country(country), attr) == expected
@pytest.mark.parametrize(
"country",
[
"XE",
"XEX",
"Nowhere",
],
)
def test_get_country_miss(self, country):
with pytest.raises(LookupError):
l10n.Localization.get_country(country)
def test_hash(self):
one = l10n.Country("DE", "DEU", "276", "Germany", "Federal Republic of Germany")
two = l10n.Country("DE", "DEU", "276", "Germany", "Federal Republic of Germany")
mapping = {one: "1", two: "2"}
assert one is not two
assert mapping[one] is mapping[two]
def test_country_compare(self):
assert l10n.Country("AA", "AAA", "001", "Test") == l10n.Country("AA", "AAA", "001", "Test")
def test_country_str(self):
assert (
str(l10n.Localization.get_country("Germany"))
== "Country('DE', 'DEU', '276', 'Germany', official_name='Federal Republic of Germany')"
)
class TestLanguage:
@pytest.mark.parametrize(
("language", "attr", "expected"),
[
("en", "alpha3", "eng"),
("fra", "bibliographic", "fre"),
("fre", "alpha3", "fra"),
("gre", "bibliographic", "gre"),
],
)
def test_get_language(self, language, attr, expected):
assert getattr(l10n.Localization.get_language(language), attr) == expected
@pytest.mark.parametrize(
"language",
[
"00",
"000",
"0000",
],
)
def test_get_language_miss(self, language):
with pytest.raises(LookupError):
l10n.Localization.get_language(language)
def test_hash(self):
one = l10n.Language("de", "deu", "German", "ger")
two = l10n.Language("de", "deu", "German", "ger")
mapping = {one: "1", two: "2"}
assert one is not two
assert mapping[one] is mapping[two]
def test_language_compare(self):
assert l10n.Language("AA", "AAA", "Test") == l10n.Language("AA", None, "Test")
assert l10n.Language("BB", "BBB", "Test") != l10n.Language("AA", None, "Test")
def test_language_str(self):
assert str(l10n.Localization.get_language("German")) == "Language('de', 'deu', 'German', bibliographic='ger')"
# issue #3517: language lookups without alpha2 but with alpha3 codes should not raise
def test_language_a3_no_a2(self):
lang = l10n.Localization.get_language("des")
assert lang.alpha2 == ""
assert lang.alpha3 == "des"
assert lang.name == "Desano"
assert lang.bibliographic == ""
# issue #3057: generic "en" lookups via pycountry yield the "En" language, but not "English"
@pytest.mark.parametrize(
"language",
[
"en",
"eng",
"English",
],
)
def test_language_en(self, language):
lang = l10n.Localization.get_language(language)
assert lang.alpha2 == "en"
assert lang.alpha3 == "eng"
assert lang.name == "English"
assert lang.bibliographic == ""
|