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.

Author vstinner
Recipients christian.heimes, erlendaasland, pablogsal, vstinner
Date 2021-05-27.23:05:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622156741.52.0.801219953377.issue44252@roundup.psfhosted.org>
In-reply-to
Content
Another error (not the crash):

test_pha_required_nocert (test.test_ssl.TestPostHandshakeAuth) ...  server:  new connection from ('127.0.0.1', 51128)
 client cert is None
 client did not provide a cert
 server: connection cipher is now ('TLS_AES_256_GCM_SHA384', 'TLSv1.3', 256)
TLS: (<ssl.SSLSocket fd=688, family=AF_INET, type=SOCK_STREAM, proto=0, laddr=('127.0.0.1', 51127), raddr=('127.0.0.1', 51128)>, 'write', TLSVersion.TLS
v1_3, _TLSContentType.ALERT, _TLSAlertType.CERTIFICATE_REQUIRED, b'\x02t')
Test server failure:
Traceback (most recent call last):
   File "C:\vstinner\python\main\lib\test\test_ssl.py", line 2444, in run
    msg = self.read()
   File "C:\vstinner\python\main\lib\test\test_ssl.py", line 2421, in read
    return self.sslconn.read()
   File "C:\vstinner\python\main\lib\ssl.py", line 1131, in read
    return self._sslobj.read(len)
 ssl.SSLError: [SSL: PEER_DID_NOT_RETURN_A_CERTIFICATE] peer did not return a certificate (_ssl.c:2523)
FAIL

======================================================================
FAIL: test_pha_required_nocert (test.test_ssl.TestPostHandshakeAuth)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\vstinner\python\main\lib\test\test_ssl.py", line 4463, in test_pha_required_nocert
    self.assertEqual(s.recv(1024), b'OK\n')
AssertionError: b'' != b'OK\n'
History
Date User Action Args
2021-05-27 23:05:41vstinnersetrecipients: + vstinner, christian.heimes, pablogsal, erlendaasland
2021-05-27 23:05:41vstinnersetmessageid: <1622156741.52.0.801219953377.issue44252@roundup.psfhosted.org>
2021-05-27 23:05:41vstinnerlinkissue44252 messages
2021-05-27 23:05:41vstinnercreate