Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d8e24f1f
Kaydet (Commit)
d8e24f1f
authored
Nis 14, 2014
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert urllib.request parse_proxy doctests to unittests.
üst
01bafdcc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
45 deletions
+39
-45
test_urllib2.py
Lib/test/test_urllib2.py
+38
-1
request.py
Lib/urllib/request.py
+1
-44
No files found.
Lib/test/test_urllib2.py
Dosyayı görüntüle @
d8e24f1f
...
...
@@ -10,7 +10,7 @@ import sys
import
urllib.request
# The proxy bypass method imported below has logic specific to the OSX
# proxy config data structure but is testable on all platforms.
from
urllib.request
import
Request
,
OpenerDirector
,
_proxy_bypass_macosx_sysconf
from
urllib.request
import
Request
,
OpenerDirector
,
_p
arse_proxy
,
_p
roxy_bypass_macosx_sysconf
from
urllib.parse
import
urlparse
import
urllib.error
...
...
@@ -1467,6 +1467,43 @@ class MiscTests(unittest.TestCase):
expected_errmsg
=
'HTTP Error
%
s:
%
s'
%
(
err
.
code
,
err
.
msg
)
self
.
assertEqual
(
str
(
err
),
expected_errmsg
)
def
test_parse_proxy
(
self
):
parse_proxy_test_cases
=
[
(
'proxy.example.com'
,
(
None
,
None
,
None
,
'proxy.example.com'
)),
(
'proxy.example.com:3128'
,
(
None
,
None
,
None
,
'proxy.example.com:3128'
)),
(
'proxy.example.com'
,
(
None
,
None
,
None
,
'proxy.example.com'
)),
(
'proxy.example.com:3128'
,
(
None
,
None
,
None
,
'proxy.example.com:3128'
)),
# The authority component may optionally include userinfo
# (assumed to be # username:password):
(
'joe:password@proxy.example.com'
,
(
None
,
'joe'
,
'password'
,
'proxy.example.com'
)),
(
'joe:password@proxy.example.com:3128'
,
(
None
,
'joe'
,
'password'
,
'proxy.example.com:3128'
)),
#Examples with URLS
(
'http://proxy.example.com/'
,
(
'http'
,
None
,
None
,
'proxy.example.com'
)),
(
'http://proxy.example.com:3128/'
,
(
'http'
,
None
,
None
,
'proxy.example.com:3128'
)),
(
'http://joe:password@proxy.example.com/'
,
(
'http'
,
'joe'
,
'password'
,
'proxy.example.com'
)),
(
'http://joe:password@proxy.example.com:3128'
,
(
'http'
,
'joe'
,
'password'
,
'proxy.example.com:3128'
)),
# Everything after the authority is ignored
(
'ftp://joe:password@proxy.example.com/rubbish:3128'
,
(
'ftp'
,
'joe'
,
'password'
,
'proxy.example.com'
)),
# Test for no trailing '/' case
(
'http://joe:password@proxy.example.com'
,
(
'http'
,
'joe'
,
'password'
,
'proxy.example.com'
))
]
for
tc
,
expected
in
parse_proxy_test_cases
:
self
.
assertEqual
(
_parse_proxy
(
tc
),
expected
)
self
.
assertRaises
(
ValueError
,
_parse_proxy
,
'file:/ftp.example.com'
),
class
RequestTests
(
unittest
.
TestCase
):
class
PutRequest
(
Request
):
method
=
'PUT'
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
d8e24f1f
...
...
@@ -687,50 +687,7 @@ def _parse_proxy(proxy):
If a URL is supplied, it must have an authority (host:port) component.
According to RFC 3986, having an authority component means the URL must
have two slashes after the scheme:
>>> _parse_proxy('file:/ftp.example.com/')
Traceback (most recent call last):
ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
The first three items of the returned tuple may be None.
Examples of authority parsing:
>>> _parse_proxy('proxy.example.com')
(None, None, None, 'proxy.example.com')
>>> _parse_proxy('proxy.example.com:3128')
(None, None, None, 'proxy.example.com:3128')
The authority component may optionally include userinfo (assumed to be
username:password):
>>> _parse_proxy('joe:password@proxy.example.com')
(None, 'joe', 'password', 'proxy.example.com')
>>> _parse_proxy('joe:password@proxy.example.com:3128')
(None, 'joe', 'password', 'proxy.example.com:3128')
Same examples, but with URLs instead:
>>> _parse_proxy('http://proxy.example.com/')
('http', None, None, 'proxy.example.com')
>>> _parse_proxy('http://proxy.example.com:3128/')
('http', None, None, 'proxy.example.com:3128')
>>> _parse_proxy('http://joe:password@proxy.example.com/')
('http', 'joe', 'password', 'proxy.example.com')
>>> _parse_proxy('http://joe:password@proxy.example.com:3128')
('http', 'joe', 'password', 'proxy.example.com:3128')
Everything after the authority is ignored:
>>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
('ftp', 'joe', 'password', 'proxy.example.com')
Test for no trailing '/' case:
>>> _parse_proxy('http://joe:password@proxy.example.com')
('http', 'joe', 'password', 'proxy.example.com')
have two slashes after the scheme.
"""
scheme
,
r_scheme
=
splittype
(
proxy
)
if
not
r_scheme
.
startswith
(
"/"
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment