Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 1 | """Regresssion tests for urllib""" |
| 2 | |
Jeremy Hylton | 6102e29 | 2000-08-31 15:48:10 +0000 | [diff] [blame] | 3 | import urllib |
Hye-Shik Chang | 39aef79 | 2004-06-05 13:30:56 +0000 | [diff] [blame] | 4 | import httplib |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 5 | import unittest |
| 6 | from test import test_support |
| 7 | import os |
| 8 | import mimetools |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 9 | import tempfile |
Hye-Shik Chang | 39aef79 | 2004-06-05 13:30:56 +0000 | [diff] [blame] | 10 | import StringIO |
Jeremy Hylton | 6102e29 | 2000-08-31 15:48:10 +0000 | [diff] [blame] | 11 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 12 | def hexescape(char): |
| 13 | """Escape char as RFC 2396 specifies""" |
| 14 | hex_repr = hex(ord(char))[2:].upper() |
| 15 | if len(hex_repr) == 1: |
| 16 | hex_repr = "0%s" % hex_repr |
| 17 | return "%" + hex_repr |
Jeremy Hylton | 6102e29 | 2000-08-31 15:48:10 +0000 | [diff] [blame] | 18 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 19 | class urlopen_FileTests(unittest.TestCase): |
| 20 | """Test urlopen() opening a temporary file. |
Jeremy Hylton | 6102e29 | 2000-08-31 15:48:10 +0000 | [diff] [blame] | 21 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 22 | Try to test as much functionality as possible so as to cut down on reliance |
Andrew M. Kuchling | f1a2f9e | 2004-06-29 13:07:53 +0000 | [diff] [blame] | 23 | on connecting to the Net for testing. |
Jeremy Hylton | 7ae51bf | 2000-09-14 16:59:07 +0000 | [diff] [blame] | 24 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 25 | """ |
Jeremy Hylton | 7ae51bf | 2000-09-14 16:59:07 +0000 | [diff] [blame] | 26 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 27 | def setUp(self): |
| 28 | """Setup of a temp file to use for testing""" |
| 29 | self.text = "test_urllib: %s\n" % self.__class__.__name__ |
Guido van Rossum | 51735b0 | 2003-04-25 15:01:05 +0000 | [diff] [blame] | 30 | FILE = file(test_support.TESTFN, 'wb') |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 31 | try: |
| 32 | FILE.write(self.text) |
| 33 | finally: |
| 34 | FILE.close() |
| 35 | self.pathname = test_support.TESTFN |
| 36 | self.returned_obj = urllib.urlopen("file:%s" % self.pathname) |
Jeremy Hylton | 7ae51bf | 2000-09-14 16:59:07 +0000 | [diff] [blame] | 37 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 38 | def tearDown(self): |
| 39 | """Shut down the open object""" |
| 40 | self.returned_obj.close() |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 41 | os.remove(test_support.TESTFN) |
Jeremy Hylton | 7ae51bf | 2000-09-14 16:59:07 +0000 | [diff] [blame] | 42 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 43 | def test_interface(self): |
| 44 | # Make sure object returned by urlopen() has the specified methods |
| 45 | for attr in ("read", "readline", "readlines", "fileno", |
| 46 | "close", "info", "geturl", "__iter__"): |
| 47 | self.assert_(hasattr(self.returned_obj, attr), |
| 48 | "object returned by urlopen() lacks %s attribute" % |
| 49 | attr) |
Skip Montanaro | e78b92a | 2001-01-20 20:22:30 +0000 | [diff] [blame] | 50 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 51 | def test_read(self): |
| 52 | self.assertEqual(self.text, self.returned_obj.read()) |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 53 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 54 | def test_readline(self): |
| 55 | self.assertEqual(self.text, self.returned_obj.readline()) |
| 56 | self.assertEqual('', self.returned_obj.readline(), |
| 57 | "calling readline() after exhausting the file did not" |
| 58 | " return an empty string") |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 59 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 60 | def test_readlines(self): |
| 61 | lines_list = self.returned_obj.readlines() |
| 62 | self.assertEqual(len(lines_list), 1, |
| 63 | "readlines() returned the wrong number of lines") |
| 64 | self.assertEqual(lines_list[0], self.text, |
| 65 | "readlines() returned improper text") |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 66 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 67 | def test_fileno(self): |
| 68 | file_num = self.returned_obj.fileno() |
| 69 | self.assert_(isinstance(file_num, int), |
| 70 | "fileno() did not return an int") |
| 71 | self.assertEqual(os.read(file_num, len(self.text)), self.text, |
| 72 | "Reading on the file descriptor returned by fileno() " |
| 73 | "did not return the expected text") |
Skip Montanaro | e78b92a | 2001-01-20 20:22:30 +0000 | [diff] [blame] | 74 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 75 | def test_close(self): |
| 76 | # Test close() by calling it hear and then having it be called again |
| 77 | # by the tearDown() method for the test |
| 78 | self.returned_obj.close() |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 79 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 80 | def test_info(self): |
| 81 | self.assert_(isinstance(self.returned_obj.info(), mimetools.Message)) |
Skip Montanaro | e78b92a | 2001-01-20 20:22:30 +0000 | [diff] [blame] | 82 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 83 | def test_geturl(self): |
| 84 | self.assertEqual(self.returned_obj.geturl(), self.pathname) |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 85 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 86 | def test_iter(self): |
| 87 | # Test iterator |
| 88 | # Don't need to count number of iterations since test would fail the |
| 89 | # instant it returned anything beyond the first line from the |
| 90 | # comparison |
| 91 | for line in self.returned_obj.__iter__(): |
| 92 | self.assertEqual(line, self.text) |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 93 | |
Hye-Shik Chang | 39aef79 | 2004-06-05 13:30:56 +0000 | [diff] [blame] | 94 | class urlopen_HttpTests(unittest.TestCase): |
| 95 | """Test urlopen() opening a fake http connection.""" |
| 96 | |
| 97 | def fakehttp(self, fakedata): |
| 98 | class FakeSocket(StringIO.StringIO): |
| 99 | def sendall(self, str): pass |
| 100 | def makefile(self, mode, name): return self |
| 101 | def read(self, amt=None): |
| 102 | if self.closed: return '' |
| 103 | return StringIO.StringIO.read(self, amt) |
| 104 | def readline(self, length=None): |
| 105 | if self.closed: return '' |
| 106 | return StringIO.StringIO.readline(self, length) |
| 107 | class FakeHTTPConnection(httplib.HTTPConnection): |
| 108 | def connect(self): |
| 109 | self.sock = FakeSocket(fakedata) |
| 110 | assert httplib.HTTP._connection_class == httplib.HTTPConnection |
| 111 | httplib.HTTP._connection_class = FakeHTTPConnection |
| 112 | |
| 113 | def unfakehttp(self): |
| 114 | httplib.HTTP._connection_class = httplib.HTTPConnection |
| 115 | |
| 116 | def test_read(self): |
| 117 | self.fakehttp('Hello!') |
| 118 | try: |
| 119 | fp = urllib.urlopen("http://python.org/") |
| 120 | self.assertEqual(fp.readline(), 'Hello!') |
| 121 | self.assertEqual(fp.readline(), '') |
| 122 | finally: |
| 123 | self.unfakehttp() |
| 124 | |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 125 | class urlretrieve_FileTests(unittest.TestCase): |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 126 | """Test urllib.urlretrieve() on local files""" |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 127 | |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 128 | def setUp(self): |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 129 | # Create a list of temporary files. Each item in the list is a file |
| 130 | # name (absolute path or relative to the current working directory). |
| 131 | # All files in this list will be deleted in the tearDown method. Note, |
| 132 | # this only helps to makes sure temporary files get deleted, but it |
| 133 | # does nothing about trying to close files that may still be open. It |
| 134 | # is the responsibility of the developer to properly close files even |
| 135 | # when exceptional conditions occur. |
| 136 | self.tempFiles = [] |
| 137 | |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 138 | # Create a temporary file. |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 139 | self.registerFileForCleanUp(test_support.TESTFN) |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 140 | self.text = 'testing urllib.urlretrieve' |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 141 | try: |
| 142 | FILE = file(test_support.TESTFN, 'wb') |
| 143 | FILE.write(self.text) |
| 144 | FILE.close() |
| 145 | finally: |
| 146 | try: FILE.close() |
| 147 | except: pass |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 148 | |
| 149 | def tearDown(self): |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 150 | # Delete the temporary files. |
| 151 | for each in self.tempFiles: |
| 152 | try: os.remove(each) |
| 153 | except: pass |
| 154 | |
| 155 | def constructLocalFileUrl(self, filePath): |
| 156 | return "file://%s" % urllib.pathname2url(os.path.abspath(filePath)) |
| 157 | |
| 158 | def createNewTempFile(self, data=""): |
| 159 | """Creates a new temporary file containing the specified data, |
| 160 | registers the file for deletion during the test fixture tear down, and |
| 161 | returns the absolute path of the file.""" |
| 162 | |
| 163 | newFd, newFilePath = tempfile.mkstemp() |
| 164 | try: |
| 165 | self.registerFileForCleanUp(newFilePath) |
| 166 | newFile = os.fdopen(newFd, "wb") |
| 167 | newFile.write(data) |
| 168 | newFile.close() |
| 169 | finally: |
| 170 | try: newFile.close() |
| 171 | except: pass |
| 172 | return newFilePath |
| 173 | |
| 174 | def registerFileForCleanUp(self, fileName): |
| 175 | self.tempFiles.append(fileName) |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 176 | |
| 177 | def test_basic(self): |
| 178 | # Make sure that a local file just gets its own location returned and |
| 179 | # a headers value is returned. |
| 180 | result = urllib.urlretrieve("file:%s" % test_support.TESTFN) |
| 181 | self.assertEqual(result[0], test_support.TESTFN) |
| 182 | self.assert_(isinstance(result[1], mimetools.Message), |
| 183 | "did not get a mimetools.Message instance as second " |
| 184 | "returned value") |
| 185 | |
| 186 | def test_copy(self): |
| 187 | # Test that setting the filename argument works. |
| 188 | second_temp = "%s.2" % test_support.TESTFN |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 189 | self.registerFileForCleanUp(second_temp) |
| 190 | result = urllib.urlretrieve(self.constructLocalFileUrl( |
| 191 | test_support.TESTFN), second_temp) |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 192 | self.assertEqual(second_temp, result[0]) |
| 193 | self.assert_(os.path.exists(second_temp), "copy of the file was not " |
| 194 | "made") |
| 195 | FILE = file(second_temp, 'rb') |
| 196 | try: |
| 197 | text = FILE.read() |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 198 | FILE.close() |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 199 | finally: |
| 200 | try: FILE.close() |
| 201 | except: pass |
Brett Cannon | 1969136 | 2003-04-29 05:08:06 +0000 | [diff] [blame] | 202 | self.assertEqual(self.text, text) |
| 203 | |
| 204 | def test_reporthook(self): |
| 205 | # Make sure that the reporthook works. |
| 206 | def hooktester(count, block_size, total_size, count_holder=[0]): |
| 207 | self.assert_(isinstance(count, int)) |
| 208 | self.assert_(isinstance(block_size, int)) |
| 209 | self.assert_(isinstance(total_size, int)) |
| 210 | self.assertEqual(count, count_holder[0]) |
| 211 | count_holder[0] = count_holder[0] + 1 |
| 212 | second_temp = "%s.2" % test_support.TESTFN |
Georg Brandl | 5a650a2 | 2005-08-26 08:51:34 +0000 | [diff] [blame] | 213 | self.registerFileForCleanUp(second_temp) |
| 214 | urllib.urlretrieve(self.constructLocalFileUrl(test_support.TESTFN), |
| 215 | second_temp, hooktester) |
| 216 | |
| 217 | def test_reporthook_0_bytes(self): |
| 218 | # Test on zero length file. Should call reporthook only 1 time. |
| 219 | report = [] |
| 220 | def hooktester(count, block_size, total_size, _report=report): |
| 221 | _report.append((count, block_size, total_size)) |
| 222 | srcFileName = self.createNewTempFile() |
| 223 | urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), |
| 224 | test_support.TESTFN, hooktester) |
| 225 | self.assertEqual(len(report), 1) |
| 226 | self.assertEqual(report[0][2], 0) |
| 227 | |
| 228 | def test_reporthook_5_bytes(self): |
| 229 | # Test on 5 byte file. Should call reporthook only 2 times (once when |
| 230 | # the "network connection" is established and once when the block is |
| 231 | # read). Since the block size is 8192 bytes, only one block read is |
| 232 | # required to read the entire file. |
| 233 | report = [] |
| 234 | def hooktester(count, block_size, total_size, _report=report): |
| 235 | _report.append((count, block_size, total_size)) |
| 236 | srcFileName = self.createNewTempFile("x" * 5) |
| 237 | urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), |
| 238 | test_support.TESTFN, hooktester) |
| 239 | self.assertEqual(len(report), 2) |
| 240 | self.assertEqual(report[0][1], 8192) |
| 241 | self.assertEqual(report[0][2], 5) |
| 242 | |
| 243 | def test_reporthook_8193_bytes(self): |
| 244 | # Test on 8193 byte file. Should call reporthook only 3 times (once |
| 245 | # when the "network connection" is established, once for the next 8192 |
| 246 | # bytes, and once for the last byte). |
| 247 | report = [] |
| 248 | def hooktester(count, block_size, total_size, _report=report): |
| 249 | _report.append((count, block_size, total_size)) |
| 250 | srcFileName = self.createNewTempFile("x" * 8193) |
| 251 | urllib.urlretrieve(self.constructLocalFileUrl(srcFileName), |
| 252 | test_support.TESTFN, hooktester) |
| 253 | self.assertEqual(len(report), 3) |
| 254 | self.assertEqual(report[0][1], 8192) |
| 255 | self.assertEqual(report[0][2], 8193) |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 256 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 257 | class QuotingTests(unittest.TestCase): |
| 258 | """Tests for urllib.quote() and urllib.quote_plus() |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 259 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 260 | According to RFC 2396 ("Uniform Resource Identifiers), to escape a |
| 261 | character you write it as '%' + <2 character US-ASCII hex value>. The Python |
| 262 | code of ``'%' + hex(ord(<character>))[2:]`` escapes a character properly. |
| 263 | Case does not matter on the hex letters. |
| 264 | |
| 265 | The various character sets specified are: |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 266 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 267 | Reserved characters : ";/?:@&=+$," |
| 268 | Have special meaning in URIs and must be escaped if not being used for |
| 269 | their special meaning |
| 270 | Data characters : letters, digits, and "-_.!~*'()" |
| 271 | Unreserved and do not need to be escaped; can be, though, if desired |
| 272 | Control characters : 0x00 - 0x1F, 0x7F |
| 273 | Have no use in URIs so must be escaped |
| 274 | space : 0x20 |
| 275 | Must be escaped |
| 276 | Delimiters : '<>#%"' |
| 277 | Must be escaped |
| 278 | Unwise : "{}|\^[]`" |
| 279 | Must be escaped |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 280 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 281 | """ |
| 282 | |
| 283 | def test_never_quote(self): |
| 284 | # Make sure quote() does not quote letters, digits, and "_,.-" |
| 285 | do_not_quote = '' .join(["ABCDEFGHIJKLMNOPQRSTUVWXYZ", |
| 286 | "abcdefghijklmnopqrstuvwxyz", |
| 287 | "0123456789", |
| 288 | "_.-"]) |
| 289 | result = urllib.quote(do_not_quote) |
| 290 | self.assertEqual(do_not_quote, result, |
| 291 | "using quote(): %s != %s" % (do_not_quote, result)) |
| 292 | result = urllib.quote_plus(do_not_quote) |
| 293 | self.assertEqual(do_not_quote, result, |
| 294 | "using quote_plus(): %s != %s" % (do_not_quote, result)) |
| 295 | |
| 296 | def test_default_safe(self): |
| 297 | # Test '/' is default value for 'safe' parameter |
| 298 | self.assertEqual(urllib.quote.func_defaults[0], '/') |
| 299 | |
| 300 | def test_safe(self): |
| 301 | # Test setting 'safe' parameter does what it should do |
| 302 | quote_by_default = "<>" |
| 303 | result = urllib.quote(quote_by_default, safe=quote_by_default) |
| 304 | self.assertEqual(quote_by_default, result, |
| 305 | "using quote(): %s != %s" % (quote_by_default, result)) |
| 306 | result = urllib.quote_plus(quote_by_default, safe=quote_by_default) |
| 307 | self.assertEqual(quote_by_default, result, |
| 308 | "using quote_plus(): %s != %s" % |
| 309 | (quote_by_default, result)) |
| 310 | |
| 311 | def test_default_quoting(self): |
| 312 | # Make sure all characters that should be quoted are by default sans |
| 313 | # space (separate test for that). |
| 314 | should_quote = [chr(num) for num in range(32)] # For 0x00 - 0x1F |
| 315 | should_quote.append('<>#%"{}|\^[]`') |
| 316 | should_quote.append(chr(127)) # For 0x7F |
| 317 | should_quote = ''.join(should_quote) |
| 318 | for char in should_quote: |
| 319 | result = urllib.quote(char) |
| 320 | self.assertEqual(hexescape(char), result, |
| 321 | "using quote(): %s should be escaped to %s, not %s" % |
| 322 | (char, hexescape(char), result)) |
| 323 | result = urllib.quote_plus(char) |
| 324 | self.assertEqual(hexescape(char), result, |
| 325 | "using quote_plus(): " |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 326 | "%s should be escapes to %s, not %s" % |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 327 | (char, hexescape(char), result)) |
| 328 | del should_quote |
| 329 | partial_quote = "ab[]cd" |
| 330 | expected = "ab%5B%5Dcd" |
| 331 | result = urllib.quote(partial_quote) |
| 332 | self.assertEqual(expected, result, |
| 333 | "using quote(): %s != %s" % (expected, result)) |
| 334 | self.assertEqual(expected, result, |
| 335 | "using quote_plus(): %s != %s" % (expected, result)) |
| 336 | |
| 337 | def test_quoting_space(self): |
| 338 | # Make sure quote() and quote_plus() handle spaces as specified in |
| 339 | # their unique way |
| 340 | result = urllib.quote(' ') |
| 341 | self.assertEqual(result, hexescape(' '), |
| 342 | "using quote(): %s != %s" % (result, hexescape(' '))) |
| 343 | result = urllib.quote_plus(' ') |
| 344 | self.assertEqual(result, '+', |
| 345 | "using quote_plus(): %s != +" % result) |
| 346 | given = "a b cd e f" |
| 347 | expect = given.replace(' ', hexescape(' ')) |
| 348 | result = urllib.quote(given) |
| 349 | self.assertEqual(expect, result, |
| 350 | "using quote(): %s != %s" % (expect, result)) |
| 351 | expect = given.replace(' ', '+') |
| 352 | result = urllib.quote_plus(given) |
| 353 | self.assertEqual(expect, result, |
| 354 | "using quote_plus(): %s != %s" % (expect, result)) |
| 355 | |
Raymond Hettinger | 2bdec7b | 2005-09-10 14:30:09 +0000 | [diff] [blame^] | 356 | def test_quoting_plus(self): |
| 357 | self.assertEqual(urllib.quote_plus('alpha+beta gamma'), |
| 358 | 'alpha%2Bbeta+gamma') |
| 359 | self.assertEqual(urllib.quote_plus('alpha+beta gamma', '+'), |
| 360 | 'alpha+beta+gamma') |
| 361 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 362 | class UnquotingTests(unittest.TestCase): |
| 363 | """Tests for unquote() and unquote_plus() |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 364 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 365 | See the doc string for quoting_Tests for details on quoting and such. |
| 366 | |
| 367 | """ |
| 368 | |
| 369 | def test_unquoting(self): |
| 370 | # Make sure unquoting of all ASCII values works |
| 371 | escape_list = [] |
| 372 | for num in range(128): |
| 373 | given = hexescape(chr(num)) |
| 374 | expect = chr(num) |
| 375 | result = urllib.unquote(given) |
| 376 | self.assertEqual(expect, result, |
| 377 | "using unquote(): %s != %s" % (expect, result)) |
| 378 | result = urllib.unquote_plus(given) |
| 379 | self.assertEqual(expect, result, |
| 380 | "using unquote_plus(): %s != %s" % |
| 381 | (expect, result)) |
| 382 | escape_list.append(given) |
| 383 | escape_string = ''.join(escape_list) |
| 384 | del escape_list |
| 385 | result = urllib.unquote(escape_string) |
| 386 | self.assertEqual(result.count('%'), 1, |
| 387 | "using quote(): not all characters escaped; %s" % |
| 388 | result) |
| 389 | result = urllib.unquote(escape_string) |
| 390 | self.assertEqual(result.count('%'), 1, |
| 391 | "using unquote(): not all characters escaped: " |
| 392 | "%s" % result) |
| 393 | |
| 394 | def test_unquoting_parts(self): |
| 395 | # Make sure unquoting works when have non-quoted characters |
| 396 | # interspersed |
| 397 | given = 'ab%sd' % hexescape('c') |
| 398 | expect = "abcd" |
| 399 | result = urllib.unquote(given) |
| 400 | self.assertEqual(expect, result, |
| 401 | "using quote(): %s != %s" % (expect, result)) |
| 402 | result = urllib.unquote_plus(given) |
| 403 | self.assertEqual(expect, result, |
| 404 | "using unquote_plus(): %s != %s" % (expect, result)) |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 405 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 406 | def test_unquoting_plus(self): |
| 407 | # Test difference between unquote() and unquote_plus() |
| 408 | given = "are+there+spaces..." |
| 409 | expect = given |
| 410 | result = urllib.unquote(given) |
| 411 | self.assertEqual(expect, result, |
| 412 | "using unquote(): %s != %s" % (expect, result)) |
| 413 | expect = given.replace('+', ' ') |
| 414 | result = urllib.unquote_plus(given) |
| 415 | self.assertEqual(expect, result, |
| 416 | "using unquote_plus(): %s != %s" % (expect, result)) |
| 417 | |
| 418 | class urlencode_Tests(unittest.TestCase): |
| 419 | """Tests for urlencode()""" |
| 420 | |
| 421 | def help_inputtype(self, given, test_type): |
| 422 | """Helper method for testing different input types. |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 423 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 424 | 'given' must lead to only the pairs: |
| 425 | * 1st, 1 |
| 426 | * 2nd, 2 |
| 427 | * 3rd, 3 |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 428 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 429 | Test cannot assume anything about order. Docs make no guarantee and |
| 430 | have possible dictionary input. |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 431 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 432 | """ |
| 433 | expect_somewhere = ["1st=1", "2nd=2", "3rd=3"] |
| 434 | result = urllib.urlencode(given) |
| 435 | for expected in expect_somewhere: |
| 436 | self.assert_(expected in result, |
| 437 | "testing %s: %s not found in %s" % |
| 438 | (test_type, expected, result)) |
| 439 | self.assertEqual(result.count('&'), 2, |
| 440 | "testing %s: expected 2 '&'s; got %s" % |
| 441 | (test_type, result.count('&'))) |
| 442 | amp_location = result.index('&') |
| 443 | on_amp_left = result[amp_location - 1] |
| 444 | on_amp_right = result[amp_location + 1] |
| 445 | self.assert_(on_amp_left.isdigit() and on_amp_right.isdigit(), |
| 446 | "testing %s: '&' not located in proper place in %s" % |
| 447 | (test_type, result)) |
| 448 | self.assertEqual(len(result), (5 * 3) + 2, #5 chars per thing and amps |
| 449 | "testing %s: " |
| 450 | "unexpected number of characters: %s != %s" % |
| 451 | (test_type, len(result), (5 * 3) + 2)) |
| 452 | |
| 453 | def test_using_mapping(self): |
| 454 | # Test passing in a mapping object as an argument. |
| 455 | self.help_inputtype({"1st":'1', "2nd":'2', "3rd":'3'}, |
| 456 | "using dict as input type") |
| 457 | |
| 458 | def test_using_sequence(self): |
| 459 | # Test passing in a sequence of two-item sequences as an argument. |
| 460 | self.help_inputtype([('1st', '1'), ('2nd', '2'), ('3rd', '3')], |
| 461 | "using sequence of two-item tuples as input") |
| 462 | |
| 463 | def test_quoting(self): |
| 464 | # Make sure keys and values are quoted using quote_plus() |
| 465 | given = {"&":"="} |
| 466 | expect = "%s=%s" % (hexescape('&'), hexescape('=')) |
| 467 | result = urllib.urlencode(given) |
| 468 | self.assertEqual(expect, result) |
| 469 | given = {"key name":"A bunch of pluses"} |
| 470 | expect = "key+name=A+bunch+of+pluses" |
| 471 | result = urllib.urlencode(given) |
| 472 | self.assertEqual(expect, result) |
| 473 | |
| 474 | def test_doseq(self): |
| 475 | # Test that passing True for 'doseq' parameter works correctly |
| 476 | given = {'sequence':['1', '2', '3']} |
| 477 | expect = "sequence=%s" % urllib.quote_plus(str(['1', '2', '3'])) |
| 478 | result = urllib.urlencode(given) |
| 479 | self.assertEqual(expect, result) |
| 480 | result = urllib.urlencode(given, True) |
| 481 | for value in given["sequence"]: |
| 482 | expect = "sequence=%s" % value |
| 483 | self.assert_(expect in result, |
| 484 | "%s not found in %s" % (expect, result)) |
| 485 | self.assertEqual(result.count('&'), 2, |
| 486 | "Expected 2 '&'s, got %s" % result.count('&')) |
| 487 | |
| 488 | class Pathname_Tests(unittest.TestCase): |
| 489 | """Test pathname2url() and url2pathname()""" |
| 490 | |
| 491 | def test_basic(self): |
| 492 | # Make sure simple tests pass |
| 493 | expected_path = os.path.join("parts", "of", "a", "path") |
| 494 | expected_url = "parts/of/a/path" |
| 495 | result = urllib.pathname2url(expected_path) |
| 496 | self.assertEqual(expected_url, result, |
| 497 | "pathname2url() failed; %s != %s" % |
| 498 | (result, expected_url)) |
| 499 | result = urllib.url2pathname(expected_url) |
| 500 | self.assertEqual(expected_path, result, |
| 501 | "url2pathame() failed; %s != %s" % |
| 502 | (result, expected_path)) |
| 503 | |
| 504 | def test_quoting(self): |
| 505 | # Test automatic quoting and unquoting works for pathnam2url() and |
| 506 | # url2pathname() respectively |
| 507 | given = os.path.join("needs", "quot=ing", "here") |
| 508 | expect = "needs/%s/here" % urllib.quote("quot=ing") |
| 509 | result = urllib.pathname2url(given) |
| 510 | self.assertEqual(expect, result, |
| 511 | "pathname2url() failed; %s != %s" % |
| 512 | (expect, result)) |
| 513 | expect = given |
| 514 | result = urllib.url2pathname(result) |
| 515 | self.assertEqual(expect, result, |
| 516 | "url2pathname() failed; %s != %s" % |
| 517 | (expect, result)) |
| 518 | given = os.path.join("make sure", "using_quote") |
| 519 | expect = "%s/using_quote" % urllib.quote("make sure") |
| 520 | result = urllib.pathname2url(given) |
| 521 | self.assertEqual(expect, result, |
| 522 | "pathname2url() failed; %s != %s" % |
| 523 | (expect, result)) |
| 524 | given = "make+sure/using_unquote" |
| 525 | expect = os.path.join("make+sure", "using_unquote") |
| 526 | result = urllib.url2pathname(given) |
| 527 | self.assertEqual(expect, result, |
| 528 | "url2pathname() failed; %s != %s" % |
| 529 | (expect, result)) |
Tim Peters | c2659cf | 2003-05-12 20:19:37 +0000 | [diff] [blame] | 530 | |
Skip Montanaro | 080c997 | 2001-01-28 21:12:22 +0000 | [diff] [blame] | 531 | |
| 532 | |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 533 | def test_main(): |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 534 | test_support.run_unittest( |
| 535 | urlopen_FileTests, |
Hye-Shik Chang | 39aef79 | 2004-06-05 13:30:56 +0000 | [diff] [blame] | 536 | urlopen_HttpTests, |
Walter Dörwald | 21d3a32 | 2003-05-01 17:45:56 +0000 | [diff] [blame] | 537 | urlretrieve_FileTests, |
| 538 | QuotingTests, |
| 539 | UnquotingTests, |
| 540 | urlencode_Tests, |
| 541 | Pathname_Tests |
| 542 | ) |
Brett Cannon | 74bfd70 | 2003-04-25 09:39:47 +0000 | [diff] [blame] | 543 | |
| 544 | |
| 545 | |
| 546 | if __name__ == '__main__': |
| 547 | test_main() |