diff options
| author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-15 15:59:19 (GMT) |
|---|---|---|
| committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-15 15:59:19 (GMT) |
| commit | b0d85fd1b5714582f12ecb84baa9118f16884013 (patch) | |
| tree | 8387493a18718aaee29a80a4eac46609f575a874 /Lib/test/test_urllib2.py | |
| parent | 6a2a6c2ee37dad75134c212d43e48702f1b219a9 (diff) | |
| download | cpython-b0d85fd1b5714582f12ecb84baa9118f16884013.zip cpython-b0d85fd1b5714582f12ecb84baa9118f16884013.tar.gz cpython-b0d85fd1b5714582f12ecb84baa9118f16884013.tar.bz2 | |
Issue12541 - Add UserWarning for unquoted realms
Diffstat (limited to 'Lib/test/test_urllib2.py')
| -rw-r--r-- | Lib/test/test_urllib2.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index ad558da..fc76a6c 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1106,8 +1106,8 @@ class HandlerTests(unittest.TestCase): self._test_basic_auth(opener, auth_handler, "Authorization", realm, http_handler, password_manager, "http://acme.example.com/protected", - "http://acme.example.com/protected", - ) + "http://acme.example.com/protected" + ) def test_basic_auth_with_single_quoted_realm(self): self.test_basic_auth(quote_char="'") @@ -1121,11 +1121,13 @@ class HandlerTests(unittest.TestCase): 401, 'WWW-Authenticate: Basic realm=%s\r\n\r\n' % realm) opener.add_handler(auth_handler) opener.add_handler(http_handler) - self._test_basic_auth(opener, auth_handler, "Authorization", - realm, http_handler, password_manager, - "http://acme.example.com/protected", - "http://acme.example.com/protected", - ) + msg = "Basic Auth Realm was unquoted" + with test_support.check_warnings((msg, UserWarning)): + self._test_basic_auth(opener, auth_handler, "Authorization", + realm, http_handler, password_manager, + "http://acme.example.com/protected", + "http://acme.example.com/protected" + ) def test_proxy_basic_auth(self): |
