diff options
author | Dan Nicholson <dbn@endlessos.org> | 2024-11-07 10:59:02 -0700 |
---|---|---|
committer | Dan Nicholson <dbn@endlessos.org> | 2024-11-21 16:50:31 -0700 |
commit | 6f4fadf65def83a6a6c885e4aaa11f8982f37916 (patch) | |
tree | 5b50caadc24c5b960537096ba41c2443697d864f /tests/core | |
parent | fd4c29a189e53a1e085df5b9b9a05cac9351b3ef (diff) | |
download | redot-engine-6f4fadf65def83a6a6c885e4aaa11f8982f37916.tar.gz |
Expose standardize_locale add_default param publicly
Comparing locales can have surprising outcomes since it standardizes
locales with defaults. For example, zh and zh_CN result in an exact
match since the defaults change them both to zh_Hans_CN. Expose the
add_default parameter publicly with a default of false so the fully
standardized locale can be inspected.
Diffstat (limited to 'tests/core')
-rw-r--r-- | tests/core/string/test_translation_server.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/core/string/test_translation_server.h b/tests/core/string/test_translation_server.h index 6668a7b57b..1274d8810e 100644 --- a/tests/core/string/test_translation_server.h +++ b/tests/core/string/test_translation_server.h @@ -104,6 +104,36 @@ TEST_CASE("[TranslationServer] Locale operations") { res = ts->standardize_locale(loc); CHECK(res == "de_DE"); + + // No added defaults. + loc = "es_ES"; + res = ts->standardize_locale(loc, true); + + CHECK(res == "es_ES"); + + // Add default script. + loc = "az_AZ"; + res = ts->standardize_locale(loc, true); + + CHECK(res == "az_Latn_AZ"); + + // Add default country. + loc = "pa_Arab"; + res = ts->standardize_locale(loc, true); + + CHECK(res == "pa_Arab_PK"); + + // Add default script and country. + loc = "zh"; + res = ts->standardize_locale(loc, true); + + CHECK(res == "zh_Hans_CN"); + + // Explicitly don't add defaults. + loc = "zh"; + res = ts->standardize_locale(loc, false); + + CHECK(res == "zh"); } TEST_CASE("[TranslationServer] Comparing locales") { |