Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
unmark fixed tests
  • Loading branch information
youknowone committed Oct 28, 2025
commit bccadf8f279469daf88615f0ca00fff28a93ffc6
2 changes: 0 additions & 2 deletions Lib/test/test_httplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -1733,8 +1733,6 @@ def test_networked_trusted_by_default_cert(self):
h.close()
self.assertIn('text/html', content_type)

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_networked_good_cert(self):
# We feed the server's cert as a validating cert
import ssl
Expand Down
10 changes: 0 additions & 10 deletions Lib/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ def test_parse_cert_CVE_2019_5010(self):
}
)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_parse_cert_CVE_2013_4238(self):
p = ssl._ssl._test_decode_cert(NULLBYTECERT)
if support.verbose:
Expand Down Expand Up @@ -1167,7 +1166,6 @@ def test_security_level(self):
}
self.assertIn(ctx.security_level, security_level_range)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_verify_flags(self):
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
# default value
Expand Down Expand Up @@ -1427,7 +1425,6 @@ def test_set_default_verify_paths(self):
ctx.set_default_verify_paths()

@unittest.skipUnless(ssl.HAS_ECDH, "ECDH disabled on this OpenSSL build")
@unittest.expectedFailure # TODO: RUSTPYTHON
def test_set_ecdh_curve(self):
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
ctx.set_ecdh_curve("prime256v1")
Expand Down Expand Up @@ -1714,7 +1711,6 @@ def test_num_tickest(self):

class SSLErrorTests(unittest.TestCase):

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_str(self):
# The str() of a SSLError doesn't include the errno
e = ssl.SSLError(1, "foo")
Expand Down Expand Up @@ -2010,7 +2006,6 @@ def test_connect_with_context_fail(self):
self.assertRaisesRegex(ssl.SSLError, regex,
s.connect, self.server_addr)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_connect_capath(self):
# Verify server certificates using the `capath` argument
# NOTE: the subject hashing algorithm has been changed between
Expand Down Expand Up @@ -3268,7 +3263,6 @@ def test_check_hostname_idn(self, warnings_filters=True):
server_hostname=b'k\xf6nig.idn.pythontest.net',
)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_wrong_cert_tls12(self):
"""Connecting when the server rejects the client's certificate

Expand Down Expand Up @@ -4047,7 +4041,6 @@ def test_min_max_version_sslv3(self):
s.connect((HOST, server.port))
self.assertEqual(s.version(), 'SSLv3')

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_default_ecdh_curve(self):
# Issue #21015: elliptic curve-based Diffie Hellman key exchange
# should be enabled by default on SSL contexts.
Expand Down Expand Up @@ -4911,7 +4904,6 @@ def test_internal_chain_client(self):
ssl.PEM_cert_to_DER_cert(pem), der
)

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_certificate_chain(self):
client_context, server_context, hostname = testing_context(
server_chain=False
Expand Down Expand Up @@ -5232,7 +5224,6 @@ def non_linux_skip_if_other_okay_error(self, err):
# just turn this into an unconditional skip anything but Linux.
# The important thing is that our CI has the logic covered.

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_preauth_data_to_tls_server(self):
server_accept_called = threading.Event()
ready_for_server_wrap_socket = threading.Event()
Expand Down Expand Up @@ -5277,7 +5268,6 @@ def call_after_accept(unused):
wrap_error = None
server = None

@unittest.expectedFailure # TODO: RUSTPYTHON
def test_preauth_data_to_tls_client(self):
server_can_continue_with_wrap_socket = threading.Event()
client_can_continue_with_wrap_socket = threading.Event()
Expand Down
Loading