comparison ssl_sni_sessions.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 a797d7428fa5
children 6d3a8f4eb9b2
comparison
equal deleted inserted replaced
1965:84f4d4930835 1966:c924ae8d7104
114 if $Net::SSLeay::VERSION < 1.88 && test_tls13(); 114 if $Net::SSLeay::VERSION < 1.88 && test_tls13();
115 plan(skip_all => 'no TLSv1.3 sessions, old IO::Socket::SSL') 115 plan(skip_all => 'no TLSv1.3 sessions, old IO::Socket::SSL')
116 if $IO::Socket::SSL::VERSION < 2.061 && test_tls13(); 116 if $IO::Socket::SSL::VERSION < 2.061 && test_tls13();
117 plan(skip_all => 'no TLSv1.3 sessions in LibreSSL') 117 plan(skip_all => 'no TLSv1.3 sessions in LibreSSL')
118 if $t->has_module('LibreSSL') && test_tls13(); 118 if $t->has_module('LibreSSL') && test_tls13();
119 plan(skip_all => 'no TLSv1.3 sessions in Net::SSLeay (LibreSSL)')
120 if Net::SSLeay::constant("LIBRESSL_VERSION_NUMBER") && test_tls13();
119 plan(skip_all => 'no TLS 1.3 session cache in BoringSSL') 121 plan(skip_all => 'no TLS 1.3 session cache in BoringSSL')
120 if $t->has_module('BoringSSL') && test_tls13(); 122 if $t->has_module('BoringSSL') && test_tls13();
121 123
122 $t->plan(6); 124 $t->plan(6);
123 125