openssl/test/recipes/70-test_quic_multistream.t
Richard Levitte b646179229 Copyright year updates
Reviewed-by: Neil Horman <nhorman@openssl.org>
Release: yes
(cherry picked from commit 0ce7d1f355)

Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24034)
2024-04-09 13:43:26 +02:00

47 lines
1.4 KiB
Raku

#! /usr/bin/env perl
# Copyright 2022-2024 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the Apache License 2.0 (the "License"). You may not use
# this file except in compliance with the License. You can obtain a copy
# in the file LICENSE in the source distribution or at
# https://www.openssl.org/source/license.html
use OpenSSL::Test qw/:DEFAULT srctop_file result_dir data_file/;
use OpenSSL::Test::Utils;
use File::Temp qw(tempfile);
use File::Path 2.00 qw(rmtree mkpath);
setup("test_quic_multistream");
plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
if disabled('quic');
plan tests => 2;
my $qlog_output;
if (!disabled('qlog')) {
$qlog_output = result_dir("qlog-output");
print "# Writing qlog output to $qlog_output\n";
rmtree($qlog_output, { safe => 1 });
mkdir($qlog_output);
$ENV{QLOGDIR} = $qlog_output;
}
$ENV{OSSL_QFILTER} = "* -quic:unknown_event quic:another_unknown_event";
ok(run(test(["quic_multistream_test",
srctop_file("test", "certs", "servercert.pem"),
srctop_file("test", "certs", "serverkey.pem")])));
SKIP: {
skip "no qlog", 1 if disabled('qlog');
skip "not running CI tests", 1 unless $ENV{OSSL_RUN_CI_TESTS};
subtest "check qlog output" => sub {
plan tests => 1;
ok(run(cmd(["python3", data_file("verify-qlog.py")])),
"running qlog verification script");
};
}