comparison ssl_session_ticket_key.t @ 1966:c924ae8d7104

Tests: session reuse handling with Net::SSLeay with LibreSSL. LibreSSL does not support session reuse with TLSv1.3, and this causes various test failures if Net::SSLeay is compiled with LibreSSL. Notably, this affects macOS, where Net::SSLeay compiled with LibreSSL is shipped with the OS. Fix is to mark relevant tests as TODO if Net::SSLeay is compiled with LibreSSL, similarly to what we already do for LibreSSL on the server side.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 06 May 2024 00:01:46 +0300
parents 5c50786e5da9
children ab45ee8011df
comparison
equal deleted inserted replaced
1965:84f4d4930835 1966:c924ae8d7104
103 if $Net::SSLeay::VERSION < 1.88 && test_tls13(); 103 if $Net::SSLeay::VERSION < 1.88 && test_tls13();
104 local $TODO = 'no TLSv1.3 sessions, old IO::Socket::SSL' 104 local $TODO = 'no TLSv1.3 sessions, old IO::Socket::SSL'
105 if $IO::Socket::SSL::VERSION < 2.061 && test_tls13(); 105 if $IO::Socket::SSL::VERSION < 2.061 && test_tls13();
106 local $TODO = 'no TLSv1.3 sessions in LibreSSL' 106 local $TODO = 'no TLSv1.3 sessions in LibreSSL'
107 if $t->has_module('LibreSSL') && test_tls13(); 107 if $t->has_module('LibreSSL') && test_tls13();
108 local $TODO = 'no TLSv1.3 sessions in Net::SSLeay (LibreSSL)'
109 if Net::SSLeay::constant("LIBRESSL_VERSION_NUMBER") && test_tls13();
108 110
109 cmp_ok(get_ticket_key_name(), 'ne', $key, 'ticket key next'); 111 cmp_ok(get_ticket_key_name(), 'ne', $key, 'ticket key next');
110 112
111 ############################################################################### 113 ###############################################################################
112 114