Tests: check TLS methods availability more carefully.

This commit is contained in:
Andrei Zeliankou
2023-07-10 15:24:15 +01:00
parent 3c7743344b
commit 075c6a7038
2 changed files with 12 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ def test_tls_conf_command():
(_, sock) = client.get_ssl(start=True)
shared_ciphers = sock.shared_ciphers()
if not shared_ciphers:
pytest.skip('no shared ciphers')
protocols = list(set(c[1] for c in shared_ciphers))
protocol = sock.cipher()[1]