summaryrefslogtreecommitdiff
path: root/tests/regressiontests
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2010-09-11 01:41:53 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2010-09-11 01:41:53 +0000
commitb2d2cb4a314e4d084d7d726752c93afb18c55b4e (patch)
tree24ee4130fba5835617cabe2d3f479a4bc8cce65d /tests/regressiontests
parent3444b065bae2261b66c6c757683c64f8e8fae532 (diff)
Improved unicode-type, ASCII-convertible header handling in
HttpResponse. Fixed #8765. Thanks to SmileyChris and semenov for working on this one. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests')
-rw-r--r--tests/regressiontests/httpwrappers/tests.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index 23aa526a37..d3991aad86 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -204,9 +204,18 @@ class HttpResponseTests(unittest.TestCase):
r['value'] = u'test value'
self.failUnless(isinstance(r['value'], str))
- # An error is raised When a unicode object with non-ascii is assigned.
+ # An error is raised ~hen a unicode object with non-ascii is assigned.
self.assertRaises(UnicodeEncodeError, r.__setitem__, 'value', u't\xebst value')
+ # An error is raised when a unicode object with non-ASCII format is
+ # passed as initial mimetype or content_type.
+ self.assertRaises(UnicodeEncodeError, HttpResponse,
+ mimetype=u't\xebst value')
+
+ # HttpResponse headers must be convertible to ASCII.
+ self.assertRaises(UnicodeEncodeError, HttpResponse,
+ content_type=u't\xebst value')
+
# The response also converts unicode keys to strings.)
r[u'test'] = 'testing key'
l = list(r.items())