2003-04-25 06:39:47 -03:00
|
|
|
"""Regresssion tests for urllib"""
|
|
|
|
|
2000-08-31 12:48:10 -03:00
|
|
|
import urllib
|
2004-06-05 10:30:56 -03:00
|
|
|
import httplib
|
2003-04-25 06:39:47 -03:00
|
|
|
import unittest
|
|
|
|
from test import test_support
|
|
|
|
import os
|
|
|
|
import mimetools
|
2005-08-26 05:51:34 -03:00
|
|
|
import tempfile
|
2004-06-05 10:30:56 -03:00
|
|
|
import StringIO
|
2003-04-25 06:39:47 -03:00
|
|
|
|
|
|
|
def hexescape(char):
|
|
|
|
"""Escape char as RFC 2396 specifies"""
|
|
|
|
hex_repr = hex(ord(char))[2:].upper()
|
|
|
|
if len(hex_repr) == 1:
|
|
|
|
hex_repr = "0%s" % hex_repr
|
|
|
|
return "%" + hex_repr
|
|
|
|
|
|
|
|
class urlopen_FileTests(unittest.TestCase):
|
|
|
|
"""Test urlopen() opening a temporary file.
|
|
|
|
|
|
|
|
Try to test as much functionality as possible so as to cut down on reliance
|
2004-06-29 10:07:53 -03:00
|
|
|
on connecting to the Net for testing.
|
2003-04-25 06:39:47 -03:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
"""Setup of a temp file to use for testing"""
|
|
|
|
self.text = "test_urllib: %s\n" % self.__class__.__name__
|
2003-04-25 12:01:05 -03:00
|
|
|
FILE = file(test_support.TESTFN, 'wb')
|
2003-04-25 06:39:47 -03:00
|
|
|
try:
|
|
|
|
FILE.write(self.text)
|
|
|
|
finally:
|
|
|
|
FILE.close()
|
|
|
|
self.pathname = test_support.TESTFN
|
|
|
|
self.returned_obj = urllib.urlopen("file:%s" % self.pathname)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
"""Shut down the open object"""
|
|
|
|
self.returned_obj.close()
|
2003-04-29 02:08:06 -03:00
|
|
|
os.remove(test_support.TESTFN)
|
2003-04-25 06:39:47 -03:00
|
|
|
|
|
|
|
def test_interface(self):
|
|
|
|
# Make sure object returned by urlopen() has the specified methods
|
|
|
|
for attr in ("read", "readline", "readlines", "fileno",
|
2008-01-20 07:43:03 -04:00
|
|
|
"close", "info", "geturl", "getcode", "__iter__"):
|
2003-04-25 06:39:47 -03:00
|
|
|
self.assert_(hasattr(self.returned_obj, attr),
|
|
|
|
"object returned by urlopen() lacks %s attribute" %
|
|
|
|
attr)
|
|
|
|
|
|
|
|
def test_read(self):
|
|
|
|
self.assertEqual(self.text, self.returned_obj.read())
|
|
|
|
|
|
|
|
def test_readline(self):
|
|
|
|
self.assertEqual(self.text, self.returned_obj.readline())
|
|
|
|
self.assertEqual('', self.returned_obj.readline(),
|
|
|
|
"calling readline() after exhausting the file did not"
|
|
|
|
" return an empty string")
|
2000-08-31 12:48:10 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
def test_readlines(self):
|
|
|
|
lines_list = self.returned_obj.readlines()
|
|
|
|
self.assertEqual(len(lines_list), 1,
|
|
|
|
"readlines() returned the wrong number of lines")
|
|
|
|
self.assertEqual(lines_list[0], self.text,
|
|
|
|
"readlines() returned improper text")
|
|
|
|
|
|
|
|
def test_fileno(self):
|
|
|
|
file_num = self.returned_obj.fileno()
|
|
|
|
self.assert_(isinstance(file_num, int),
|
|
|
|
"fileno() did not return an int")
|
|
|
|
self.assertEqual(os.read(file_num, len(self.text)), self.text,
|
|
|
|
"Reading on the file descriptor returned by fileno() "
|
|
|
|
"did not return the expected text")
|
|
|
|
|
|
|
|
def test_close(self):
|
|
|
|
# Test close() by calling it hear and then having it be called again
|
|
|
|
# by the tearDown() method for the test
|
|
|
|
self.returned_obj.close()
|
|
|
|
|
|
|
|
def test_info(self):
|
|
|
|
self.assert_(isinstance(self.returned_obj.info(), mimetools.Message))
|
|
|
|
|
|
|
|
def test_geturl(self):
|
|
|
|
self.assertEqual(self.returned_obj.geturl(), self.pathname)
|
|
|
|
|
2008-01-20 07:43:03 -04:00
|
|
|
def test_getcode(self):
|
|
|
|
self.assertEqual(self.returned_obj.getcode(), None)
|
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
def test_iter(self):
|
|
|
|
# Test iterator
|
|
|
|
# Don't need to count number of iterations since test would fail the
|
|
|
|
# instant it returned anything beyond the first line from the
|
|
|
|
# comparison
|
|
|
|
for line in self.returned_obj.__iter__():
|
|
|
|
self.assertEqual(line, self.text)
|
|
|
|
|
2008-09-21 18:27:51 -03:00
|
|
|
|
|
|
|
class ProxyTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# Save all proxy related env vars
|
|
|
|
self._saved_environ = dict([(k, v) for k, v in os.environ.iteritems()
|
|
|
|
if k.lower().find('proxy') >= 0])
|
|
|
|
# Delete all proxy related env vars
|
|
|
|
for k in self._saved_environ:
|
|
|
|
del os.environ[k]
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
# Restore all proxy related env vars
|
Merged revisions 66801,66803-66804,66813,66854-66856,66866,66870-66872,66874,66887,66903,66905,66911,66913,66927,66932,66938,66942,66962,66964,66973-66974,66977,66992,66998-66999,67002,67005,67007,67028,67040-67041,67044,67070,67089,67091,67101,67117-67119,67123-67124 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r66801 | andrew.kuchling | 2008-10-04 23:51:59 +0200 (Sat, 04 Oct 2008) | 1 line
Punctuation fix; expand dict.update docstring to be clearer
................
r66803 | benjamin.peterson | 2008-10-05 00:15:31 +0200 (Sun, 05 Oct 2008) | 1 line
fix typo
................
r66804 | andrew.kuchling | 2008-10-05 02:11:56 +0200 (Sun, 05 Oct 2008) | 1 line
#1415508 from Rocky Bernstein: add docstrings for enable_interspersed_args(), disable_interspersed_args()
................
r66813 | andrew.kuchling | 2008-10-06 14:07:04 +0200 (Mon, 06 Oct 2008) | 3 lines
Per Greg Ward, optparse is no longer being externally maintained.
I'll look at the bugs in the Optik bug tracker and copy them to the Python bug
tracker if they're still relevant.
................
r66854 | georg.brandl | 2008-10-08 19:20:20 +0200 (Wed, 08 Oct 2008) | 2 lines
#4059: patch up some sqlite docs.
................
r66855 | georg.brandl | 2008-10-08 19:30:55 +0200 (Wed, 08 Oct 2008) | 2 lines
#4058: fix some whatsnew markup.
................
r66856 | georg.brandl | 2008-10-08 20:47:17 +0200 (Wed, 08 Oct 2008) | 3 lines
#3935: properly support list subclasses in the C impl. of bisect.
Patch reviewed by Raymond.
................
r66866 | benjamin.peterson | 2008-10-09 22:54:43 +0200 (Thu, 09 Oct 2008) | 1 line
update paragraph about __future__ for 2.6
................
r66870 | armin.rigo | 2008-10-10 10:40:44 +0200 (Fri, 10 Oct 2008) | 2 lines
Typo: "ThreadError" is the name in the C source.
................
r66871 | benjamin.peterson | 2008-10-10 22:38:49 +0200 (Fri, 10 Oct 2008) | 1 line
fix a small typo
................
r66872 | benjamin.peterson | 2008-10-10 22:51:37 +0200 (Fri, 10 Oct 2008) | 1 line
talk about how you can unzip with zip
................
r66874 | benjamin.peterson | 2008-10-11 00:23:41 +0200 (Sat, 11 Oct 2008) | 1 line
PyGILState_Acquire -> PyGILState_Ensure
................
r66887 | benjamin.peterson | 2008-10-13 23:51:40 +0200 (Mon, 13 Oct 2008) | 1 line
document how to disable fixers
................
r66903 | benjamin.peterson | 2008-10-15 22:34:09 +0200 (Wed, 15 Oct 2008) | 1 line
don't recurse into directories that start with '.'
................
r66905 | benjamin.peterson | 2008-10-15 23:05:55 +0200 (Wed, 15 Oct 2008) | 1 line
support the optional line argument for idle
................
r66911 | benjamin.peterson | 2008-10-16 01:10:28 +0200 (Thu, 16 Oct 2008) | 41 lines
Merged revisions 66805,66841,66860,66884-66886,66893,66907,66910 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r66805 | benjamin.peterson | 2008-10-04 20:11:02 -0500 (Sat, 04 Oct 2008) | 1 line
mention what the fixes directory is for
........
r66841 | benjamin.peterson | 2008-10-07 17:48:12 -0500 (Tue, 07 Oct 2008) | 1 line
use assertFalse and assertTrue
........
r66860 | benjamin.peterson | 2008-10-08 16:05:07 -0500 (Wed, 08 Oct 2008) | 1 line
instead of abusing the pattern matcher, use start_tree to find a next binding
........
r66884 | benjamin.peterson | 2008-10-13 15:50:30 -0500 (Mon, 13 Oct 2008) | 1 line
don't print tokens to stdout when -v is given
........
r66885 | benjamin.peterson | 2008-10-13 16:28:57 -0500 (Mon, 13 Oct 2008) | 1 line
add the -x option to disable fixers
........
r66886 | benjamin.peterson | 2008-10-13 16:33:53 -0500 (Mon, 13 Oct 2008) | 1 line
cut down on some crud
........
r66893 | benjamin.peterson | 2008-10-14 17:16:54 -0500 (Tue, 14 Oct 2008) | 1 line
add an optional set literal fixer
........
r66907 | benjamin.peterson | 2008-10-15 16:59:41 -0500 (Wed, 15 Oct 2008) | 1 line
don't write backup files by default
........
r66910 | benjamin.peterson | 2008-10-15 17:43:10 -0500 (Wed, 15 Oct 2008) | 1 line
add the -n option; it stops backupfiles from being written
........
................
r66913 | benjamin.peterson | 2008-10-16 20:52:14 +0200 (Thu, 16 Oct 2008) | 1 line
document that deque indexing is O(n) #4123
................
r66927 | andrew.kuchling | 2008-10-16 22:15:47 +0200 (Thu, 16 Oct 2008) | 1 line
Fix wording (2.6.1 backport candidate)
................
r66932 | benjamin.peterson | 2008-10-16 23:09:28 +0200 (Thu, 16 Oct 2008) | 1 line
check for error conditions in _json #3623
................
r66938 | benjamin.peterson | 2008-10-16 23:27:54 +0200 (Thu, 16 Oct 2008) | 1 line
fix possible ref leak
................
r66942 | benjamin.peterson | 2008-10-16 23:48:06 +0200 (Thu, 16 Oct 2008) | 1 line
fix more possible ref leaks in _json and use Py_CLEAR
................
r66962 | benjamin.peterson | 2008-10-17 22:01:01 +0200 (Fri, 17 Oct 2008) | 1 line
clarify CALL_FUNCTION #4141
................
r66964 | georg.brandl | 2008-10-17 23:41:49 +0200 (Fri, 17 Oct 2008) | 2 lines
Fix duplicate word.
................
r66973 | armin.ronacher | 2008-10-19 10:27:43 +0200 (Sun, 19 Oct 2008) | 3 lines
Fixed #4067 by implementing _attributes and _fields for the AST root node.
................
r66974 | benjamin.peterson | 2008-10-19 15:59:01 +0200 (Sun, 19 Oct 2008) | 1 line
fix compiler warning
................
r66977 | benjamin.peterson | 2008-10-19 21:39:16 +0200 (Sun, 19 Oct 2008) | 1 line
mention -n
................
r66992 | benjamin.peterson | 2008-10-21 22:51:13 +0200 (Tue, 21 Oct 2008) | 1 line
make sure to call iteritems()
................
r66998 | benjamin.peterson | 2008-10-22 22:57:43 +0200 (Wed, 22 Oct 2008) | 1 line
fix a few typos
................
r66999 | benjamin.peterson | 2008-10-22 23:05:30 +0200 (Wed, 22 Oct 2008) | 1 line
and another typo...
................
r67002 | hirokazu.yamamoto | 2008-10-23 02:37:33 +0200 (Thu, 23 Oct 2008) | 1 line
Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL.
................
r67005 | walter.doerwald | 2008-10-23 15:11:39 +0200 (Thu, 23 Oct 2008) | 2 lines
Use the correct names of the stateless codec functions (Fixes issue 4178).
................
r67007 | benjamin.peterson | 2008-10-23 23:43:48 +0200 (Thu, 23 Oct 2008) | 1 line
only nonempty __slots__ don't work
................
r67028 | benjamin.peterson | 2008-10-26 01:27:07 +0200 (Sun, 26 Oct 2008) | 1 line
don't use a catch-all
................
r67040 | armin.rigo | 2008-10-28 18:01:21 +0100 (Tue, 28 Oct 2008) | 5 lines
Fix one of the tests: it relied on being present in an "output test" in
order to actually test what it was supposed to test, i.e. that the code
in the __del__ method did not crash. Use instead the new helper
test_support.captured_output().
................
r67041 | benjamin.peterson | 2008-10-29 21:33:00 +0100 (Wed, 29 Oct 2008) | 1 line
mention the version gettempdir() was added
................
r67044 | amaury.forgeotdarc | 2008-10-30 00:15:57 +0100 (Thu, 30 Oct 2008) | 3 lines
Correct error message in io.open():
closefd=True is the only accepted value with a file name.
................
r67070 | benjamin.peterson | 2008-10-31 21:41:44 +0100 (Fri, 31 Oct 2008) | 1 line
rephrase has_key doc
................
r67089 | benjamin.peterson | 2008-11-03 21:43:20 +0100 (Mon, 03 Nov 2008) | 1 line
clarify by splitting into multiple paragraphs
................
r67091 | benjamin.peterson | 2008-11-03 23:34:57 +0100 (Mon, 03 Nov 2008) | 1 line
move a FileIO test to test_fileio
................
r67101 | georg.brandl | 2008-11-04 21:49:35 +0100 (Tue, 04 Nov 2008) | 2 lines
#4167: fix markup glitches.
................
r67117 | georg.brandl | 2008-11-06 11:17:58 +0100 (Thu, 06 Nov 2008) | 2 lines
#4268: Use correct module for two toplevel functions.
................
r67118 | georg.brandl | 2008-11-06 11:19:11 +0100 (Thu, 06 Nov 2008) | 2 lines
#4267: small fixes in sqlite3 docs.
................
r67119 | georg.brandl | 2008-11-06 11:20:49 +0100 (Thu, 06 Nov 2008) | 2 lines
#4245: move Thread section to the top.
................
r67123 | georg.brandl | 2008-11-06 19:49:15 +0100 (Thu, 06 Nov 2008) | 2 lines
#4247: add "pass" examples to tutorial.
................
r67124 | andrew.kuchling | 2008-11-06 20:23:02 +0100 (Thu, 06 Nov 2008) | 1 line
Fix grammar error; reword two paragraphs
................
2008-11-07 04:56:27 -04:00
|
|
|
for k, v in self._saved_environ.iteritems():
|
2008-09-21 18:27:51 -03:00
|
|
|
os.environ[k] = v
|
|
|
|
|
|
|
|
def test_getproxies_environment_keep_no_proxies(self):
|
|
|
|
os.environ['NO_PROXY'] = 'localhost'
|
|
|
|
proxies = urllib.getproxies_environment()
|
|
|
|
# getproxies_environment use lowered case truncated (no '_proxy') keys
|
|
|
|
self.assertEquals('localhost', proxies['no'])
|
|
|
|
|
|
|
|
|
2004-06-05 10:30:56 -03:00
|
|
|
class urlopen_HttpTests(unittest.TestCase):
|
|
|
|
"""Test urlopen() opening a fake http connection."""
|
|
|
|
|
|
|
|
def fakehttp(self, fakedata):
|
|
|
|
class FakeSocket(StringIO.StringIO):
|
|
|
|
def sendall(self, str): pass
|
|
|
|
def makefile(self, mode, name): return self
|
|
|
|
def read(self, amt=None):
|
|
|
|
if self.closed: return ''
|
|
|
|
return StringIO.StringIO.read(self, amt)
|
|
|
|
def readline(self, length=None):
|
|
|
|
if self.closed: return ''
|
|
|
|
return StringIO.StringIO.readline(self, length)
|
|
|
|
class FakeHTTPConnection(httplib.HTTPConnection):
|
|
|
|
def connect(self):
|
|
|
|
self.sock = FakeSocket(fakedata)
|
|
|
|
assert httplib.HTTP._connection_class == httplib.HTTPConnection
|
|
|
|
httplib.HTTP._connection_class = FakeHTTPConnection
|
|
|
|
|
|
|
|
def unfakehttp(self):
|
|
|
|
httplib.HTTP._connection_class = httplib.HTTPConnection
|
|
|
|
|
|
|
|
def test_read(self):
|
|
|
|
self.fakehttp('Hello!')
|
|
|
|
try:
|
|
|
|
fp = urllib.urlopen("http://python.org/")
|
|
|
|
self.assertEqual(fp.readline(), 'Hello!')
|
|
|
|
self.assertEqual(fp.readline(), '')
|
2008-01-20 07:43:03 -04:00
|
|
|
self.assertEqual(fp.geturl(), 'http://python.org/')
|
|
|
|
self.assertEqual(fp.getcode(), 200)
|
2004-06-05 10:30:56 -03:00
|
|
|
finally:
|
|
|
|
self.unfakehttp()
|
|
|
|
|
2008-01-02 00:11:28 -04:00
|
|
|
def test_read_bogus(self):
|
2008-01-02 01:23:38 -04:00
|
|
|
# urlopen() should raise IOError for many error codes.
|
2008-01-02 00:11:28 -04:00
|
|
|
self.fakehttp('''HTTP/1.1 401 Authentication Required
|
|
|
|
Date: Wed, 02 Jan 2008 03:03:54 GMT
|
|
|
|
Server: Apache/1.3.33 (Debian GNU/Linux) mod_ssl/2.8.22 OpenSSL/0.9.7e
|
|
|
|
Connection: close
|
|
|
|
Content-Type: text/html; charset=iso-8859-1
|
|
|
|
''')
|
|
|
|
try:
|
|
|
|
self.assertRaises(IOError, urllib.urlopen, "http://python.org/")
|
|
|
|
finally:
|
|
|
|
self.unfakehttp()
|
|
|
|
|
2007-03-14 05:27:52 -03:00
|
|
|
def test_empty_socket(self):
|
2008-01-02 01:23:38 -04:00
|
|
|
# urlopen() raises IOError if the underlying socket does not send any
|
|
|
|
# data. (#1680230)
|
2007-03-14 05:27:52 -03:00
|
|
|
self.fakehttp('')
|
|
|
|
try:
|
|
|
|
self.assertRaises(IOError, urllib.urlopen, 'http://something')
|
|
|
|
finally:
|
|
|
|
self.unfakehttp()
|
|
|
|
|
2003-04-29 02:08:06 -03:00
|
|
|
class urlretrieve_FileTests(unittest.TestCase):
|
2003-04-25 06:39:47 -03:00
|
|
|
"""Test urllib.urlretrieve() on local files"""
|
|
|
|
|
2003-04-29 02:08:06 -03:00
|
|
|
def setUp(self):
|
2005-08-26 05:51:34 -03:00
|
|
|
# Create a list of temporary files. Each item in the list is a file
|
|
|
|
# name (absolute path or relative to the current working directory).
|
|
|
|
# All files in this list will be deleted in the tearDown method. Note,
|
|
|
|
# this only helps to makes sure temporary files get deleted, but it
|
|
|
|
# does nothing about trying to close files that may still be open. It
|
|
|
|
# is the responsibility of the developer to properly close files even
|
|
|
|
# when exceptional conditions occur.
|
|
|
|
self.tempFiles = []
|
|
|
|
|
2003-04-29 02:08:06 -03:00
|
|
|
# Create a temporary file.
|
2005-08-26 05:51:34 -03:00
|
|
|
self.registerFileForCleanUp(test_support.TESTFN)
|
2003-04-29 02:08:06 -03:00
|
|
|
self.text = 'testing urllib.urlretrieve'
|
2005-08-26 05:51:34 -03:00
|
|
|
try:
|
|
|
|
FILE = file(test_support.TESTFN, 'wb')
|
|
|
|
FILE.write(self.text)
|
|
|
|
FILE.close()
|
|
|
|
finally:
|
|
|
|
try: FILE.close()
|
|
|
|
except: pass
|
2003-04-29 02:08:06 -03:00
|
|
|
|
|
|
|
def tearDown(self):
|
2005-08-26 05:51:34 -03:00
|
|
|
# Delete the temporary files.
|
|
|
|
for each in self.tempFiles:
|
|
|
|
try: os.remove(each)
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
def constructLocalFileUrl(self, filePath):
|
|
|
|
return "file://%s" % urllib.pathname2url(os.path.abspath(filePath))
|
|
|
|
|
|
|
|
def createNewTempFile(self, data=""):
|
|
|
|
"""Creates a new temporary file containing the specified data,
|
|
|
|
registers the file for deletion during the test fixture tear down, and
|
|
|
|
returns the absolute path of the file."""
|
|
|
|
|
|
|
|
newFd, newFilePath = tempfile.mkstemp()
|
|
|
|
try:
|
|
|
|
self.registerFileForCleanUp(newFilePath)
|
|
|
|
newFile = os.fdopen(newFd, "wb")
|
|
|
|
newFile.write(data)
|
|
|
|
newFile.close()
|
|
|
|
finally:
|
|
|
|
try: newFile.close()
|
|
|
|
except: pass
|
|
|
|
return newFilePath
|
|
|
|
|
|
|
|
def registerFileForCleanUp(self, fileName):
|
|
|
|
self.tempFiles.append(fileName)
|
2003-04-29 02:08:06 -03:00
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
# Make sure that a local file just gets its own location returned and
|
|
|
|
# a headers value is returned.
|
|
|
|
result = urllib.urlretrieve("file:%s" % test_support.TESTFN)
|
|
|
|
self.assertEqual(result[0], test_support.TESTFN)
|
|
|
|
self.assert_(isinstance(result[1], mimetools.Message),
|
|
|
|
"did not get a mimetools.Message instance as second "
|
|
|
|
"returned value")
|
|
|
|
|
|
|
|
def test_copy(self):
|
|
|
|
# Test that setting the filename argument works.
|
|
|
|
second_temp = "%s.2" % test_support.TESTFN
|
2005-08-26 05:51:34 -03:00
|
|
|
self.registerFileForCleanUp(second_temp)
|
|
|
|
result = urllib.urlretrieve(self.constructLocalFileUrl(
|
|
|
|
test_support.TESTFN), second_temp)
|
2003-04-29 02:08:06 -03:00
|
|
|
self.assertEqual(second_temp, result[0])
|
|
|
|
self.assert_(os.path.exists(second_temp), "copy of the file was not "
|
|
|
|
"made")
|
|
|
|
FILE = file(second_temp, 'rb')
|
|
|
|
try:
|
|
|
|
text = FILE.read()
|
|
|
|
FILE.close()
|
2005-08-26 05:51:34 -03:00
|
|
|
finally:
|
|
|
|
try: FILE.close()
|
|
|
|
except: pass
|
2003-04-29 02:08:06 -03:00
|
|
|
self.assertEqual(self.text, text)
|
|
|
|
|
|
|
|
def test_reporthook(self):
|
|
|
|
# Make sure that the reporthook works.
|
|
|
|
def hooktester(count, block_size, total_size, count_holder=[0]):
|
|
|
|
self.assert_(isinstance(count, int))
|
|
|
|
self.assert_(isinstance(block_size, int))
|
|
|
|
self.assert_(isinstance(total_size, int))
|
|
|
|
self.assertEqual(count, count_holder[0])
|
|
|
|
count_holder[0] = count_holder[0] + 1
|
|
|
|
second_temp = "%s.2" % test_support.TESTFN
|
2005-08-26 05:51:34 -03:00
|
|
|
self.registerFileForCleanUp(second_temp)
|
|
|
|
urllib.urlretrieve(self.constructLocalFileUrl(test_support.TESTFN),
|
|
|
|
second_temp, hooktester)
|
|
|
|
|
|
|
|
def test_reporthook_0_bytes(self):
|
|
|
|
# Test on zero length file. Should call reporthook only 1 time.
|
|
|
|
report = []
|
|
|
|
def hooktester(count, block_size, total_size, _report=report):
|
|
|
|
_report.append((count, block_size, total_size))
|
|
|
|
srcFileName = self.createNewTempFile()
|
|
|
|
urllib.urlretrieve(self.constructLocalFileUrl(srcFileName),
|
|
|
|
test_support.TESTFN, hooktester)
|
|
|
|
self.assertEqual(len(report), 1)
|
|
|
|
self.assertEqual(report[0][2], 0)
|
|
|
|
|
|
|
|
def test_reporthook_5_bytes(self):
|
|
|
|
# Test on 5 byte file. Should call reporthook only 2 times (once when
|
|
|
|
# the "network connection" is established and once when the block is
|
|
|
|
# read). Since the block size is 8192 bytes, only one block read is
|
|
|
|
# required to read the entire file.
|
|
|
|
report = []
|
|
|
|
def hooktester(count, block_size, total_size, _report=report):
|
|
|
|
_report.append((count, block_size, total_size))
|
|
|
|
srcFileName = self.createNewTempFile("x" * 5)
|
|
|
|
urllib.urlretrieve(self.constructLocalFileUrl(srcFileName),
|
|
|
|
test_support.TESTFN, hooktester)
|
|
|
|
self.assertEqual(len(report), 2)
|
|
|
|
self.assertEqual(report[0][1], 8192)
|
|
|
|
self.assertEqual(report[0][2], 5)
|
|
|
|
|
|
|
|
def test_reporthook_8193_bytes(self):
|
|
|
|
# Test on 8193 byte file. Should call reporthook only 3 times (once
|
|
|
|
# when the "network connection" is established, once for the next 8192
|
|
|
|
# bytes, and once for the last byte).
|
|
|
|
report = []
|
|
|
|
def hooktester(count, block_size, total_size, _report=report):
|
|
|
|
_report.append((count, block_size, total_size))
|
|
|
|
srcFileName = self.createNewTempFile("x" * 8193)
|
|
|
|
urllib.urlretrieve(self.constructLocalFileUrl(srcFileName),
|
|
|
|
test_support.TESTFN, hooktester)
|
|
|
|
self.assertEqual(len(report), 3)
|
|
|
|
self.assertEqual(report[0][1], 8192)
|
|
|
|
self.assertEqual(report[0][2], 8193)
|
2001-01-28 17:12:22 -04:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
class QuotingTests(unittest.TestCase):
|
|
|
|
"""Tests for urllib.quote() and urllib.quote_plus()
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
According to RFC 2396 ("Uniform Resource Identifiers), to escape a
|
|
|
|
character you write it as '%' + <2 character US-ASCII hex value>. The Python
|
|
|
|
code of ``'%' + hex(ord(<character>))[2:]`` escapes a character properly.
|
|
|
|
Case does not matter on the hex letters.
|
|
|
|
|
|
|
|
The various character sets specified are:
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
Reserved characters : ";/?:@&=+$,"
|
|
|
|
Have special meaning in URIs and must be escaped if not being used for
|
|
|
|
their special meaning
|
|
|
|
Data characters : letters, digits, and "-_.!~*'()"
|
|
|
|
Unreserved and do not need to be escaped; can be, though, if desired
|
|
|
|
Control characters : 0x00 - 0x1F, 0x7F
|
|
|
|
Have no use in URIs so must be escaped
|
|
|
|
space : 0x20
|
|
|
|
Must be escaped
|
|
|
|
Delimiters : '<>#%"'
|
|
|
|
Must be escaped
|
|
|
|
Unwise : "{}|\^[]`"
|
|
|
|
Must be escaped
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
"""
|
|
|
|
|
|
|
|
def test_never_quote(self):
|
|
|
|
# Make sure quote() does not quote letters, digits, and "_,.-"
|
|
|
|
do_not_quote = '' .join(["ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
|
|
|
"abcdefghijklmnopqrstuvwxyz",
|
|
|
|
"0123456789",
|
|
|
|
"_.-"])
|
|
|
|
result = urllib.quote(do_not_quote)
|
|
|
|
self.assertEqual(do_not_quote, result,
|
|
|
|
"using quote(): %s != %s" % (do_not_quote, result))
|
|
|
|
result = urllib.quote_plus(do_not_quote)
|
|
|
|
self.assertEqual(do_not_quote, result,
|
|
|
|
"using quote_plus(): %s != %s" % (do_not_quote, result))
|
|
|
|
|
|
|
|
def test_default_safe(self):
|
|
|
|
# Test '/' is default value for 'safe' parameter
|
|
|
|
self.assertEqual(urllib.quote.func_defaults[0], '/')
|
|
|
|
|
|
|
|
def test_safe(self):
|
|
|
|
# Test setting 'safe' parameter does what it should do
|
|
|
|
quote_by_default = "<>"
|
|
|
|
result = urllib.quote(quote_by_default, safe=quote_by_default)
|
|
|
|
self.assertEqual(quote_by_default, result,
|
|
|
|
"using quote(): %s != %s" % (quote_by_default, result))
|
|
|
|
result = urllib.quote_plus(quote_by_default, safe=quote_by_default)
|
|
|
|
self.assertEqual(quote_by_default, result,
|
|
|
|
"using quote_plus(): %s != %s" %
|
|
|
|
(quote_by_default, result))
|
|
|
|
|
|
|
|
def test_default_quoting(self):
|
|
|
|
# Make sure all characters that should be quoted are by default sans
|
|
|
|
# space (separate test for that).
|
|
|
|
should_quote = [chr(num) for num in range(32)] # For 0x00 - 0x1F
|
|
|
|
should_quote.append('<>#%"{}|\^[]`')
|
|
|
|
should_quote.append(chr(127)) # For 0x7F
|
|
|
|
should_quote = ''.join(should_quote)
|
|
|
|
for char in should_quote:
|
|
|
|
result = urllib.quote(char)
|
|
|
|
self.assertEqual(hexescape(char), result,
|
|
|
|
"using quote(): %s should be escaped to %s, not %s" %
|
|
|
|
(char, hexescape(char), result))
|
|
|
|
result = urllib.quote_plus(char)
|
|
|
|
self.assertEqual(hexescape(char), result,
|
|
|
|
"using quote_plus(): "
|
2003-05-12 17:19:37 -03:00
|
|
|
"%s should be escapes to %s, not %s" %
|
2003-04-25 06:39:47 -03:00
|
|
|
(char, hexescape(char), result))
|
|
|
|
del should_quote
|
|
|
|
partial_quote = "ab[]cd"
|
|
|
|
expected = "ab%5B%5Dcd"
|
|
|
|
result = urllib.quote(partial_quote)
|
|
|
|
self.assertEqual(expected, result,
|
|
|
|
"using quote(): %s != %s" % (expected, result))
|
|
|
|
self.assertEqual(expected, result,
|
|
|
|
"using quote_plus(): %s != %s" % (expected, result))
|
|
|
|
|
|
|
|
def test_quoting_space(self):
|
|
|
|
# Make sure quote() and quote_plus() handle spaces as specified in
|
|
|
|
# their unique way
|
|
|
|
result = urllib.quote(' ')
|
|
|
|
self.assertEqual(result, hexescape(' '),
|
|
|
|
"using quote(): %s != %s" % (result, hexescape(' ')))
|
|
|
|
result = urllib.quote_plus(' ')
|
|
|
|
self.assertEqual(result, '+',
|
|
|
|
"using quote_plus(): %s != +" % result)
|
|
|
|
given = "a b cd e f"
|
|
|
|
expect = given.replace(' ', hexescape(' '))
|
|
|
|
result = urllib.quote(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using quote(): %s != %s" % (expect, result))
|
|
|
|
expect = given.replace(' ', '+')
|
|
|
|
result = urllib.quote_plus(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using quote_plus(): %s != %s" % (expect, result))
|
|
|
|
|
2005-09-10 11:30:09 -03:00
|
|
|
def test_quoting_plus(self):
|
|
|
|
self.assertEqual(urllib.quote_plus('alpha+beta gamma'),
|
|
|
|
'alpha%2Bbeta+gamma')
|
|
|
|
self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'),
|
|
|
|
'alpha+beta+gamma')
|
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
class UnquotingTests(unittest.TestCase):
|
|
|
|
"""Tests for unquote() and unquote_plus()
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
See the doc string for quoting_Tests for details on quoting and such.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def test_unquoting(self):
|
|
|
|
# Make sure unquoting of all ASCII values works
|
|
|
|
escape_list = []
|
|
|
|
for num in range(128):
|
|
|
|
given = hexescape(chr(num))
|
|
|
|
expect = chr(num)
|
|
|
|
result = urllib.unquote(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using unquote(): %s != %s" % (expect, result))
|
|
|
|
result = urllib.unquote_plus(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using unquote_plus(): %s != %s" %
|
|
|
|
(expect, result))
|
|
|
|
escape_list.append(given)
|
|
|
|
escape_string = ''.join(escape_list)
|
|
|
|
del escape_list
|
|
|
|
result = urllib.unquote(escape_string)
|
|
|
|
self.assertEqual(result.count('%'), 1,
|
|
|
|
"using quote(): not all characters escaped; %s" %
|
|
|
|
result)
|
|
|
|
result = urllib.unquote(escape_string)
|
|
|
|
self.assertEqual(result.count('%'), 1,
|
|
|
|
"using unquote(): not all characters escaped: "
|
|
|
|
"%s" % result)
|
|
|
|
|
|
|
|
def test_unquoting_parts(self):
|
|
|
|
# Make sure unquoting works when have non-quoted characters
|
|
|
|
# interspersed
|
|
|
|
given = 'ab%sd' % hexescape('c')
|
|
|
|
expect = "abcd"
|
|
|
|
result = urllib.unquote(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using quote(): %s != %s" % (expect, result))
|
|
|
|
result = urllib.unquote_plus(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using unquote_plus(): %s != %s" % (expect, result))
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
def test_unquoting_plus(self):
|
|
|
|
# Test difference between unquote() and unquote_plus()
|
|
|
|
given = "are+there+spaces..."
|
|
|
|
expect = given
|
|
|
|
result = urllib.unquote(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using unquote(): %s != %s" % (expect, result))
|
|
|
|
expect = given.replace('+', ' ')
|
|
|
|
result = urllib.unquote_plus(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"using unquote_plus(): %s != %s" % (expect, result))
|
|
|
|
|
2005-10-15 13:41:53 -03:00
|
|
|
def test_unquote_with_unicode(self):
|
|
|
|
r = urllib.unquote(u'br%C3%BCckner_sapporo_20050930.doc')
|
|
|
|
self.assertEqual(r, u'br\xc3\xbcckner_sapporo_20050930.doc')
|
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
class urlencode_Tests(unittest.TestCase):
|
|
|
|
"""Tests for urlencode()"""
|
|
|
|
|
|
|
|
def help_inputtype(self, given, test_type):
|
|
|
|
"""Helper method for testing different input types.
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
'given' must lead to only the pairs:
|
|
|
|
* 1st, 1
|
|
|
|
* 2nd, 2
|
|
|
|
* 3rd, 3
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
Test cannot assume anything about order. Docs make no guarantee and
|
|
|
|
have possible dictionary input.
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
"""
|
|
|
|
expect_somewhere = ["1st=1", "2nd=2", "3rd=3"]
|
|
|
|
result = urllib.urlencode(given)
|
|
|
|
for expected in expect_somewhere:
|
|
|
|
self.assert_(expected in result,
|
|
|
|
"testing %s: %s not found in %s" %
|
|
|
|
(test_type, expected, result))
|
|
|
|
self.assertEqual(result.count('&'), 2,
|
|
|
|
"testing %s: expected 2 '&'s; got %s" %
|
|
|
|
(test_type, result.count('&')))
|
|
|
|
amp_location = result.index('&')
|
|
|
|
on_amp_left = result[amp_location - 1]
|
|
|
|
on_amp_right = result[amp_location + 1]
|
|
|
|
self.assert_(on_amp_left.isdigit() and on_amp_right.isdigit(),
|
|
|
|
"testing %s: '&' not located in proper place in %s" %
|
|
|
|
(test_type, result))
|
|
|
|
self.assertEqual(len(result), (5 * 3) + 2, #5 chars per thing and amps
|
|
|
|
"testing %s: "
|
|
|
|
"unexpected number of characters: %s != %s" %
|
|
|
|
(test_type, len(result), (5 * 3) + 2))
|
|
|
|
|
|
|
|
def test_using_mapping(self):
|
|
|
|
# Test passing in a mapping object as an argument.
|
|
|
|
self.help_inputtype({"1st":'1', "2nd":'2', "3rd":'3'},
|
|
|
|
"using dict as input type")
|
|
|
|
|
|
|
|
def test_using_sequence(self):
|
|
|
|
# Test passing in a sequence of two-item sequences as an argument.
|
|
|
|
self.help_inputtype([('1st', '1'), ('2nd', '2'), ('3rd', '3')],
|
|
|
|
"using sequence of two-item tuples as input")
|
|
|
|
|
|
|
|
def test_quoting(self):
|
|
|
|
# Make sure keys and values are quoted using quote_plus()
|
|
|
|
given = {"&":"="}
|
|
|
|
expect = "%s=%s" % (hexescape('&'), hexescape('='))
|
|
|
|
result = urllib.urlencode(given)
|
|
|
|
self.assertEqual(expect, result)
|
|
|
|
given = {"key name":"A bunch of pluses"}
|
|
|
|
expect = "key+name=A+bunch+of+pluses"
|
|
|
|
result = urllib.urlencode(given)
|
|
|
|
self.assertEqual(expect, result)
|
|
|
|
|
|
|
|
def test_doseq(self):
|
|
|
|
# Test that passing True for 'doseq' parameter works correctly
|
|
|
|
given = {'sequence':['1', '2', '3']}
|
|
|
|
expect = "sequence=%s" % urllib.quote_plus(str(['1', '2', '3']))
|
|
|
|
result = urllib.urlencode(given)
|
|
|
|
self.assertEqual(expect, result)
|
|
|
|
result = urllib.urlencode(given, True)
|
|
|
|
for value in given["sequence"]:
|
|
|
|
expect = "sequence=%s" % value
|
|
|
|
self.assert_(expect in result,
|
|
|
|
"%s not found in %s" % (expect, result))
|
|
|
|
self.assertEqual(result.count('&'), 2,
|
|
|
|
"Expected 2 '&'s, got %s" % result.count('&'))
|
|
|
|
|
|
|
|
class Pathname_Tests(unittest.TestCase):
|
|
|
|
"""Test pathname2url() and url2pathname()"""
|
|
|
|
|
|
|
|
def test_basic(self):
|
|
|
|
# Make sure simple tests pass
|
|
|
|
expected_path = os.path.join("parts", "of", "a", "path")
|
|
|
|
expected_url = "parts/of/a/path"
|
|
|
|
result = urllib.pathname2url(expected_path)
|
|
|
|
self.assertEqual(expected_url, result,
|
|
|
|
"pathname2url() failed; %s != %s" %
|
|
|
|
(result, expected_url))
|
|
|
|
result = urllib.url2pathname(expected_url)
|
|
|
|
self.assertEqual(expected_path, result,
|
|
|
|
"url2pathame() failed; %s != %s" %
|
|
|
|
(result, expected_path))
|
|
|
|
|
|
|
|
def test_quoting(self):
|
|
|
|
# Test automatic quoting and unquoting works for pathnam2url() and
|
|
|
|
# url2pathname() respectively
|
|
|
|
given = os.path.join("needs", "quot=ing", "here")
|
|
|
|
expect = "needs/%s/here" % urllib.quote("quot=ing")
|
|
|
|
result = urllib.pathname2url(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"pathname2url() failed; %s != %s" %
|
|
|
|
(expect, result))
|
|
|
|
expect = given
|
|
|
|
result = urllib.url2pathname(result)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"url2pathname() failed; %s != %s" %
|
|
|
|
(expect, result))
|
|
|
|
given = os.path.join("make sure", "using_quote")
|
|
|
|
expect = "%s/using_quote" % urllib.quote("make sure")
|
|
|
|
result = urllib.pathname2url(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"pathname2url() failed; %s != %s" %
|
|
|
|
(expect, result))
|
|
|
|
given = "make+sure/using_unquote"
|
|
|
|
expect = os.path.join("make+sure", "using_unquote")
|
|
|
|
result = urllib.url2pathname(given)
|
|
|
|
self.assertEqual(expect, result,
|
|
|
|
"url2pathname() failed; %s != %s" %
|
|
|
|
(expect, result))
|
2003-05-12 17:19:37 -03:00
|
|
|
|
2007-05-25 01:20:22 -03:00
|
|
|
# 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
|
|
|
|
# fail in one of the tests, sometimes in other. I have a linux, and
|
|
|
|
# the tests go ok.
|
|
|
|
# If anybody has one of the problematic enviroments, please help!
|
|
|
|
# . Facundo
|
|
|
|
#
|
|
|
|
# def server(evt):
|
2008-05-29 13:39:26 -03:00
|
|
|
# import socket, time
|
2007-05-25 01:20:22 -03:00
|
|
|
# serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
# serv.settimeout(3)
|
|
|
|
# serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
|
|
# serv.bind(("", 9093))
|
|
|
|
# serv.listen(5)
|
|
|
|
# try:
|
|
|
|
# conn, addr = serv.accept()
|
|
|
|
# conn.send("1 Hola mundo\n")
|
|
|
|
# cantdata = 0
|
|
|
|
# while cantdata < 13:
|
|
|
|
# data = conn.recv(13-cantdata)
|
|
|
|
# cantdata += len(data)
|
|
|
|
# time.sleep(.3)
|
|
|
|
# conn.send("2 No more lines\n")
|
|
|
|
# conn.close()
|
|
|
|
# except socket.timeout:
|
|
|
|
# pass
|
|
|
|
# finally:
|
|
|
|
# serv.close()
|
|
|
|
# evt.set()
|
|
|
|
#
|
|
|
|
# class FTPWrapperTests(unittest.TestCase):
|
|
|
|
#
|
|
|
|
# def setUp(self):
|
2008-05-29 13:39:26 -03:00
|
|
|
# import ftplib, time, threading
|
2007-05-25 01:20:22 -03:00
|
|
|
# ftplib.FTP.port = 9093
|
|
|
|
# self.evt = threading.Event()
|
|
|
|
# threading.Thread(target=server, args=(self.evt,)).start()
|
|
|
|
# time.sleep(.1)
|
|
|
|
#
|
|
|
|
# def tearDown(self):
|
|
|
|
# self.evt.wait()
|
|
|
|
#
|
|
|
|
# def testBasic(self):
|
|
|
|
# # connects
|
|
|
|
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
2008-05-29 13:39:26 -03:00
|
|
|
# ftp.close()
|
2007-05-25 01:20:22 -03:00
|
|
|
#
|
2008-05-29 13:39:26 -03:00
|
|
|
# def testTimeoutNone(self):
|
|
|
|
# # global default timeout is ignored
|
|
|
|
# import socket
|
|
|
|
# self.assert_(socket.getdefaulttimeout() is None)
|
|
|
|
# socket.setdefaulttimeout(30)
|
|
|
|
# try:
|
|
|
|
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
|
|
|
# finally:
|
|
|
|
# socket.setdefaulttimeout(None)
|
2007-05-25 01:20:22 -03:00
|
|
|
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
2008-05-29 13:39:26 -03:00
|
|
|
# ftp.close()
|
2007-05-25 01:20:22 -03:00
|
|
|
#
|
2008-05-29 13:39:26 -03:00
|
|
|
# def testTimeoutDefault(self):
|
|
|
|
# # global default timeout is used
|
|
|
|
# import socket
|
|
|
|
# self.assert_(socket.getdefaulttimeout() is None)
|
2007-05-25 01:20:22 -03:00
|
|
|
# socket.setdefaulttimeout(30)
|
|
|
|
# try:
|
|
|
|
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
|
|
|
|
# finally:
|
2008-05-29 13:39:26 -03:00
|
|
|
# socket.setdefaulttimeout(None)
|
2007-05-25 01:20:22 -03:00
|
|
|
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
2008-05-29 13:39:26 -03:00
|
|
|
# ftp.close()
|
2007-05-25 01:20:22 -03:00
|
|
|
#
|
2008-05-29 13:39:26 -03:00
|
|
|
# def testTimeoutValue(self):
|
|
|
|
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [],
|
|
|
|
# timeout=30)
|
|
|
|
# self.assertEqual(ftp.ftp.sock.gettimeout(), 30)
|
|
|
|
# ftp.close()
|
2007-05-24 14:50:54 -03:00
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2008-07-01 22:57:08 -03:00
|
|
|
import warnings
|
2008-09-08 21:49:16 -03:00
|
|
|
with warnings.catch_warnings():
|
2008-07-01 22:57:08 -03:00
|
|
|
warnings.filterwarnings('ignore', ".*urllib\.urlopen.*Python 3.0",
|
|
|
|
DeprecationWarning)
|
|
|
|
test_support.run_unittest(
|
|
|
|
urlopen_FileTests,
|
|
|
|
urlopen_HttpTests,
|
|
|
|
urlretrieve_FileTests,
|
2008-09-21 18:27:51 -03:00
|
|
|
ProxyTests,
|
2008-07-01 22:57:08 -03:00
|
|
|
QuotingTests,
|
|
|
|
UnquotingTests,
|
|
|
|
urlencode_Tests,
|
|
|
|
Pathname_Tests,
|
|
|
|
#FTPWrapperTests,
|
|
|
|
)
|
2001-01-28 17:12:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-04-25 06:39:47 -03:00
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|