comparison quic_ciphers.t @ 1919:161dc73812b3

Tests: keep QUIC TODOs for a while. To pass tests on the latest development release.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 10 Jul 2023 18:30:08 +0400
parents 6ab08c255dd3
children
comparison
equal deleted inserted replaced
1918:22f45bf99a9e 1919:161dc73812b3
87 is(get("\x13\x02\x13\x01"), 'TLS_AES_256_GCM_SHA384', 'ciphers many'); 87 is(get("\x13\x02\x13\x01"), 'TLS_AES_256_GCM_SHA384', 'ciphers many');
88 88
89 # prefer TLS_AES_128_CCM_SHA256 with fallback to GCM, 89 # prefer TLS_AES_128_CCM_SHA256 with fallback to GCM,
90 # the cipher is enabled by default in some distributions 90 # the cipher is enabled by default in some distributions
91 91
92 TODO: {
93 todo_skip 'not yet', 1 unless $t->has_version('1.25.2');
94
92 like(get("\x13\x04\x13\x01"), qr/TLS_AES_128_[GC]CM_SHA256/, 95 like(get("\x13\x04\x13\x01"), qr/TLS_AES_128_[GC]CM_SHA256/,
93 'TLS_AES_128_CCM_SHA256'); 96 'TLS_AES_128_CCM_SHA256');
97
98 }
94 99
95 ############################################################################### 100 ###############################################################################
96 101
97 sub get { 102 sub get {
98 my ($ciphers) = @_; 103 my ($ciphers) = @_;