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
93cfc244
Commit
93cfc244
authored
Mar 12, 2014
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Plain Diff
merge 3.2 (#20896)
parents
27512580
443c5f12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
Lib/test/test_ssl.py
Lib/test/test_ssl.py
+8
-3
No files found.
Lib/test/test_ssl.py
View file @
93cfc244
...
...
@@ -964,12 +964,15 @@ class NetworkedTests(unittest.TestCase):
def
test_get_server_certificate
(
self
):
def
_test_get_server_certificate
(
host
,
port
,
cert
=
None
):
with
support
.
transient_internet
(
host
):
pem
=
ssl
.
get_server_certificate
((
host
,
port
))
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ssl
.
PROTOCOL_SSLv23
)
if
not
pem
:
self
.
fail
(
"No server certificate on %s:%s!"
%
(
host
,
port
))
try
:
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
CERTFILE
)
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ssl
.
PROTOCOL_SSLv23
,
ca_certs
=
CERTFILE
)
except
ssl
.
SSLError
as
x
:
#should fail
if
support
.
verbose
:
...
...
@@ -977,7 +980,9 @@ class NetworkedTests(unittest.TestCase):
else
:
self
.
fail
(
"Got server certificate %s for %s:%s!"
%
(
pem
,
host
,
port
))
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ca_certs
=
cert
)
pem
=
ssl
.
get_server_certificate
((
host
,
port
),
ssl
.
PROTOCOL_SSLv23
,
ca_certs
=
cert
)
if
not
pem
:
self
.
fail
(
"No server certificate on %s:%s!"
%
(
host
,
port
))
if
support
.
verbose
:
...
...
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