From: bashonly Date: Wed, 20 Dec 2023 19:03:54 +0000 (-0600) Subject: [test:networking] Update tests for OpenSSL 3.2 (#8814) X-Git-Tag: 2023.12.30~20 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/37755a037e612bfc608c3d4722e8ef2ce6a022ee [test:networking] Update tests for OpenSSL 3.2 (#8814) Authored by: bashonly --- diff --git a/test/test_networking.py b/test/test_networking.py index 64af6e459..dc60ca699 100644 --- a/test/test_networking.py +++ b/test/test_networking.py @@ -328,7 +328,7 @@ def test_ssl_error(self, handler): https_server_thread.start() with handler(verify=False) as rh: - with pytest.raises(SSLError, match='sslv3 alert handshake failure') as exc_info: + with pytest.raises(SSLError, match=r'ssl(?:v3|/tls) alert handshake failure') as exc_info: validate_and_send(rh, Request(f'https://127.0.0.1:{https_port}/headers')) assert not issubclass(exc_info.type, CertificateVerifyError) diff --git a/test/test_websockets.py b/test/test_websockets.py index 39d3c7d72..af6142ea3 100644 --- a/test/test_websockets.py +++ b/test/test_websockets.py @@ -148,7 +148,7 @@ def test_verify_cert(self, handler): @pytest.mark.parametrize('handler', ['Websockets'], indirect=True) def test_ssl_error(self, handler): with handler(verify=False) as rh: - with pytest.raises(SSLError, match='sslv3 alert handshake failure') as exc_info: + with pytest.raises(SSLError, match=r'ssl(?:v3|/tls) alert handshake failure') as exc_info: validate_and_send(rh, Request(self.bad_wss_host)) assert not issubclass(exc_info.type, CertificateVerifyError)