[nginx-tests] Tests: CA list handling with Net::SSLeay with Libr...

Maxim Dounin mdounin at mdounin.ru
Sun May 5 21:02:55 UTC 2024


details:   http://freenginx.org/hg/nginx-tests/rev/b72a8c4a1bef
branches:  
changeset: 1968:b72a8c4a1bef
user:      Maxim Dounin <mdounin at mdounin.ru>
date:      Mon May 06 00:02:01 2024 +0300
description:
Tests: CA list handling with Net::SSLeay with LibreSSL.

LibreSSL is not able to work with CA lists (certificate_authorities extension)
when using TLSv1.3.  As such, relevant tests fail 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 TLSv1.3 CA list issues in
LibreSSL on the server side.

diffstat:

 ssl_verify_client.t        |  2 ++
 stream_ssl_verify_client.t |  2 ++
 2 files changed, 4 insertions(+), 0 deletions(-)

diffs (24 lines):

diff --git a/ssl_verify_client.t b/ssl_verify_client.t
--- a/ssl_verify_client.t
+++ b/ssl_verify_client.t
@@ -158,6 +158,8 @@ skip 'Net::SSLeay version >= 1.36 requir
 TODO: {
 local $TODO = 'broken TLSv1.3 CA list in LibreSSL'
 	if $t->has_module('LibreSSL') && test_tls13();
+local $TODO = 'no TLSv1.3 CA list in Net::SSLeay (LibreSSL)'
+	if Net::SSLeay::constant("LIBRESSL_VERSION_NUMBER") && test_tls13();
 
 my $ca = join ' ', get('optional', '3.example.com');
 is($ca, '/CN=2.example.com', 'no trusted sent');
diff --git a/stream_ssl_verify_client.t b/stream_ssl_verify_client.t
--- a/stream_ssl_verify_client.t
+++ b/stream_ssl_verify_client.t
@@ -126,6 +126,8 @@ skip 'Net::SSLeay version >= 1.36 requir
 TODO: {
 local $TODO = 'broken TLSv1.3 CA list in LibreSSL'
 	if $t->has_module('LibreSSL') && test_tls13();
+local $TODO = 'no TLSv1.3 CA list in Net::SSLeay (LibreSSL)'
+	if Net::SSLeay::constant("LIBRESSL_VERSION_NUMBER") && test_tls13();
 
 my $ca = join ' ', get(8082, '3.example.com');
 is($ca, '/CN=2.example.com', 'no trusted sent');



More information about the nginx-devel mailing list