annotate babel/tests/core.py @ 536:9facabfe91d0

catch exception if environment contains an invalid locale setting (fixes #200)
author fschwarz
date Fri, 11 Mar 2011 16:20:57 +0000
parents e93f68837913
children
rev   line source
3
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
1 # -*- coding: utf-8 -*-
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
2 #
532
e93f68837913 Update the copyright line.
jruigrok
parents: 14
diff changeset
3 # Copyright (C) 2007-2011 Edgewall Software
3
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
4 # All rights reserved.
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
5 #
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
6 # This software is licensed as described in the file COPYING, which
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
7 # you should have received as part of this distribution. The terms
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
8 # are also available at http://babel.edgewall.org/wiki/License.
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
9 #
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
10 # This software consists of voluntary contributions made by many
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
11 # individuals. For the exact contribution history, see the revision
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
12 # history and logs, available at http://babel.edgewall.org/log/.
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
13
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
14 import doctest
536
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
15 import os
3
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
16 import unittest
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
17
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
18 from babel import core
536
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
19 from babel.core import default_locale
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
20
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
21 class DefaultLocaleTest(unittest.TestCase):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
22
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
23 def setUp(self):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
24 self._old_locale_settings = self._current_locale_settings()
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
25
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
26 def tearDown(self):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
27 self._set_locale_settings(self._old_locale_settings)
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
28
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
29 def _current_locale_settings(self):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
30 settings = {}
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
31 for name in ('LANGUAGE', 'LC_ALL', 'LC_CTYPE', 'LANG'):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
32 settings[name] = os.environ[name]
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
33 return settings
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
34
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
35 def _set_locale_settings(self, settings):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
36 for name, value in settings.items():
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
37 os.environ[name] = value
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
38
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
39 def test_ignore_invalid_locales_in_lc_ctype(self):
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
40 # This is a regression test specifically for a bad LC_CTYPE setting on
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
41 # MacOS X 10.6 (#200)
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
42 os.environ['LC_CTYPE'] = 'UTF-8'
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
43 # must not throw an exception
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
44 default_locale('LC_CTYPE')
3
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
45
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
46 def suite():
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
47 suite = unittest.TestSuite()
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
48 suite.addTest(doctest.DocTestSuite(core))
536
9facabfe91d0 catch exception if environment contains an invalid locale setting (fixes #200)
fschwarz
parents: 532
diff changeset
49 suite.addTest(unittest.makeSuite(DefaultLocaleTest))
3
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
50 return suite
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
51
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
52 if __name__ == '__main__':
e9eaddab598e Import of initial code base.
cmlenz
parents:
diff changeset
53 unittest.main(defaultTest='suite')
Copyright (C) 2012-2017 Edgewall Software