Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
# coding: utf-8
|
2010-09-27 23:17:08 +08:00
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
from django.utils.text import *
|
|
|
|
from django.utils.http import urlquote, urlquote_plus, cookie_date, http_date
|
|
|
|
from django.utils.encoding import iri_to_uri
|
2011-05-06 21:29:44 +08:00
|
|
|
from django.utils.translation import override
|
2010-09-27 23:17:08 +08:00
|
|
|
|
|
|
|
class TextTests(TestCase):
|
|
|
|
"""
|
|
|
|
Tests for stuff in django.utils.text and other text munging util functions.
|
|
|
|
"""
|
|
|
|
|
2010-12-13 06:53:49 +08:00
|
|
|
def test_get_text_list(self):
|
|
|
|
self.assertEqual(get_text_list(['a', 'b', 'c', 'd']), u'a, b, c or d')
|
|
|
|
self.assertEqual(get_text_list(['a', 'b', 'c'], 'and'), u'a, b and c')
|
|
|
|
self.assertEqual(get_text_list(['a', 'b'], 'and'), u'a and b')
|
|
|
|
self.assertEqual(get_text_list(['a']), u'a')
|
|
|
|
self.assertEqual(get_text_list([]), u'')
|
2011-05-06 21:29:44 +08:00
|
|
|
with override('ar'):
|
|
|
|
self.assertEqual(get_text_list(['a', 'b', 'c']), u"a، b أو c")
|
2010-12-13 06:53:49 +08:00
|
|
|
|
2010-09-27 23:17:08 +08:00
|
|
|
def test_smart_split(self):
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(r'''This is "a person" test.''')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'This', u'is', u'"a person"', u'test.'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(r'''This is "a person's" test.'''))[2],
|
2010-09-27 23:17:08 +08:00
|
|
|
u'"a person\'s"')
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(r'''This is "a person\"s" test.'''))[2],
|
2010-09-27 23:17:08 +08:00
|
|
|
u'"a person\\"s"')
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split('''"a 'one''')), [u'"a', u"'one"])
|
2010-09-27 23:17:08 +08:00
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(r'''all friends' tests'''))[1],
|
2010-09-27 23:17:08 +08:00
|
|
|
"friends'")
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u'url search_page words="something else"')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u'words="something else"'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u"url search_page words='something else'")),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u"words='something else'"])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u'url search_page words "something else"')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u'words', u'"something else"'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u'url search_page words-"something else"')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u'words-"something else"'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u'url search_page words=hello')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u'words=hello'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split(u'url search_page words="something else')),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u'url', u'search_page', u'words="something', u'else'])
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(list(smart_split("cut:','|cut:' '")),
|
2010-09-27 23:17:08 +08:00
|
|
|
[u"cut:','|cut:' '"])
|
|
|
|
|
|
|
|
def test_urlquote(self):
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(urlquote(u'Paris & Orl\xe9ans'),
|
2010-09-27 23:17:08 +08:00
|
|
|
u'Paris%20%26%20Orl%C3%A9ans')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(urlquote(u'Paris & Orl\xe9ans', safe="&"),
|
2010-09-27 23:17:08 +08:00
|
|
|
u'Paris%20&%20Orl%C3%A9ans')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(urlquote_plus(u'Paris & Orl\xe9ans'),
|
2010-09-27 23:17:08 +08:00
|
|
|
u'Paris+%26+Orl%C3%A9ans')
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(urlquote_plus(u'Paris & Orl\xe9ans', safe="&"),
|
2010-09-27 23:17:08 +08:00
|
|
|
u'Paris+&+Orl%C3%A9ans')
|
|
|
|
|
|
|
|
def test_cookie_date(self):
|
|
|
|
t = 1167616461.0
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(cookie_date(t), 'Mon, 01-Jan-2007 01:54:21 GMT')
|
2010-09-27 23:17:08 +08:00
|
|
|
|
|
|
|
def test_http_date(self):
|
|
|
|
t = 1167616461.0
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(http_date(t), 'Mon, 01 Jan 2007 01:54:21 GMT')
|
2010-09-27 23:17:08 +08:00
|
|
|
|
|
|
|
def test_iri_to_uri(self):
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(iri_to_uri(u'red%09ros\xe9#red'),
|
2010-09-27 23:17:08 +08:00
|
|
|
'red%09ros%C3%A9#red')
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(iri_to_uri(u'/blog/for/J\xfcrgen M\xfcnster/'),
|
2010-09-27 23:17:08 +08:00
|
|
|
'/blog/for/J%C3%BCrgen%20M%C3%BCnster/')
|
|
|
|
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(iri_to_uri(u'locations/%s' % urlquote_plus(u'Paris & Orl\xe9ans')),
|
2010-09-27 23:17:08 +08:00
|
|
|
'locations/Paris+%26+Orl%C3%A9ans')
|
|
|
|
|
|
|
|
def test_iri_to_uri_idempotent(self):
|
2011-03-03 23:04:39 +08:00
|
|
|
self.assertEqual(iri_to_uri(iri_to_uri(u'red%09ros\xe9#red')),
|
2010-09-27 23:17:08 +08:00
|
|
|
'red%09ros%C3%A9#red')
|