Benjamin Peterson | 90f5ba5 | 2010-03-11 22:53:45 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python3 |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 2 | |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 3 | from test import support |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 4 | import unittest |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 5 | import urllib.parse |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 6 | |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 7 | RFC1808_BASE = "http://a/b/c/d;p?q#f" |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 8 | RFC2396_BASE = "http://a/b/c/d;p?q" |
Senthil Kumaran | dd3820f | 2010-05-07 04:19:23 +0000 | [diff] [blame] | 9 | RFC3986_BASE = 'http://a/b/c/d;p?q' |
Senthil Kumaran | aa69d4d | 2010-07-14 10:21:22 +0000 | [diff] [blame] | 10 | SIMPLE_BASE = 'http://a/b/c/d' |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 11 | |
Facundo Batista | c469d4c | 2008-09-03 22:49:01 +0000 | [diff] [blame] | 12 | # A list of test cases. Each test case is a a two-tuple that contains |
| 13 | # a string with the query and a dictionary with the expected result. |
| 14 | |
| 15 | parse_qsl_test_cases = [ |
| 16 | ("", []), |
| 17 | ("&", []), |
| 18 | ("&&", []), |
| 19 | ("=", [('', '')]), |
| 20 | ("=a", [('', 'a')]), |
| 21 | ("a", [('a', '')]), |
| 22 | ("a=", [('a', '')]), |
| 23 | ("a=", [('a', '')]), |
| 24 | ("&a=b", [('a', 'b')]), |
| 25 | ("a=a+b&b=b+c", [('a', 'a b'), ('b', 'b c')]), |
| 26 | ("a=1&a=2", [('a', '1'), ('a', '2')]), |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 27 | (b"", []), |
| 28 | (b"&", []), |
| 29 | (b"&&", []), |
| 30 | (b"=", [(b'', b'')]), |
| 31 | (b"=a", [(b'', b'a')]), |
| 32 | (b"a", [(b'a', b'')]), |
| 33 | (b"a=", [(b'a', b'')]), |
| 34 | (b"a=", [(b'a', b'')]), |
| 35 | (b"&a=b", [(b'a', b'b')]), |
| 36 | (b"a=a+b&b=b+c", [(b'a', b'a b'), (b'b', b'b c')]), |
| 37 | (b"a=1&a=2", [(b'a', b'1'), (b'a', b'2')]), |
Facundo Batista | c469d4c | 2008-09-03 22:49:01 +0000 | [diff] [blame] | 38 | ] |
| 39 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 40 | class UrlParseTestCase(unittest.TestCase): |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 41 | |
| 42 | def checkRoundtrips(self, url, parsed, split): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 43 | result = urllib.parse.urlparse(url) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 44 | self.assertEqual(result, parsed) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 45 | t = (result.scheme, result.netloc, result.path, |
| 46 | result.params, result.query, result.fragment) |
| 47 | self.assertEqual(t, parsed) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 48 | # put it back together and it should be the same |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 49 | result2 = urllib.parse.urlunparse(result) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 50 | self.assertEqual(result2, url) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 51 | self.assertEqual(result2, result.geturl()) |
| 52 | |
| 53 | # the result of geturl() is a fixpoint; we can always parse it |
| 54 | # again to get the same result: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 55 | result3 = urllib.parse.urlparse(result.geturl()) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 56 | self.assertEqual(result3.geturl(), result.geturl()) |
| 57 | self.assertEqual(result3, result) |
| 58 | self.assertEqual(result3.scheme, result.scheme) |
| 59 | self.assertEqual(result3.netloc, result.netloc) |
| 60 | self.assertEqual(result3.path, result.path) |
| 61 | self.assertEqual(result3.params, result.params) |
| 62 | self.assertEqual(result3.query, result.query) |
| 63 | self.assertEqual(result3.fragment, result.fragment) |
| 64 | self.assertEqual(result3.username, result.username) |
| 65 | self.assertEqual(result3.password, result.password) |
| 66 | self.assertEqual(result3.hostname, result.hostname) |
| 67 | self.assertEqual(result3.port, result.port) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 68 | |
| 69 | # check the roundtrip using urlsplit() as well |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 70 | result = urllib.parse.urlsplit(url) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 71 | self.assertEqual(result, split) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 72 | t = (result.scheme, result.netloc, result.path, |
| 73 | result.query, result.fragment) |
| 74 | self.assertEqual(t, split) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 75 | result2 = urllib.parse.urlunsplit(result) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 76 | self.assertEqual(result2, url) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 77 | self.assertEqual(result2, result.geturl()) |
| 78 | |
| 79 | # check the fixpoint property of re-parsing the result of geturl() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 80 | result3 = urllib.parse.urlsplit(result.geturl()) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 81 | self.assertEqual(result3.geturl(), result.geturl()) |
| 82 | self.assertEqual(result3, result) |
| 83 | self.assertEqual(result3.scheme, result.scheme) |
| 84 | self.assertEqual(result3.netloc, result.netloc) |
| 85 | self.assertEqual(result3.path, result.path) |
| 86 | self.assertEqual(result3.query, result.query) |
| 87 | self.assertEqual(result3.fragment, result.fragment) |
| 88 | self.assertEqual(result3.username, result.username) |
| 89 | self.assertEqual(result3.password, result.password) |
| 90 | self.assertEqual(result3.hostname, result.hostname) |
| 91 | self.assertEqual(result3.port, result.port) |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 92 | |
Facundo Batista | c469d4c | 2008-09-03 22:49:01 +0000 | [diff] [blame] | 93 | def test_qsl(self): |
| 94 | for orig, expect in parse_qsl_test_cases: |
| 95 | result = urllib.parse.parse_qsl(orig, keep_blank_values=True) |
| 96 | self.assertEqual(result, expect, "Error parsing %s" % repr(orig)) |
| 97 | |
| 98 | |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 99 | def test_roundtrips(self): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 100 | str_cases = [ |
Fred Drake | 7070565 | 2002-10-16 21:02:36 +0000 | [diff] [blame] | 101 | ('file:///tmp/junk.txt', |
| 102 | ('file', '', '/tmp/junk.txt', '', '', ''), |
| 103 | ('file', '', '/tmp/junk.txt', '', '')), |
Neal Norwitz | 68b539e | 2003-01-06 06:58:31 +0000 | [diff] [blame] | 104 | ('imap://mail.python.org/mbox1', |
| 105 | ('imap', 'mail.python.org', '/mbox1', '', '', ''), |
| 106 | ('imap', 'mail.python.org', '/mbox1', '', '')), |
Skip Montanaro | f09b88e | 2003-01-06 20:27:03 +0000 | [diff] [blame] | 107 | ('mms://wms.sys.hinet.net/cts/Drama/09006251100.asf', |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 108 | ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', |
| 109 | '', '', ''), |
| 110 | ('mms', 'wms.sys.hinet.net', '/cts/Drama/09006251100.asf', |
| 111 | '', '')), |
Senthil Kumaran | eaaec27 | 2009-03-30 21:54:41 +0000 | [diff] [blame] | 112 | ('nfs://server/path/to/file.txt', |
| 113 | ('nfs', 'server', '/path/to/file.txt', '', '', ''), |
| 114 | ('nfs', 'server', '/path/to/file.txt', '', '')), |
Fred Drake | 50747fc | 2005-07-29 15:56:32 +0000 | [diff] [blame] | 115 | ('svn+ssh://svn.zope.org/repos/main/ZConfig/trunk/', |
| 116 | ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/', |
| 117 | '', '', ''), |
| 118 | ('svn+ssh', 'svn.zope.org', '/repos/main/ZConfig/trunk/', |
Senthil Kumaran | ead169d | 2010-05-13 03:37:23 +0000 | [diff] [blame] | 119 | '', '')), |
| 120 | ('git+ssh://git@github.com/user/project.git', |
| 121 | ('git+ssh', 'git@github.com','/user/project.git', |
| 122 | '','',''), |
| 123 | ('git+ssh', 'git@github.com','/user/project.git', |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 124 | '', '')), |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 125 | ] |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 126 | def _encode(t): |
| 127 | return (t[0].encode('ascii'), |
| 128 | tuple(x.encode('ascii') for x in t[1]), |
| 129 | tuple(x.encode('ascii') for x in t[2])) |
| 130 | bytes_cases = [_encode(x) for x in str_cases] |
| 131 | for url, parsed, split in str_cases + bytes_cases: |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 132 | self.checkRoundtrips(url, parsed, split) |
Michael W. Hudson | bd3e771 | 2002-03-18 13:06:00 +0000 | [diff] [blame] | 133 | |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 134 | def test_http_roundtrips(self): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 135 | # urllib.parse.urlsplit treats 'http:' as an optimized special case, |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 136 | # so we test both 'http:' and 'https:' in all the following. |
| 137 | # Three cheers for white box knowledge! |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 138 | str_cases = [ |
Johannes Gijsbers | 41e4faa | 2005-01-09 15:29:10 +0000 | [diff] [blame] | 139 | ('://www.python.org', |
| 140 | ('www.python.org', '', '', '', ''), |
| 141 | ('www.python.org', '', '', '')), |
| 142 | ('://www.python.org#abc', |
| 143 | ('www.python.org', '', '', '', 'abc'), |
| 144 | ('www.python.org', '', '', 'abc')), |
| 145 | ('://www.python.org?q=abc', |
| 146 | ('www.python.org', '', '', 'q=abc', ''), |
| 147 | ('www.python.org', '', 'q=abc', '')), |
| 148 | ('://www.python.org/#abc', |
| 149 | ('www.python.org', '/', '', '', 'abc'), |
| 150 | ('www.python.org', '/', '', 'abc')), |
| 151 | ('://a/b/c/d;p?q#f', |
| 152 | ('a', '/b/c/d', 'p', 'q', 'f'), |
| 153 | ('a', '/b/c/d;p', 'q', 'f')), |
| 154 | ] |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 155 | def _encode(t): |
| 156 | return (t[0].encode('ascii'), |
| 157 | tuple(x.encode('ascii') for x in t[1]), |
| 158 | tuple(x.encode('ascii') for x in t[2])) |
| 159 | bytes_cases = [_encode(x) for x in str_cases] |
| 160 | str_schemes = ('http', 'https') |
| 161 | bytes_schemes = (b'http', b'https') |
| 162 | str_tests = str_schemes, str_cases |
| 163 | bytes_tests = bytes_schemes, bytes_cases |
| 164 | for schemes, test_cases in (str_tests, bytes_tests): |
| 165 | for scheme in schemes: |
| 166 | for url, parsed, split in test_cases: |
| 167 | url = scheme + url |
| 168 | parsed = (scheme,) + parsed |
| 169 | split = (scheme,) + split |
| 170 | self.checkRoundtrips(url, parsed, split) |
Fred Drake | 7070565 | 2002-10-16 21:02:36 +0000 | [diff] [blame] | 171 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 172 | def checkJoin(self, base, relurl, expected): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 173 | str_components = (base, relurl, expected) |
| 174 | self.assertEqual(urllib.parse.urljoin(base, relurl), expected) |
| 175 | bytes_components = baseb, relurlb, expectedb = [ |
| 176 | x.encode('ascii') for x in str_components] |
| 177 | self.assertEqual(urllib.parse.urljoin(baseb, relurlb), expectedb) |
Guido van Rossum | bbc0568 | 2002-10-14 19:59:54 +0000 | [diff] [blame] | 178 | |
| 179 | def test_unparse_parse(self): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 180 | str_cases = ['Python', './Python','x-newscheme://foo.com/stuff','x://y','x:/y','x:/','/',] |
| 181 | bytes_cases = [x.encode('ascii') for x in str_cases] |
| 182 | for u in str_cases + bytes_cases: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 183 | self.assertEqual(urllib.parse.urlunsplit(urllib.parse.urlsplit(u)), u) |
| 184 | self.assertEqual(urllib.parse.urlunparse(urllib.parse.urlparse(u)), u) |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 185 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 186 | def test_RFC1808(self): |
| 187 | # "normal" cases from RFC 1808: |
| 188 | self.checkJoin(RFC1808_BASE, 'g:h', 'g:h') |
| 189 | self.checkJoin(RFC1808_BASE, 'g', 'http://a/b/c/g') |
| 190 | self.checkJoin(RFC1808_BASE, './g', 'http://a/b/c/g') |
| 191 | self.checkJoin(RFC1808_BASE, 'g/', 'http://a/b/c/g/') |
| 192 | self.checkJoin(RFC1808_BASE, '/g', 'http://a/g') |
| 193 | self.checkJoin(RFC1808_BASE, '//g', 'http://g') |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 194 | self.checkJoin(RFC1808_BASE, 'g?y', 'http://a/b/c/g?y') |
| 195 | self.checkJoin(RFC1808_BASE, 'g?y/./x', 'http://a/b/c/g?y/./x') |
| 196 | self.checkJoin(RFC1808_BASE, '#s', 'http://a/b/c/d;p?q#s') |
| 197 | self.checkJoin(RFC1808_BASE, 'g#s', 'http://a/b/c/g#s') |
| 198 | self.checkJoin(RFC1808_BASE, 'g#s/./x', 'http://a/b/c/g#s/./x') |
| 199 | self.checkJoin(RFC1808_BASE, 'g?y#s', 'http://a/b/c/g?y#s') |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 200 | self.checkJoin(RFC1808_BASE, 'g;x', 'http://a/b/c/g;x') |
| 201 | self.checkJoin(RFC1808_BASE, 'g;x?y#s', 'http://a/b/c/g;x?y#s') |
| 202 | self.checkJoin(RFC1808_BASE, '.', 'http://a/b/c/') |
| 203 | self.checkJoin(RFC1808_BASE, './', 'http://a/b/c/') |
| 204 | self.checkJoin(RFC1808_BASE, '..', 'http://a/b/') |
| 205 | self.checkJoin(RFC1808_BASE, '../', 'http://a/b/') |
| 206 | self.checkJoin(RFC1808_BASE, '../g', 'http://a/b/g') |
| 207 | self.checkJoin(RFC1808_BASE, '../..', 'http://a/') |
| 208 | self.checkJoin(RFC1808_BASE, '../../', 'http://a/') |
| 209 | self.checkJoin(RFC1808_BASE, '../../g', 'http://a/g') |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 210 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 211 | # "abnormal" cases from RFC 1808: |
| 212 | self.checkJoin(RFC1808_BASE, '', 'http://a/b/c/d;p?q#f') |
| 213 | self.checkJoin(RFC1808_BASE, '../../../g', 'http://a/../g') |
| 214 | self.checkJoin(RFC1808_BASE, '../../../../g', 'http://a/../../g') |
| 215 | self.checkJoin(RFC1808_BASE, '/./g', 'http://a/./g') |
| 216 | self.checkJoin(RFC1808_BASE, '/../g', 'http://a/../g') |
| 217 | self.checkJoin(RFC1808_BASE, 'g.', 'http://a/b/c/g.') |
| 218 | self.checkJoin(RFC1808_BASE, '.g', 'http://a/b/c/.g') |
| 219 | self.checkJoin(RFC1808_BASE, 'g..', 'http://a/b/c/g..') |
| 220 | self.checkJoin(RFC1808_BASE, '..g', 'http://a/b/c/..g') |
| 221 | self.checkJoin(RFC1808_BASE, './../g', 'http://a/b/g') |
| 222 | self.checkJoin(RFC1808_BASE, './g/.', 'http://a/b/c/g/') |
| 223 | self.checkJoin(RFC1808_BASE, 'g/./h', 'http://a/b/c/g/h') |
| 224 | self.checkJoin(RFC1808_BASE, 'g/../h', 'http://a/b/c/h') |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 225 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 226 | # RFC 1808 and RFC 1630 disagree on these (according to RFC 1808), |
| 227 | # so we'll not actually run these tests (which expect 1808 behavior). |
| 228 | #self.checkJoin(RFC1808_BASE, 'http:g', 'http:g') |
| 229 | #self.checkJoin(RFC1808_BASE, 'http:', 'http:') |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 230 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 231 | def test_RFC2396(self): |
| 232 | # cases from RFC 2396 |
Fred Drake | a4d18a0 | 2001-01-05 05:57:04 +0000 | [diff] [blame] | 233 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 234 | |
| 235 | self.checkJoin(RFC2396_BASE, 'g:h', 'g:h') |
| 236 | self.checkJoin(RFC2396_BASE, 'g', 'http://a/b/c/g') |
| 237 | self.checkJoin(RFC2396_BASE, './g', 'http://a/b/c/g') |
| 238 | self.checkJoin(RFC2396_BASE, 'g/', 'http://a/b/c/g/') |
| 239 | self.checkJoin(RFC2396_BASE, '/g', 'http://a/g') |
| 240 | self.checkJoin(RFC2396_BASE, '//g', 'http://g') |
| 241 | self.checkJoin(RFC2396_BASE, 'g?y', 'http://a/b/c/g?y') |
| 242 | self.checkJoin(RFC2396_BASE, '#s', 'http://a/b/c/d;p?q#s') |
| 243 | self.checkJoin(RFC2396_BASE, 'g#s', 'http://a/b/c/g#s') |
| 244 | self.checkJoin(RFC2396_BASE, 'g?y#s', 'http://a/b/c/g?y#s') |
| 245 | self.checkJoin(RFC2396_BASE, 'g;x', 'http://a/b/c/g;x') |
| 246 | self.checkJoin(RFC2396_BASE, 'g;x?y#s', 'http://a/b/c/g;x?y#s') |
| 247 | self.checkJoin(RFC2396_BASE, '.', 'http://a/b/c/') |
| 248 | self.checkJoin(RFC2396_BASE, './', 'http://a/b/c/') |
| 249 | self.checkJoin(RFC2396_BASE, '..', 'http://a/b/') |
| 250 | self.checkJoin(RFC2396_BASE, '../', 'http://a/b/') |
| 251 | self.checkJoin(RFC2396_BASE, '../g', 'http://a/b/g') |
| 252 | self.checkJoin(RFC2396_BASE, '../..', 'http://a/') |
| 253 | self.checkJoin(RFC2396_BASE, '../../', 'http://a/') |
| 254 | self.checkJoin(RFC2396_BASE, '../../g', 'http://a/g') |
| 255 | self.checkJoin(RFC2396_BASE, '', RFC2396_BASE) |
| 256 | self.checkJoin(RFC2396_BASE, '../../../g', 'http://a/../g') |
| 257 | self.checkJoin(RFC2396_BASE, '../../../../g', 'http://a/../../g') |
| 258 | self.checkJoin(RFC2396_BASE, '/./g', 'http://a/./g') |
| 259 | self.checkJoin(RFC2396_BASE, '/../g', 'http://a/../g') |
| 260 | self.checkJoin(RFC2396_BASE, 'g.', 'http://a/b/c/g.') |
| 261 | self.checkJoin(RFC2396_BASE, '.g', 'http://a/b/c/.g') |
| 262 | self.checkJoin(RFC2396_BASE, 'g..', 'http://a/b/c/g..') |
| 263 | self.checkJoin(RFC2396_BASE, '..g', 'http://a/b/c/..g') |
| 264 | self.checkJoin(RFC2396_BASE, './../g', 'http://a/b/g') |
| 265 | self.checkJoin(RFC2396_BASE, './g/.', 'http://a/b/c/g/') |
| 266 | self.checkJoin(RFC2396_BASE, 'g/./h', 'http://a/b/c/g/h') |
| 267 | self.checkJoin(RFC2396_BASE, 'g/../h', 'http://a/b/c/h') |
| 268 | self.checkJoin(RFC2396_BASE, 'g;x=1/./y', 'http://a/b/c/g;x=1/y') |
| 269 | self.checkJoin(RFC2396_BASE, 'g;x=1/../y', 'http://a/b/c/y') |
| 270 | self.checkJoin(RFC2396_BASE, 'g?y/./x', 'http://a/b/c/g?y/./x') |
| 271 | self.checkJoin(RFC2396_BASE, 'g?y/../x', 'http://a/b/c/g?y/../x') |
| 272 | self.checkJoin(RFC2396_BASE, 'g#s/./x', 'http://a/b/c/g#s/./x') |
| 273 | self.checkJoin(RFC2396_BASE, 'g#s/../x', 'http://a/b/c/g#s/../x') |
| 274 | |
Facundo Batista | 23e3856 | 2008-08-14 16:55:14 +0000 | [diff] [blame] | 275 | def test_RFC3986(self): |
Senthil Kumaran | dd3820f | 2010-05-07 04:19:23 +0000 | [diff] [blame] | 276 | # Test cases from RFC3986 |
Facundo Batista | 23e3856 | 2008-08-14 16:55:14 +0000 | [diff] [blame] | 277 | self.checkJoin(RFC3986_BASE, '?y','http://a/b/c/d;p?y') |
| 278 | self.checkJoin(RFC2396_BASE, ';x', 'http://a/b/c/;x') |
Senthil Kumaran | dd3820f | 2010-05-07 04:19:23 +0000 | [diff] [blame] | 279 | self.checkJoin(RFC3986_BASE, 'g:h','g:h') |
| 280 | self.checkJoin(RFC3986_BASE, 'g','http://a/b/c/g') |
| 281 | self.checkJoin(RFC3986_BASE, './g','http://a/b/c/g') |
| 282 | self.checkJoin(RFC3986_BASE, 'g/','http://a/b/c/g/') |
| 283 | self.checkJoin(RFC3986_BASE, '/g','http://a/g') |
| 284 | self.checkJoin(RFC3986_BASE, '//g','http://g') |
| 285 | self.checkJoin(RFC3986_BASE, '?y','http://a/b/c/d;p?y') |
| 286 | self.checkJoin(RFC3986_BASE, 'g?y','http://a/b/c/g?y') |
| 287 | self.checkJoin(RFC3986_BASE, '#s','http://a/b/c/d;p?q#s') |
| 288 | self.checkJoin(RFC3986_BASE, 'g#s','http://a/b/c/g#s') |
| 289 | self.checkJoin(RFC3986_BASE, 'g?y#s','http://a/b/c/g?y#s') |
| 290 | self.checkJoin(RFC3986_BASE, ';x','http://a/b/c/;x') |
| 291 | self.checkJoin(RFC3986_BASE, 'g;x','http://a/b/c/g;x') |
| 292 | self.checkJoin(RFC3986_BASE, 'g;x?y#s','http://a/b/c/g;x?y#s') |
| 293 | self.checkJoin(RFC3986_BASE, '','http://a/b/c/d;p?q') |
| 294 | self.checkJoin(RFC3986_BASE, '.','http://a/b/c/') |
| 295 | self.checkJoin(RFC3986_BASE, './','http://a/b/c/') |
| 296 | self.checkJoin(RFC3986_BASE, '..','http://a/b/') |
| 297 | self.checkJoin(RFC3986_BASE, '../','http://a/b/') |
| 298 | self.checkJoin(RFC3986_BASE, '../g','http://a/b/g') |
| 299 | self.checkJoin(RFC3986_BASE, '../..','http://a/') |
| 300 | self.checkJoin(RFC3986_BASE, '../../','http://a/') |
| 301 | self.checkJoin(RFC3986_BASE, '../../g','http://a/g') |
| 302 | |
| 303 | #Abnormal Examples |
| 304 | |
| 305 | # The 'abnormal scenarios' are incompatible with RFC2986 parsing |
| 306 | # Tests are here for reference. |
| 307 | |
| 308 | #self.checkJoin(RFC3986_BASE, '../../../g','http://a/g') |
| 309 | #self.checkJoin(RFC3986_BASE, '../../../../g','http://a/g') |
| 310 | #self.checkJoin(RFC3986_BASE, '/./g','http://a/g') |
| 311 | #self.checkJoin(RFC3986_BASE, '/../g','http://a/g') |
| 312 | |
| 313 | self.checkJoin(RFC3986_BASE, 'g.','http://a/b/c/g.') |
| 314 | self.checkJoin(RFC3986_BASE, '.g','http://a/b/c/.g') |
| 315 | self.checkJoin(RFC3986_BASE, 'g..','http://a/b/c/g..') |
| 316 | self.checkJoin(RFC3986_BASE, '..g','http://a/b/c/..g') |
| 317 | self.checkJoin(RFC3986_BASE, './../g','http://a/b/g') |
| 318 | self.checkJoin(RFC3986_BASE, './g/.','http://a/b/c/g/') |
| 319 | self.checkJoin(RFC3986_BASE, 'g/./h','http://a/b/c/g/h') |
| 320 | self.checkJoin(RFC3986_BASE, 'g/../h','http://a/b/c/h') |
| 321 | self.checkJoin(RFC3986_BASE, 'g;x=1/./y','http://a/b/c/g;x=1/y') |
| 322 | self.checkJoin(RFC3986_BASE, 'g;x=1/../y','http://a/b/c/y') |
| 323 | self.checkJoin(RFC3986_BASE, 'g?y/./x','http://a/b/c/g?y/./x') |
| 324 | self.checkJoin(RFC3986_BASE, 'g?y/../x','http://a/b/c/g?y/../x') |
| 325 | self.checkJoin(RFC3986_BASE, 'g#s/./x','http://a/b/c/g#s/./x') |
| 326 | self.checkJoin(RFC3986_BASE, 'g#s/../x','http://a/b/c/g#s/../x') |
| 327 | #self.checkJoin(RFC3986_BASE, 'http:g','http:g') # strict parser |
| 328 | self.checkJoin(RFC3986_BASE, 'http:g','http://a/b/c/g') #relaxed parser |
Facundo Batista | 23e3856 | 2008-08-14 16:55:14 +0000 | [diff] [blame] | 329 | |
Senthil Kumaran | dca5b86 | 2010-12-17 04:48:45 +0000 | [diff] [blame] | 330 | # Test for issue9721 |
| 331 | self.checkJoin('http://a/b/c/de', ';x','http://a/b/c/;x') |
| 332 | |
Senthil Kumaran | aa69d4d | 2010-07-14 10:21:22 +0000 | [diff] [blame] | 333 | def test_urljoins(self): |
| 334 | self.checkJoin(SIMPLE_BASE, 'g:h','g:h') |
| 335 | self.checkJoin(SIMPLE_BASE, 'http:g','http://a/b/c/g') |
| 336 | self.checkJoin(SIMPLE_BASE, 'http:','http://a/b/c/d') |
| 337 | self.checkJoin(SIMPLE_BASE, 'g','http://a/b/c/g') |
| 338 | self.checkJoin(SIMPLE_BASE, './g','http://a/b/c/g') |
| 339 | self.checkJoin(SIMPLE_BASE, 'g/','http://a/b/c/g/') |
| 340 | self.checkJoin(SIMPLE_BASE, '/g','http://a/g') |
| 341 | self.checkJoin(SIMPLE_BASE, '//g','http://g') |
| 342 | self.checkJoin(SIMPLE_BASE, '?y','http://a/b/c/d?y') |
| 343 | self.checkJoin(SIMPLE_BASE, 'g?y','http://a/b/c/g?y') |
| 344 | self.checkJoin(SIMPLE_BASE, 'g?y/./x','http://a/b/c/g?y/./x') |
| 345 | self.checkJoin(SIMPLE_BASE, '.','http://a/b/c/') |
| 346 | self.checkJoin(SIMPLE_BASE, './','http://a/b/c/') |
| 347 | self.checkJoin(SIMPLE_BASE, '..','http://a/b/') |
| 348 | self.checkJoin(SIMPLE_BASE, '../','http://a/b/') |
| 349 | self.checkJoin(SIMPLE_BASE, '../g','http://a/b/g') |
| 350 | self.checkJoin(SIMPLE_BASE, '../..','http://a/') |
| 351 | self.checkJoin(SIMPLE_BASE, '../../g','http://a/g') |
| 352 | self.checkJoin(SIMPLE_BASE, '../../../g','http://a/../g') |
| 353 | self.checkJoin(SIMPLE_BASE, './../g','http://a/b/g') |
| 354 | self.checkJoin(SIMPLE_BASE, './g/.','http://a/b/c/g/') |
| 355 | self.checkJoin(SIMPLE_BASE, '/./g','http://a/./g') |
| 356 | self.checkJoin(SIMPLE_BASE, 'g/./h','http://a/b/c/g/h') |
| 357 | self.checkJoin(SIMPLE_BASE, 'g/../h','http://a/b/c/h') |
| 358 | self.checkJoin(SIMPLE_BASE, 'http:g','http://a/b/c/g') |
| 359 | self.checkJoin(SIMPLE_BASE, 'http:','http://a/b/c/d') |
| 360 | self.checkJoin(SIMPLE_BASE, 'http:?y','http://a/b/c/d?y') |
| 361 | self.checkJoin(SIMPLE_BASE, 'http:g?y','http://a/b/c/g?y') |
| 362 | self.checkJoin(SIMPLE_BASE, 'http:g?y/./x','http://a/b/c/g?y/./x') |
| 363 | |
Senthil Kumaran | ad02d23 | 2010-04-16 03:02:13 +0000 | [diff] [blame] | 364 | def test_RFC2732(self): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 365 | str_cases = [ |
Senthil Kumaran | ad02d23 | 2010-04-16 03:02:13 +0000 | [diff] [blame] | 366 | ('http://Test.python.org:5432/foo/', 'test.python.org', 5432), |
| 367 | ('http://12.34.56.78:5432/foo/', '12.34.56.78', 5432), |
| 368 | ('http://[::1]:5432/foo/', '::1', 5432), |
| 369 | ('http://[dead:beef::1]:5432/foo/', 'dead:beef::1', 5432), |
| 370 | ('http://[dead:beef::]:5432/foo/', 'dead:beef::', 5432), |
| 371 | ('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]:5432/foo/', |
| 372 | 'dead:beef:cafe:5417:affe:8fa3:deaf:feed', 5432), |
| 373 | ('http://[::12.34.56.78]:5432/foo/', '::12.34.56.78', 5432), |
| 374 | ('http://[::ffff:12.34.56.78]:5432/foo/', |
| 375 | '::ffff:12.34.56.78', 5432), |
| 376 | ('http://Test.python.org/foo/', 'test.python.org', None), |
| 377 | ('http://12.34.56.78/foo/', '12.34.56.78', None), |
| 378 | ('http://[::1]/foo/', '::1', None), |
| 379 | ('http://[dead:beef::1]/foo/', 'dead:beef::1', None), |
| 380 | ('http://[dead:beef::]/foo/', 'dead:beef::', None), |
| 381 | ('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/', |
| 382 | 'dead:beef:cafe:5417:affe:8fa3:deaf:feed', None), |
| 383 | ('http://[::12.34.56.78]/foo/', '::12.34.56.78', None), |
| 384 | ('http://[::ffff:12.34.56.78]/foo/', |
| 385 | '::ffff:12.34.56.78', None), |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 386 | ] |
| 387 | def _encode(t): |
| 388 | return t[0].encode('ascii'), t[1].encode('ascii'), t[2] |
| 389 | bytes_cases = [_encode(x) for x in str_cases] |
| 390 | for url, hostname, port in str_cases + bytes_cases: |
Senthil Kumaran | ad02d23 | 2010-04-16 03:02:13 +0000 | [diff] [blame] | 391 | urlparsed = urllib.parse.urlparse(url) |
| 392 | self.assertEqual((urlparsed.hostname, urlparsed.port) , (hostname, port)) |
| 393 | |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 394 | str_cases = [ |
Senthil Kumaran | ad02d23 | 2010-04-16 03:02:13 +0000 | [diff] [blame] | 395 | 'http://::12.34.56.78]/', |
| 396 | 'http://[::1/foo/', |
Senthil Kumaran | 7a1e09f | 2010-04-22 12:19:46 +0000 | [diff] [blame] | 397 | 'ftp://[::1/foo/bad]/bad', |
Senthil Kumaran | 2eaef05 | 2010-04-20 20:42:50 +0000 | [diff] [blame] | 398 | 'http://[::1/foo/bad]/bad', |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 399 | 'http://[::ffff:12.34.56.78'] |
| 400 | bytes_cases = [x.encode('ascii') for x in str_cases] |
| 401 | for invalid_url in str_cases + bytes_cases: |
Senthil Kumaran | 7a1e09f | 2010-04-22 12:19:46 +0000 | [diff] [blame] | 402 | self.assertRaises(ValueError, urllib.parse.urlparse, invalid_url) |
Senthil Kumaran | ad02d23 | 2010-04-16 03:02:13 +0000 | [diff] [blame] | 403 | |
Fred Drake | 7070565 | 2002-10-16 21:02:36 +0000 | [diff] [blame] | 404 | def test_urldefrag(self): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 405 | str_cases = [ |
Fred Drake | 7070565 | 2002-10-16 21:02:36 +0000 | [diff] [blame] | 406 | ('http://python.org#frag', 'http://python.org', 'frag'), |
| 407 | ('http://python.org', 'http://python.org', ''), |
| 408 | ('http://python.org/#frag', 'http://python.org/', 'frag'), |
| 409 | ('http://python.org/', 'http://python.org/', ''), |
| 410 | ('http://python.org/?q#frag', 'http://python.org/?q', 'frag'), |
| 411 | ('http://python.org/?q', 'http://python.org/?q', ''), |
| 412 | ('http://python.org/p#frag', 'http://python.org/p', 'frag'), |
| 413 | ('http://python.org/p?q', 'http://python.org/p?q', ''), |
| 414 | (RFC1808_BASE, 'http://a/b/c/d;p?q', 'f'), |
| 415 | (RFC2396_BASE, 'http://a/b/c/d;p?q', ''), |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 416 | ] |
| 417 | def _encode(t): |
| 418 | return type(t)(x.encode('ascii') for x in t) |
| 419 | bytes_cases = [_encode(x) for x in str_cases] |
| 420 | for url, defrag, frag in str_cases + bytes_cases: |
| 421 | result = urllib.parse.urldefrag(url) |
| 422 | self.assertEqual(result.geturl(), url) |
| 423 | self.assertEqual(result, (defrag, frag)) |
| 424 | self.assertEqual(result.url, defrag) |
| 425 | self.assertEqual(result.fragment, frag) |
Fred Drake | 7070565 | 2002-10-16 21:02:36 +0000 | [diff] [blame] | 426 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 427 | def test_urlsplit_attributes(self): |
| 428 | url = "HTTP://WWW.PYTHON.ORG/doc/#frag" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 429 | p = urllib.parse.urlsplit(url) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 430 | self.assertEqual(p.scheme, "http") |
| 431 | self.assertEqual(p.netloc, "WWW.PYTHON.ORG") |
| 432 | self.assertEqual(p.path, "/doc/") |
| 433 | self.assertEqual(p.query, "") |
| 434 | self.assertEqual(p.fragment, "frag") |
| 435 | self.assertEqual(p.username, None) |
| 436 | self.assertEqual(p.password, None) |
| 437 | self.assertEqual(p.hostname, "www.python.org") |
| 438 | self.assertEqual(p.port, None) |
| 439 | # geturl() won't return exactly the original URL in this case |
| 440 | # since the scheme is always case-normalized |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 441 | # We handle this by ignoring the first 4 characters of the URL |
| 442 | self.assertEqual(p.geturl()[4:], url[4:]) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 443 | |
| 444 | url = "http://User:Pass@www.python.org:080/doc/?query=yes#frag" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 445 | p = urllib.parse.urlsplit(url) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 446 | self.assertEqual(p.scheme, "http") |
| 447 | self.assertEqual(p.netloc, "User:Pass@www.python.org:080") |
| 448 | self.assertEqual(p.path, "/doc/") |
| 449 | self.assertEqual(p.query, "query=yes") |
| 450 | self.assertEqual(p.fragment, "frag") |
| 451 | self.assertEqual(p.username, "User") |
| 452 | self.assertEqual(p.password, "Pass") |
| 453 | self.assertEqual(p.hostname, "www.python.org") |
| 454 | self.assertEqual(p.port, 80) |
| 455 | self.assertEqual(p.geturl(), url) |
| 456 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 457 | # Addressing issue1698, which suggests Username can contain |
| 458 | # "@" characters. Though not RFC compliant, many ftp sites allow |
| 459 | # and request email addresses as usernames. |
| 460 | |
| 461 | url = "http://User@example.com:Pass@www.python.org:080/doc/?query=yes#frag" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 462 | p = urllib.parse.urlsplit(url) |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 463 | self.assertEqual(p.scheme, "http") |
| 464 | self.assertEqual(p.netloc, "User@example.com:Pass@www.python.org:080") |
| 465 | self.assertEqual(p.path, "/doc/") |
| 466 | self.assertEqual(p.query, "query=yes") |
| 467 | self.assertEqual(p.fragment, "frag") |
| 468 | self.assertEqual(p.username, "User@example.com") |
| 469 | self.assertEqual(p.password, "Pass") |
| 470 | self.assertEqual(p.hostname, "www.python.org") |
| 471 | self.assertEqual(p.port, 80) |
| 472 | self.assertEqual(p.geturl(), url) |
| 473 | |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 474 | # And check them all again, only with bytes this time |
| 475 | url = b"HTTP://WWW.PYTHON.ORG/doc/#frag" |
| 476 | p = urllib.parse.urlsplit(url) |
| 477 | self.assertEqual(p.scheme, b"http") |
| 478 | self.assertEqual(p.netloc, b"WWW.PYTHON.ORG") |
| 479 | self.assertEqual(p.path, b"/doc/") |
| 480 | self.assertEqual(p.query, b"") |
| 481 | self.assertEqual(p.fragment, b"frag") |
| 482 | self.assertEqual(p.username, None) |
| 483 | self.assertEqual(p.password, None) |
| 484 | self.assertEqual(p.hostname, b"www.python.org") |
| 485 | self.assertEqual(p.port, None) |
| 486 | self.assertEqual(p.geturl()[4:], url[4:]) |
| 487 | |
| 488 | url = b"http://User:Pass@www.python.org:080/doc/?query=yes#frag" |
| 489 | p = urllib.parse.urlsplit(url) |
| 490 | self.assertEqual(p.scheme, b"http") |
| 491 | self.assertEqual(p.netloc, b"User:Pass@www.python.org:080") |
| 492 | self.assertEqual(p.path, b"/doc/") |
| 493 | self.assertEqual(p.query, b"query=yes") |
| 494 | self.assertEqual(p.fragment, b"frag") |
| 495 | self.assertEqual(p.username, b"User") |
| 496 | self.assertEqual(p.password, b"Pass") |
| 497 | self.assertEqual(p.hostname, b"www.python.org") |
| 498 | self.assertEqual(p.port, 80) |
| 499 | self.assertEqual(p.geturl(), url) |
| 500 | |
| 501 | url = b"http://User@example.com:Pass@www.python.org:080/doc/?query=yes#frag" |
| 502 | p = urllib.parse.urlsplit(url) |
| 503 | self.assertEqual(p.scheme, b"http") |
| 504 | self.assertEqual(p.netloc, b"User@example.com:Pass@www.python.org:080") |
| 505 | self.assertEqual(p.path, b"/doc/") |
| 506 | self.assertEqual(p.query, b"query=yes") |
| 507 | self.assertEqual(p.fragment, b"frag") |
| 508 | self.assertEqual(p.username, b"User@example.com") |
| 509 | self.assertEqual(p.password, b"Pass") |
| 510 | self.assertEqual(p.hostname, b"www.python.org") |
| 511 | self.assertEqual(p.port, 80) |
| 512 | self.assertEqual(p.geturl(), url) |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 513 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 514 | def test_attributes_bad_port(self): |
| 515 | """Check handling of non-integer ports.""" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 516 | p = urllib.parse.urlsplit("http://www.example.net:foo") |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 517 | self.assertEqual(p.netloc, "www.example.net:foo") |
| 518 | self.assertRaises(ValueError, lambda: p.port) |
| 519 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 520 | p = urllib.parse.urlparse("http://www.example.net:foo") |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 521 | self.assertEqual(p.netloc, "www.example.net:foo") |
| 522 | self.assertRaises(ValueError, lambda: p.port) |
| 523 | |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 524 | # Once again, repeat ourselves to test bytes |
| 525 | p = urllib.parse.urlsplit(b"http://www.example.net:foo") |
| 526 | self.assertEqual(p.netloc, b"www.example.net:foo") |
| 527 | self.assertRaises(ValueError, lambda: p.port) |
| 528 | |
| 529 | p = urllib.parse.urlparse(b"http://www.example.net:foo") |
| 530 | self.assertEqual(p.netloc, b"www.example.net:foo") |
| 531 | self.assertRaises(ValueError, lambda: p.port) |
| 532 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 533 | def test_attributes_without_netloc(self): |
| 534 | # This example is straight from RFC 3261. It looks like it |
| 535 | # should allow the username, hostname, and port to be filled |
| 536 | # in, but doesn't. Since it's a URI and doesn't use the |
| 537 | # scheme://netloc syntax, the netloc and related attributes |
| 538 | # should be left empty. |
| 539 | uri = "sip:alice@atlanta.com;maddr=239.255.255.1;ttl=15" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 540 | p = urllib.parse.urlsplit(uri) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 541 | self.assertEqual(p.netloc, "") |
| 542 | self.assertEqual(p.username, None) |
| 543 | self.assertEqual(p.password, None) |
| 544 | self.assertEqual(p.hostname, None) |
| 545 | self.assertEqual(p.port, None) |
| 546 | self.assertEqual(p.geturl(), uri) |
| 547 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 548 | p = urllib.parse.urlparse(uri) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 549 | self.assertEqual(p.netloc, "") |
| 550 | self.assertEqual(p.username, None) |
| 551 | self.assertEqual(p.password, None) |
| 552 | self.assertEqual(p.hostname, None) |
| 553 | self.assertEqual(p.port, None) |
| 554 | self.assertEqual(p.geturl(), uri) |
| 555 | |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 556 | # You guessed it, repeating the test with bytes input |
| 557 | uri = b"sip:alice@atlanta.com;maddr=239.255.255.1;ttl=15" |
| 558 | p = urllib.parse.urlsplit(uri) |
| 559 | self.assertEqual(p.netloc, b"") |
| 560 | self.assertEqual(p.username, None) |
| 561 | self.assertEqual(p.password, None) |
| 562 | self.assertEqual(p.hostname, None) |
| 563 | self.assertEqual(p.port, None) |
| 564 | self.assertEqual(p.geturl(), uri) |
| 565 | |
| 566 | p = urllib.parse.urlparse(uri) |
| 567 | self.assertEqual(p.netloc, b"") |
| 568 | self.assertEqual(p.username, None) |
| 569 | self.assertEqual(p.password, None) |
| 570 | self.assertEqual(p.hostname, None) |
| 571 | self.assertEqual(p.port, None) |
| 572 | self.assertEqual(p.geturl(), uri) |
| 573 | |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 574 | def test_noslash(self): |
| 575 | # Issue 1637: http://foo.com?query is legal |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 576 | self.assertEqual(urllib.parse.urlparse("http://example.com?blahblah=/foo"), |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 577 | ('http', 'example.com', '', '', 'blahblah=/foo', '')) |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 578 | self.assertEqual(urllib.parse.urlparse(b"http://example.com?blahblah=/foo"), |
| 579 | (b'http', b'example.com', b'', b'', b'blahblah=/foo', b'')) |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 580 | |
Senthil Kumaran | 84c7d9f | 2010-08-04 04:50:44 +0000 | [diff] [blame] | 581 | def test_withoutscheme(self): |
| 582 | # Test urlparse without scheme |
| 583 | # Issue 754016: urlparse goes wrong with IP:port without scheme |
| 584 | # RFC 1808 specifies that netloc should start with //, urlparse expects |
| 585 | # the same, otherwise it classifies the portion of url as path. |
| 586 | self.assertEqual(urllib.parse.urlparse("path"), |
| 587 | ('','','path','','','')) |
| 588 | self.assertEqual(urllib.parse.urlparse("//www.python.org:80"), |
| 589 | ('','www.python.org:80','','','','')) |
| 590 | self.assertEqual(urllib.parse.urlparse("http://www.python.org:80"), |
| 591 | ('http','www.python.org:80','','','','')) |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 592 | # Repeat for bytes input |
| 593 | self.assertEqual(urllib.parse.urlparse(b"path"), |
| 594 | (b'',b'',b'path',b'',b'',b'')) |
| 595 | self.assertEqual(urllib.parse.urlparse(b"//www.python.org:80"), |
| 596 | (b'',b'www.python.org:80',b'',b'',b'',b'')) |
| 597 | self.assertEqual(urllib.parse.urlparse(b"http://www.python.org:80"), |
| 598 | (b'http',b'www.python.org:80',b'',b'',b'',b'')) |
Senthil Kumaran | 84c7d9f | 2010-08-04 04:50:44 +0000 | [diff] [blame] | 599 | |
| 600 | def test_portseparator(self): |
| 601 | # Issue 754016 makes changes for port separator ':' from scheme separator |
| 602 | self.assertEqual(urllib.parse.urlparse("path:80"), |
| 603 | ('','','path:80','','','')) |
| 604 | self.assertEqual(urllib.parse.urlparse("http:"),('http','','','','','')) |
| 605 | self.assertEqual(urllib.parse.urlparse("https:"),('https','','','','','')) |
| 606 | self.assertEqual(urllib.parse.urlparse("http://www.python.org:80"), |
| 607 | ('http','www.python.org:80','','','','')) |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 608 | # As usual, need to check bytes input as well |
| 609 | self.assertEqual(urllib.parse.urlparse(b"path:80"), |
| 610 | (b'',b'',b'path:80',b'',b'',b'')) |
| 611 | self.assertEqual(urllib.parse.urlparse(b"http:"),(b'http',b'',b'',b'',b'',b'')) |
| 612 | self.assertEqual(urllib.parse.urlparse(b"https:"),(b'https',b'',b'',b'',b'',b'')) |
| 613 | self.assertEqual(urllib.parse.urlparse(b"http://www.python.org:80"), |
| 614 | (b'http',b'www.python.org:80',b'',b'',b'',b'')) |
Senthil Kumaran | 84c7d9f | 2010-08-04 04:50:44 +0000 | [diff] [blame] | 615 | |
Facundo Batista | 2ac5de2 | 2008-07-07 18:24:11 +0000 | [diff] [blame] | 616 | def test_usingsys(self): |
| 617 | # Issue 3314: sys module is used in the error |
| 618 | self.assertRaises(TypeError, urllib.parse.urlencode, "foo") |
| 619 | |
Senthil Kumaran | 6be85c5 | 2010-02-19 07:42:50 +0000 | [diff] [blame] | 620 | def test_anyscheme(self): |
| 621 | # Issue 7904: s3://foo.com/stuff has netloc "foo.com". |
Ezio Melotti | 5e15efa | 2010-02-19 14:49:02 +0000 | [diff] [blame] | 622 | self.assertEqual(urllib.parse.urlparse("s3://foo.com/stuff"), |
| 623 | ('s3', 'foo.com', '/stuff', '', '', '')) |
| 624 | self.assertEqual(urllib.parse.urlparse("x-newscheme://foo.com/stuff"), |
| 625 | ('x-newscheme', 'foo.com', '/stuff', '', '', '')) |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 626 | # And for bytes... |
| 627 | self.assertEqual(urllib.parse.urlparse(b"s3://foo.com/stuff"), |
| 628 | (b's3', b'foo.com', b'/stuff', b'', b'', b'')) |
| 629 | self.assertEqual(urllib.parse.urlparse(b"x-newscheme://foo.com/stuff"), |
| 630 | (b'x-newscheme', b'foo.com', b'/stuff', b'', b'', b'')) |
| 631 | |
| 632 | def test_mixed_types_rejected(self): |
| 633 | # Several functions that process either strings or ASCII encoded bytes |
| 634 | # accept multiple arguments. Check they reject mixed type input |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 635 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 636 | urllib.parse.urlparse("www.python.org", b"http") |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 637 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 638 | urllib.parse.urlparse(b"www.python.org", "http") |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 639 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 640 | urllib.parse.urlsplit("www.python.org", b"http") |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 641 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 642 | urllib.parse.urlsplit(b"www.python.org", "http") |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 643 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 644 | urllib.parse.urlunparse(( b"http", "www.python.org","","","","")) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 645 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 646 | urllib.parse.urlunparse(("http", b"www.python.org","","","","")) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 647 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 648 | urllib.parse.urlunsplit((b"http", "www.python.org","","","")) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 649 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 650 | urllib.parse.urlunsplit(("http", b"www.python.org","","","")) |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 651 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 652 | urllib.parse.urljoin("http://python.org", b"http://python.org") |
Ezio Melotti | ed3a7d2 | 2010-12-01 02:32:32 +0000 | [diff] [blame] | 653 | with self.assertRaisesRegex(TypeError, "Cannot mix str"): |
Nick Coghlan | 9fc443c | 2010-11-30 15:48:08 +0000 | [diff] [blame] | 654 | urllib.parse.urljoin(b"http://python.org", "http://python.org") |
| 655 | |
| 656 | def _check_result_type(self, str_type): |
| 657 | num_args = len(str_type._fields) |
| 658 | bytes_type = str_type._encoded_counterpart |
| 659 | self.assertIs(bytes_type._decoded_counterpart, str_type) |
| 660 | str_args = ('',) * num_args |
| 661 | bytes_args = (b'',) * num_args |
| 662 | str_result = str_type(*str_args) |
| 663 | bytes_result = bytes_type(*bytes_args) |
| 664 | encoding = 'ascii' |
| 665 | errors = 'strict' |
| 666 | self.assertEqual(str_result, str_args) |
| 667 | self.assertEqual(bytes_result.decode(), str_args) |
| 668 | self.assertEqual(bytes_result.decode(), str_result) |
| 669 | self.assertEqual(bytes_result.decode(encoding), str_args) |
| 670 | self.assertEqual(bytes_result.decode(encoding), str_result) |
| 671 | self.assertEqual(bytes_result.decode(encoding, errors), str_args) |
| 672 | self.assertEqual(bytes_result.decode(encoding, errors), str_result) |
| 673 | self.assertEqual(bytes_result, bytes_args) |
| 674 | self.assertEqual(str_result.encode(), bytes_args) |
| 675 | self.assertEqual(str_result.encode(), bytes_result) |
| 676 | self.assertEqual(str_result.encode(encoding), bytes_args) |
| 677 | self.assertEqual(str_result.encode(encoding), bytes_result) |
| 678 | self.assertEqual(str_result.encode(encoding, errors), bytes_args) |
| 679 | self.assertEqual(str_result.encode(encoding, errors), bytes_result) |
| 680 | |
| 681 | def test_result_pairs(self): |
| 682 | # Check encoding and decoding between result pairs |
| 683 | result_types = [ |
| 684 | urllib.parse.DefragResult, |
| 685 | urllib.parse.SplitResult, |
| 686 | urllib.parse.ParseResult, |
| 687 | ] |
| 688 | for result_type in result_types: |
| 689 | self._check_result_type(result_type) |
| 690 | |
Senthil Kumaran | 6be85c5 | 2010-02-19 07:42:50 +0000 | [diff] [blame] | 691 | |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 692 | def test_main(): |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 693 | support.run_unittest(UrlParseTestCase) |
Skip Montanaro | 6ec967d | 2002-03-23 05:32:10 +0000 | [diff] [blame] | 694 | |
| 695 | if __name__ == "__main__": |
| 696 | test_main() |