summaryrefslogtreecommitdiffstats
path: root/tests/test_ipalib/test_request.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-12-18 14:01:59 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-12-18 14:01:59 -0700
commitdc54dee622bf9ff95a59530423ac5caa01868373 (patch)
tree77146ebd3fb1e6bcf793d78171c7d6a2a7c71ddc /tests/test_ipalib/test_request.py
parent46e37ab14491db06ffa46b682c079c397e644014 (diff)
downloadfreeipa-dc54dee622bf9ff95a59530423ac5caa01868373.tar.gz
freeipa-dc54dee622bf9ff95a59530423ac5caa01868373.tar.xz
freeipa-dc54dee622bf9ff95a59530423ac5caa01868373.zip
Started work on per-request gettext setup
Diffstat (limited to 'tests/test_ipalib/test_request.py')
-rw-r--r--tests/test_ipalib/test_request.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/test_ipalib/test_request.py b/tests/test_ipalib/test_request.py
new file mode 100644
index 000000000..7ccf9b828
--- /dev/null
+++ b/tests/test_ipalib/test_request.py
@@ -0,0 +1,56 @@
+# Authors:
+# Jason Gerard DeRose <jderose@redhat.com>
+#
+# Copyright (C) 2008 Red Hat
+# see file 'COPYING' for use and warranty contextrmation
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; version 2 only
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+"""
+Test the `ipalib.request` module.
+"""
+
+import locale
+from tests.util import raises
+from ipalib.constants import OVERRIDE_ERROR
+from ipalib import request
+
+
+def test_set_languages():
+ """
+ Test the `ipalib.request.set_languages` function.
+ """
+ f = request.set_languages
+ c = request.context
+ langs = ('ru', 'en')
+
+ # Test that StandardError is raised if languages has already been set:
+ assert not hasattr(c, 'languages')
+ c.languages = None
+ e = raises(StandardError, f, *langs)
+ assert str(e) == OVERRIDE_ERROR % ('context.languages', None, langs)
+ del c.languages
+
+ # Test setting the languages:
+ assert not hasattr(c, 'languages')
+ f(*langs)
+ assert c.languages == langs
+ del c.languages
+
+ # Test setting language from locale.getdefaultlocale()
+ assert not hasattr(c, 'languages')
+ f()
+ assert c.languages == locale.getdefaultlocale()[:1]
+ del c.languages
+ assert not hasattr(c, 'languages')