mirror of
https://github.com/python/cpython.git
synced 2025-11-01 02:38:53 +00:00
Fix for bugs: Issue4675 and Issue4962.
This commit is contained in:
parent
e7c9e092b3
commit
5e95e763e1
4 changed files with 22 additions and 2 deletions
|
|
@ -582,6 +582,22 @@ class Pathname_Tests(unittest.TestCase):
|
|||
"url2pathname() failed; %s != %s" %
|
||||
(expect, result))
|
||||
|
||||
class Utility_Tests(unittest.TestCase):
|
||||
"""Testcase to test the various utility functions in the urllib."""
|
||||
|
||||
def test_splitpasswd(self):
|
||||
"""Some of the password examples are not sensible, but it is added to
|
||||
confirming to RFC2617 and addressing issue4675.
|
||||
"""
|
||||
self.assertEqual(('user', 'ab'),urllib.splitpasswd('user:ab'))
|
||||
self.assertEqual(('user', 'a\nb'),urllib.splitpasswd('user:a\nb'))
|
||||
self.assertEqual(('user', 'a\tb'),urllib.splitpasswd('user:a\tb'))
|
||||
self.assertEqual(('user', 'a\rb'),urllib.splitpasswd('user:a\rb'))
|
||||
self.assertEqual(('user', 'a\fb'),urllib.splitpasswd('user:a\fb'))
|
||||
self.assertEqual(('user', 'a\vb'),urllib.splitpasswd('user:a\vb'))
|
||||
self.assertEqual(('user', 'a:b'),urllib.splitpasswd('user:a:b'))
|
||||
|
||||
|
||||
# Just commented them out.
|
||||
# Can't really tell why keep failing in windows and sparc.
|
||||
# Everywhere else they work ok, but on those machines, someteimes
|
||||
|
|
@ -676,6 +692,7 @@ def test_main():
|
|||
UnquotingTests,
|
||||
urlencode_Tests,
|
||||
Pathname_Tests,
|
||||
Utility_Tests,
|
||||
#FTPWrapperTests,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue