blob: 9b5914e3ca18139c84da037688b64c81488f3866 [file] [log] [blame]
Georg Brandla4f46e12010-02-07 17:03:15 +00001from test.test_support import run_unittest
Hirokazu Yamamotofbf63a72009-06-05 05:15:58 +00002from _locale import (setlocale, LC_NUMERIC, localeconv, Error)
3try:
4 from _locale import (RADIXCHAR, THOUSEP, nl_langinfo)
5except ImportError:
6 nl_langinfo = None
7
Brett Cannon2ad68e62004-09-06 23:30:27 +00008import unittest
Hirokazu Yamamotofbf63a72009-06-05 05:15:58 +00009import sys
Skip Montanarof8948ca2005-09-19 03:54:46 +000010from platform import uname
11
12if uname()[0] == "Darwin":
13 maj, min, mic = [int(part) for part in uname()[2].split(".")]
14 if (maj, min, mic) < (8, 0, 0):
Benjamin Petersonbec087f2009-03-26 21:10:30 +000015 raise unittest.SkipTest("locale support broken for OS X < 10.4")
Martin v. Löwisf5b93732003-09-04 18:24:47 +000016
17candidate_locales = ['es_UY', 'fr_FR', 'fi_FI', 'es_CO', 'pt_PT', 'it_IT',
Jeremy Hyltonb7b1db92003-09-10 20:19:54 +000018 'et_EE', 'es_PY', 'no_NO', 'nl_NL', 'lv_LV', 'el_GR', 'be_BY', 'fr_BE',
19 'ro_RO', 'ru_UA', 'ru_RU', 'es_VE', 'ca_ES', 'se_NO', 'es_EC', 'id_ID',
20 'ka_GE', 'es_CL', 'hu_HU', 'wa_BE', 'lt_LT', 'sl_SI', 'hr_HR', 'es_AR',
21 'es_ES', 'oc_FR', 'gl_ES', 'bg_BG', 'is_IS', 'mk_MK', 'de_AT', 'pt_BR',
22 'da_DK', 'nn_NO', 'cs_CZ', 'de_LU', 'es_BO', 'sq_AL', 'sk_SK', 'fr_CH',
23 'de_DE', 'sr_YU', 'br_FR', 'nl_BE', 'sv_FI', 'pl_PL', 'fr_CA', 'fo_FO',
24 'bs_BA', 'fr_LU', 'kl_GL', 'fa_IR', 'de_BE', 'sv_SE', 'it_CH', 'uk_UA',
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020025 'eu_ES', 'vi_VN', 'af_ZA', 'nb_NO', 'en_DK', 'tg_TJ', 'ps_AF.UTF-8', 'en_US',
Serhiy Storchaka637c8e82015-06-08 18:48:33 +030026 'fr_FR.ISO8859-1', 'fr_FR.UTF-8', 'fr_FR.ISO8859-15@euro',
27 'ru_RU.KOI8-R', 'ko_KR.eucKR']
Martin v. Löwisf5b93732003-09-04 18:24:47 +000028
Hirokazu Yamamotofbf63a72009-06-05 05:15:58 +000029# Workaround for MSVC6(debug) crash bug
30if "MSC v.1200" in sys.version:
31 def accept(loc):
32 a = loc.split(".")
33 return not(len(a) == 2 and len(a[-1]) >= 9)
34 candidate_locales = [loc for loc in candidate_locales if accept(loc)]
35
Brett Cannone94e74a2005-03-01 03:15:50 +000036# List known locale values to test against when available.
37# Dict formatted as ``<locale> : (<decimal_point>, <thousands_sep>)``. If a
38# value is not known, use '' .
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020039known_numerics = {
40 'en_US': ('.', ','),
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020041 'de_DE' : (',', '.'),
Serhiy Storchaka637c8e82015-06-08 18:48:33 +030042 'fr_FR.UTF-8' : (',', ' '),
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020043 'ps_AF.UTF-8' : ('\xd9\xab', '\xd9\xac'),
44}
Brett Cannone94e74a2005-03-01 03:15:50 +000045
Brett Cannon2ad68e62004-09-06 23:30:27 +000046class _LocaleTests(unittest.TestCase):
47
48 def setUp(self):
49 self.oldlocale = setlocale(LC_NUMERIC)
50
51 def tearDown(self):
52 setlocale(LC_NUMERIC, self.oldlocale)
53
Brett Cannone94e74a2005-03-01 03:15:50 +000054 # Want to know what value was calculated, what it was compared against,
55 # what function was used for the calculation, what type of data was used,
56 # the locale that was supposedly set, and the actual locale that is set.
57 lc_numeric_err_msg = "%s != %s (%s for %s; set to %s, using %s)"
58
59 def numeric_tester(self, calc_type, calc_value, data_type, used_locale):
60 """Compare calculation against known value, if available"""
61 try:
62 set_locale = setlocale(LC_NUMERIC)
63 except Error:
64 set_locale = "<not able to determine>"
65 known_value = known_numerics.get(used_locale,
Benjamin Petersonb3af6012009-01-16 02:55:24 +000066 ('', ''))[data_type == 'thousands_sep']
Brett Cannone94e74a2005-03-01 03:15:50 +000067 if known_value and calc_value:
Ezio Melotti2623a372010-11-21 13:34:58 +000068 self.assertEqual(calc_value, known_value,
Brett Cannone94e74a2005-03-01 03:15:50 +000069 self.lc_numeric_err_msg % (
70 calc_value, known_value,
71 calc_type, data_type, set_locale,
72 used_locale))
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020073 return True
Brett Cannone94e74a2005-03-01 03:15:50 +000074
Hirokazu Yamamotofbf63a72009-06-05 05:15:58 +000075 @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available")
Brett Cannone94e74a2005-03-01 03:15:50 +000076 def test_lc_numeric_nl_langinfo(self):
77 # Test nl_langinfo against known values
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020078 tested = False
Brett Cannone94e74a2005-03-01 03:15:50 +000079 for loc in candidate_locales:
80 try:
81 setlocale(LC_NUMERIC, loc)
82 except Error:
83 continue
84 for li, lc in ((RADIXCHAR, "decimal_point"),
85 (THOUSEP, "thousands_sep")):
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020086 if self.numeric_tester('nl_langinfo', nl_langinfo(li), lc, loc):
87 tested = True
88 if not tested:
89 self.skipTest('no suitable locales')
Brett Cannone94e74a2005-03-01 03:15:50 +000090
91 def test_lc_numeric_localeconv(self):
92 # Test localeconv against known values
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020093 tested = False
Brett Cannone94e74a2005-03-01 03:15:50 +000094 for loc in candidate_locales:
95 try:
96 setlocale(LC_NUMERIC, loc)
97 except Error:
98 continue
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +020099 formatting = localeconv()
Georg Brandl9be59982009-06-06 05:54:34 +0000100 for lc in ("decimal_point", "thousands_sep"):
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +0200101 if self.numeric_tester('localeconv', formatting[lc], lc, loc):
102 tested = True
103 if not tested:
104 self.skipTest('no suitable locales')
Brett Cannone94e74a2005-03-01 03:15:50 +0000105
Hirokazu Yamamotofbf63a72009-06-05 05:15:58 +0000106 @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available")
Brett Cannone94e74a2005-03-01 03:15:50 +0000107 def test_lc_numeric_basic(self):
108 # Test nl_langinfo against localeconv
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +0200109 tested = False
Brett Cannon2ad68e62004-09-06 23:30:27 +0000110 for loc in candidate_locales:
111 try:
112 setlocale(LC_NUMERIC, loc)
113 except Error:
114 continue
115 for li, lc in ((RADIXCHAR, "decimal_point"),
116 (THOUSEP, "thousands_sep")):
117 nl_radixchar = nl_langinfo(li)
118 li_radixchar = localeconv()[lc]
Brett Cannon85ae1a62004-09-08 02:02:41 +0000119 try:
120 set_locale = setlocale(LC_NUMERIC)
121 except Error:
122 set_locale = "<not able to determine>"
Ezio Melotti2623a372010-11-21 13:34:58 +0000123 self.assertEqual(nl_radixchar, li_radixchar,
Brett Cannone94e74a2005-03-01 03:15:50 +0000124 "%s (nl_langinfo) != %s (localeconv) "
125 "(set to %s, using %s)" % (
126 nl_radixchar, li_radixchar,
127 loc, set_locale))
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +0200128 tested = True
129 if not tested:
130 self.skipTest('no suitable locales')
Brett Cannone94e74a2005-03-01 03:15:50 +0000131
Fredrik Lundh24f0fa92005-12-29 20:35:52 +0000132 def test_float_parsing(self):
133 # Bug #1391872: Test whether float parsing is okay on European
134 # locales.
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +0200135 tested = False
Fredrik Lundh24f0fa92005-12-29 20:35:52 +0000136 for loc in candidate_locales:
137 try:
138 setlocale(LC_NUMERIC, loc)
139 except Error:
140 continue
Neal Norwitzbb459732006-02-19 00:13:15 +0000141
142 # Ignore buggy locale databases. (Mac OS 10.4 and some other BSDs)
143 if loc == 'eu_ES' and localeconv()['decimal_point'] == "' ":
144 continue
145
Ezio Melotti2623a372010-11-21 13:34:58 +0000146 self.assertEqual(int(eval('3.14') * 100), 314,
Brett Cannon2dbf2a92006-01-19 07:09:09 +0000147 "using eval('3.14') failed for %s" % loc)
Ezio Melotti2623a372010-11-21 13:34:58 +0000148 self.assertEqual(int(float('3.14') * 100), 314,
Brett Cannon2dbf2a92006-01-19 07:09:09 +0000149 "using float('3.14') failed for %s" % loc)
Martin v. Löwisfcfff0a2006-07-03 12:19:50 +0000150 if localeconv()['decimal_point'] != '.':
151 self.assertRaises(ValueError, float,
152 localeconv()['decimal_point'].join(['1', '23']))
Serhiy Storchakaad9a1ba2015-02-18 08:04:26 +0200153 tested = True
154 if not tested:
155 self.skipTest('no suitable locales')
156
Fredrik Lundh24f0fa92005-12-29 20:35:52 +0000157
Brett Cannon2ad68e62004-09-06 23:30:27 +0000158def test_main():
159 run_unittest(_LocaleTests)
160
161if __name__ == '__main__':
162 test_main()