This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ssl test_connect_capath fails with "certificate verify failed"
Type: Stage: resolved
Components: Tests Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ned.deily Nosy List: ned.deily, python-dev
Priority: normal Keywords:

Created on 2011-07-05 00:28 by ned.deily, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg139818 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-07-05 00:28
======================================================================
ERROR: test_connect_capath (test.test_ssl.NetworkedTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/test/test_ssl.py", line 584, in test_connect_capath
    s.connect(("svn.python.org", 443))
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/ssl.py", line 471, in connect
    self._real_connect(addr, False)
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/ssl.py", line 461, in _real_connect
    self.do_handshake()
  File "/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/ssl.py", line 441, in do_handshake
    self._sslobj.do_handshake()
ssl.SSLError: [Errno 1] _ssl.c:392: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
msg139819 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-07-05 00:54
New changeset 7731c900ddce by Ned Deily in branch '3.2':
Issue #12496:  Install test/capath directory to prevent test_connect_capath
http://hg.python.org/cpython/rev/7731c900ddce

New changeset 880c3e764ead by Ned Deily in branch 'default':
Issue #12496:  Install test/capath directory to prevent test_connect_capath
http://hg.python.org/cpython/rev/880c3e764ead
History
Date User Action Args
2022-04-11 14:57:19adminsetgithub: 56705
2011-07-05 00:57:25ned.deilysetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2011-07-05 00:54:07python-devsetnosy: + python-dev
messages: + msg139819
2011-07-05 00:28:29ned.deilycreate