mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
# coding: utf-8
|
|
|
|
# python libs
|
|
from __future__ import absolute_import
|
|
|
|
# salt testing libs
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import patch, NO_MOCK, NO_MOCK_REASON
|
|
|
|
# salt libs
|
|
import salt.ext.six as six
|
|
from salt.ext.six.moves import reload_module
|
|
from salt.utils import locales
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class TestLocales(TestCase):
|
|
def test_get_encodings(self):
|
|
# reload locales modules before and after to defeat memoization of
|
|
# get_encodings()
|
|
reload_module(locales)
|
|
with patch('sys.getdefaultencoding', return_value='xyzzy'):
|
|
encodings = locales.get_encodings()
|
|
for enc in (__salt_system_encoding__, 'xyzzy', 'utf-8', 'latin-1'):
|
|
self.assertIn(enc, encodings)
|
|
reload_module(locales)
|
|
|
|
def test_sdecode(self):
|
|
b = six.b('\xe7\xb9\x81\xe4\xbd\x93')
|
|
u = u'\u7e41\u4f53'
|
|
if six.PY2:
|
|
# Under Py3, the above `b` as bytes, will never decode as anything even comparable using `ascii`
|
|
# but no unicode error will be raised, as such, sdecode will return the poorly decoded string
|
|
with patch('salt.utils.locales.get_encodings', return_value=['ascii']):
|
|
self.assertEqual(locales.sdecode(b), b) # no decode
|
|
with patch('salt.utils.locales.get_encodings', return_value=['utf-8']):
|
|
self.assertEqual(locales.sdecode(b), u)
|
|
# Non strings are left untouched
|
|
with patch('salt.utils.locales.get_encodings', return_value=['utf-8']):
|
|
self.assertEqual(locales.sdecode(1), 1)
|
|
|
|
def test_split_locale(self):
|
|
self.assertDictEqual(
|
|
locales.split_locale('ca_ES.UTF-8@valencia utf-8'),
|
|
{'charmap': 'utf-8',
|
|
'modifier': 'valencia',
|
|
'codeset': 'UTF-8',
|
|
'language': 'ca',
|
|
'territory': 'ES'})
|
|
|
|
def test_join_locale(self):
|
|
self.assertEqual(
|
|
locales.join_locale(
|
|
{'charmap': 'utf-8',
|
|
'modifier': 'valencia',
|
|
'codeset': 'UTF-8',
|
|
'language': 'ca',
|
|
'territory': 'ES'}),
|
|
'ca_ES.UTF-8@valencia utf-8')
|
|
|
|
def test_normalize_locale(self):
|
|
self.assertEqual(
|
|
locales.normalize_locale('ca_es.UTF-8@valencia utf-8'),
|
|
'ca_ES.utf8@valencia')
|