mirror of
https://github.com/django/django.git
synced 2025-11-01 20:31:40 +00:00
Cleaned up some forms tests.
Thanks Berker Peksag and Tim Graham for the reviews. Refs #24219.
This commit is contained in:
parent
84b6c76830
commit
3a4c9e1b43
5 changed files with 969 additions and 883 deletions
|
|
@ -7,7 +7,7 @@ import datetime
|
|||
from django.utils import six
|
||||
from django.utils.encoding import (
|
||||
filepath_to_uri, force_bytes, force_text, escape_uri_path,
|
||||
iri_to_uri, uri_to_iri,
|
||||
iri_to_uri, uri_to_iri, smart_text,
|
||||
)
|
||||
from django.utils.http import urlquote_plus
|
||||
|
||||
|
|
@ -42,13 +42,33 @@ class TestEncodingUtils(unittest.TestCase):
|
|||
today = datetime.date.today()
|
||||
self.assertEqual(force_bytes(today, strings_only=True), today)
|
||||
|
||||
def test_escape_uri_path(self):
|
||||
self.assertEqual(
|
||||
escape_uri_path('/;some/=awful/?path/:with/@lots/&of/+awful/chars'),
|
||||
'/%3Bsome/%3Dawful/%3Fpath/:with/@lots/&of/+awful/chars'
|
||||
)
|
||||
self.assertEqual(escape_uri_path('/foo#bar'), '/foo%23bar')
|
||||
self.assertEqual(escape_uri_path('/foo?bar'), '/foo%3Fbar')
|
||||
def test_smart_text(self):
|
||||
class Test:
|
||||
if six.PY3:
|
||||
def __str__(self):
|
||||
return 'ŠĐĆŽćžšđ'
|
||||
else:
|
||||
def __str__(self):
|
||||
return 'ŠĐĆŽćžšđ'.encode('utf-8')
|
||||
|
||||
class TestU:
|
||||
if six.PY3:
|
||||
def __str__(self):
|
||||
return 'ŠĐĆŽćžšđ'
|
||||
|
||||
def __bytes__(self):
|
||||
return b'Foo'
|
||||
else:
|
||||
def __str__(self):
|
||||
return b'Foo'
|
||||
|
||||
def __unicode__(self):
|
||||
return '\u0160\u0110\u0106\u017d\u0107\u017e\u0161\u0111'
|
||||
|
||||
self.assertEqual(smart_text(Test()), '\u0160\u0110\u0106\u017d\u0107\u017e\u0161\u0111')
|
||||
self.assertEqual(smart_text(TestU()), '\u0160\u0110\u0106\u017d\u0107\u017e\u0161\u0111')
|
||||
self.assertEqual(smart_text(1), '1')
|
||||
self.assertEqual(smart_text('foo'), 'foo')
|
||||
|
||||
|
||||
class TestRFC3987IEncodingUtils(unittest.TestCase):
|
||||
|
|
@ -114,3 +134,11 @@ class TestRFC3987IEncodingUtils(unittest.TestCase):
|
|||
for uri, iri in cases:
|
||||
self.assertEqual(iri_to_uri(uri_to_iri(uri)), uri)
|
||||
self.assertEqual(uri_to_iri(iri_to_uri(iri)), iri)
|
||||
|
||||
def test_escape_uri_path(self):
|
||||
self.assertEqual(
|
||||
escape_uri_path('/;some/=awful/?path/:with/@lots/&of/+awful/chars'),
|
||||
'/%3Bsome/%3Dawful/%3Fpath/:with/@lots/&of/+awful/chars'
|
||||
)
|
||||
self.assertEqual(escape_uri_path('/foo#bar'), '/foo%23bar')
|
||||
self.assertEqual(escape_uri_path('/foo?bar'), '/foo%3Fbar')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue