[nginx-tests] Tests: fixed LibreSSL TODOs in h3_ssl_early_data.t.

Maxim Dounin mdounin at mdounin.ru
Mon Mar 24 00:52:22 UTC 2025


details:   http://freenginx.org/hg/nginx-tests/rev/a84cf984d25e
branches:  
changeset: 2004:a84cf984d25e
user:      Maxim Dounin <mdounin at mdounin.ru>
date:      Sat Mar 08 04:44:20 2025 +0300
description:
Tests: fixed LibreSSL TODOs in h3_ssl_early_data.t.

Previously, the last test wasn't properly excluded from the TODO scope
and was reported as an unexpected success.

diffstat:

 h3_ssl_early_data.t |  11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (36 lines):

diff --git a/h3_ssl_early_data.t b/h3_ssl_early_data.t
--- a/h3_ssl_early_data.t
+++ b/h3_ssl_early_data.t
@@ -80,13 +80,13 @@ my $frames = $s->read(all => [{ sid => $
 my ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
 is($frame->{headers}->{'x-session'}, '.', 'new session');
 
-local $TODO = 'no TLSv1.3 sessions in LibreSSL' if $t->has_module('LibreSSL');
-
 my $psk_list = $s->{psk_list};
 
 $s = Test::Nginx::HTTP3->new(8980, psk_list => $psk_list, early_data => {});
 
 TODO: {
+local $TODO = 'no TLSv1.3 sessions in LibreSSL'
+	if $t->has_module('LibreSSL');
 local $TODO = 'no 0-RTT in OpenSSL compat layer'
 	unless $t->has_module('OpenSSL [.0-9]+\+quic')
 	or $t->has_module('BoringSSL')
@@ -99,9 +99,16 @@ is($frame->{headers}->{'x-early'}, '1', 
 
 }
 
+TODO: {
+local $TODO = 'no TLSv1.3 sessions in LibreSSL'
+	if $t->has_module('LibreSSL');
+
 $frames = $s->read(all => [{ sid => $s->new_stream(), fin => 1 }]);
 ($frame) = grep { $_->{type} eq "HEADERS" } @$frames;
 is($frame->{headers}->{'x-session'}, 'r', 'reused session 1rtt');
+
+}
+
 is($frame->{headers}->{'x-early'}, undef, 'reused session not early');
 
 ###############################################################################


More information about the nginx-devel mailing list