Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
95526166
Commit
95526166
authored
Feb 08, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests.
parent
23579b7c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
27 additions
and
26 deletions
+27
-26
Lib/test/test_cgi.py
Lib/test/test_cgi.py
+1
-1
Lib/test/test_ftplib.py
Lib/test/test_ftplib.py
+3
-3
Lib/test/test_httplib.py
Lib/test/test_httplib.py
+3
-3
Lib/test/test_httpservers.py
Lib/test/test_httpservers.py
+1
-1
Lib/test/test_urllib.py
Lib/test/test_urllib.py
+2
-2
Lib/test/test_urllib2.py
Lib/test/test_urllib2.py
+4
-3
Lib/test/test_urllib2net.py
Lib/test/test_urllib2net.py
+11
-11
Lib/test/test_wsgiref.py
Lib/test/test_wsgiref.py
+2
-2
No files found.
Lib/test/test_cgi.py
View file @
95526166
...
...
@@ -227,7 +227,7 @@ class CgiTests(unittest.TestCase):
# if we're not chunking properly, readline is only called twice
# (by read_binary); if we are chunking properly, it will be called 5 times
# as long as the chunksize is 1 << 16.
self
.
assert
True
(
f
.
numcalls
>
2
)
self
.
assert
Greater
(
f
.
numcalls
,
2
)
f
.
close
()
def
test_fieldstorage_multipart
(
self
):
...
...
Lib/test/test_ftplib.py
View file @
95526166
...
...
@@ -965,7 +965,7 @@ class TestTimeouts(TestCase):
def
testTimeoutDefault
(
self
):
# default -- use global socket timeout
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
socket
.
setdefaulttimeout
(
30
)
try
:
ftp
=
ftplib
.
FTP
(
HOST
)
...
...
@@ -977,13 +977,13 @@ class TestTimeouts(TestCase):
def
testTimeoutNone
(
self
):
# no timeout -- do not use global socket timeout
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
socket
.
setdefaulttimeout
(
30
)
try
:
ftp
=
ftplib
.
FTP
(
HOST
,
timeout
=
None
)
finally
:
socket
.
setdefaulttimeout
(
None
)
self
.
assert
True
(
ftp
.
sock
.
gettimeout
()
is
None
)
self
.
assert
IsNone
(
ftp
.
sock
.
gettimeout
()
)
self
.
evt
.
wait
()
ftp
.
close
()
...
...
Lib/test/test_httplib.py
View file @
95526166
...
...
@@ -132,7 +132,7 @@ class HeaderTests(TestCase):
conn
.
sock
=
FakeSocket
(
None
)
conn
.
putrequest
(
'GET'
,
'/'
)
conn
.
putheader
(
'Content-length'
,
42
)
self
.
assert
True
(
b'Content-length: 42'
in
conn
.
_buffer
)
self
.
assert
In
(
b'Content-length: 42'
,
conn
.
_buffer
)
def
test_ipv6host_header
(
self
):
# Default host header on IPv6 transaction should wrapped by [] if
...
...
@@ -699,7 +699,7 @@ class TimeoutTest(TestCase):
# and into the socket.
# default -- use global socket timeout
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
socket
.
setdefaulttimeout
(
30
)
try
:
httpConn
=
client
.
HTTPConnection
(
HOST
,
TimeoutTest
.
PORT
)
...
...
@@ -710,7 +710,7 @@ class TimeoutTest(TestCase):
httpConn
.
close
()
# no timeout -- do not use global socket default
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
socket
.
setdefaulttimeout
(
30
)
try
:
httpConn
=
client
.
HTTPConnection
(
HOST
,
TimeoutTest
.
PORT
,
...
...
Lib/test/test_httpservers.py
View file @
95526166
...
...
@@ -531,7 +531,7 @@ class BaseHTTPRequestHandlerTestCase(unittest.TestCase):
def
verify_http_server_response
(
self
,
response
):
match
=
self
.
HTTPResponseMatch
.
search
(
response
)
self
.
assert
True
(
match
is
not
None
)
self
.
assert
IsNotNone
(
match
)
def
test_http_1_1
(
self
):
result
=
self
.
send_typical_request
(
b'GET / HTTP/1.1
\
r
\
n
\
r
\
n
'
)
...
...
Lib/test/test_urllib.py
View file @
95526166
...
...
@@ -1264,7 +1264,7 @@ class URLopener_Tests(unittest.TestCase):
# def testTimeoutNone(self):
# # global default timeout is ignored
# import socket
# self.assert
True(socket.getdefaulttimeout() is None
)
# self.assert
IsNone(socket.getdefaulttimeout()
)
# socket.setdefaulttimeout(30)
# try:
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
...
...
@@ -1276,7 +1276,7 @@ class URLopener_Tests(unittest.TestCase):
# def testTimeoutDefault(self):
# # global default timeout is used
# import socket
# self.assert
True(socket.getdefaulttimeout() is None
)
# self.assert
IsNone(socket.getdefaulttimeout()
)
# socket.setdefaulttimeout(30)
# try:
# ftp = urllib.ftpwrapper("myuser", "mypass", "localhost", 9093, [])
...
...
Lib/test/test_urllib2.py
View file @
95526166
...
...
@@ -594,8 +594,8 @@ class OpenerDirectorTests(unittest.TestCase):
self
.
assertIsInstance
(
args
[
0
],
Request
)
# response from opener.open is None, because there's no
# handler that defines http_open to handle it
self
.
assertTrue
(
args
[
1
]
is
None
or
isinstance
(
args
[
1
],
MockResponse
)
)
if
args
[
1
]
is
not
None
:
self
.
assertIsInstance
(
args
[
1
],
MockResponse
)
def
test_method_deprecations
(
self
):
req
=
Request
(
"http://www.example.com"
)
...
...
@@ -1000,7 +1000,8 @@ class HandlerTests(unittest.TestCase):
MockHeaders
({
"location"
:
to_url
}))
except
urllib
.
error
.
HTTPError
:
# 307 in response to POST requires user OK
self
.
assertTrue
(
code
==
307
and
data
is
not
None
)
self
.
assertEqual
(
code
,
307
)
self
.
assertIsNotNone
(
data
)
self
.
assertEqual
(
o
.
req
.
get_full_url
(),
to_url
)
try
:
self
.
assertEqual
(
o
.
req
.
get_method
(),
"GET"
)
...
...
Lib/test/test_urllib2net.py
View file @
95526166
...
...
@@ -85,7 +85,7 @@ class CloseSocketTest(unittest.TestCase):
with
support
.
transient_internet
(
url
):
response
=
_urlopen_with_retry
(
url
)
sock
=
response
.
fp
self
.
assert
True
(
not
sock
.
closed
)
self
.
assert
False
(
sock
.
closed
)
response
.
close
()
self
.
assertTrue
(
sock
.
closed
)
...
...
@@ -252,15 +252,15 @@ class OtherNetworkTests(unittest.TestCase):
class
TimeoutTest
(
unittest
.
TestCase
):
def
test_http_basic
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
url
=
"http://www.python.org"
with
support
.
transient_internet
(
url
,
timeout
=
None
):
u
=
_urlopen_with_retry
(
url
)
self
.
addCleanup
(
u
.
close
)
self
.
assert
True
(
u
.
fp
.
raw
.
_sock
.
gettimeout
()
is
None
)
self
.
assert
IsNone
(
u
.
fp
.
raw
.
_sock
.
gettimeout
()
)
def
test_http_default_timeout
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
url
=
"http://www.python.org"
with
support
.
transient_internet
(
url
):
socket
.
setdefaulttimeout
(
60
)
...
...
@@ -272,7 +272,7 @@ class TimeoutTest(unittest.TestCase):
self
.
assertEqual
(
u
.
fp
.
raw
.
_sock
.
gettimeout
(),
60
)
def
test_http_no_timeout
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
url
=
"http://www.python.org"
with
support
.
transient_internet
(
url
):
socket
.
setdefaulttimeout
(
60
)
...
...
@@ -281,7 +281,7 @@ class TimeoutTest(unittest.TestCase):
self
.
addCleanup
(
u
.
close
)
finally
:
socket
.
setdefaulttimeout
(
None
)
self
.
assert
True
(
u
.
fp
.
raw
.
_sock
.
gettimeout
()
is
None
)
self
.
assert
IsNone
(
u
.
fp
.
raw
.
_sock
.
gettimeout
()
)
def
test_http_timeout
(
self
):
url
=
"http://www.python.org"
...
...
@@ -293,14 +293,14 @@ class TimeoutTest(unittest.TestCase):
FTP_HOST
=
"ftp://ftp.mirror.nl/pub/gnu/"
def
test_ftp_basic
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
with
support
.
transient_internet
(
self
.
FTP_HOST
,
timeout
=
None
):
u
=
_urlopen_with_retry
(
self
.
FTP_HOST
)
self
.
addCleanup
(
u
.
close
)
self
.
assert
True
(
u
.
fp
.
fp
.
raw
.
_sock
.
gettimeout
()
is
None
)
self
.
assert
IsNone
(
u
.
fp
.
fp
.
raw
.
_sock
.
gettimeout
()
)
def
test_ftp_default_timeout
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
with
support
.
transient_internet
(
self
.
FTP_HOST
):
socket
.
setdefaulttimeout
(
60
)
try
:
...
...
@@ -311,7 +311,7 @@ class TimeoutTest(unittest.TestCase):
self
.
assertEqual
(
u
.
fp
.
fp
.
raw
.
_sock
.
gettimeout
(),
60
)
def
test_ftp_no_timeout
(
self
):
self
.
assert
True
(
socket
.
getdefaulttimeout
()
is
None
)
self
.
assert
IsNone
(
socket
.
getdefaulttimeout
()
)
with
support
.
transient_internet
(
self
.
FTP_HOST
):
socket
.
setdefaulttimeout
(
60
)
try
:
...
...
@@ -319,7 +319,7 @@ class TimeoutTest(unittest.TestCase):
self
.
addCleanup
(
u
.
close
)
finally
:
socket
.
setdefaulttimeout
(
None
)
self
.
assert
True
(
u
.
fp
.
fp
.
raw
.
_sock
.
gettimeout
()
is
None
)
self
.
assert
IsNone
(
u
.
fp
.
fp
.
raw
.
_sock
.
gettimeout
()
)
def
test_ftp_timeout
(
self
):
with
support
.
transient_internet
(
self
.
FTP_HOST
):
...
...
Lib/test/test_wsgiref.py
View file @
95526166
...
...
@@ -196,7 +196,7 @@ class UtilityTests(TestCase):
# Check existing value
env
=
{
key
:
alt
}
util
.
setup_testing_defaults
(
env
)
self
.
assert
True
(
env
[
key
]
is
alt
)
self
.
assert
Is
(
env
[
key
],
alt
)
def
checkCrossDefault
(
self
,
key
,
value
,
**
kw
):
util
.
setup_testing_defaults
(
kw
)
...
...
@@ -343,7 +343,7 @@ class HeaderTests(TestCase):
self
.
assertEqual
(
Headers
(
test
[:]).
keys
(),
[
'x'
])
self
.
assertEqual
(
Headers
(
test
[:]).
values
(),
[
'y'
])
self
.
assertEqual
(
Headers
(
test
[:]).
items
(),
test
)
self
.
assert
False
(
Headers
(
test
).
items
()
is
test
)
# must be copy!
self
.
assert
IsNot
(
Headers
(
test
).
items
(),
test
)
# must be copy!
h
=
Headers
([])
del
h
[
'foo'
]
# should not raise an error
...
...
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