75-test_quicapi.t 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #! /usr/bin/env perl
  2. # Copyright 2022-2023 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. use OpenSSL::Test::Utils;
  9. use OpenSSL::Test qw/:DEFAULT srctop_file srctop_dir bldtop_dir/;
  10. BEGIN {
  11. setup("test_quicapi");
  12. }
  13. use lib srctop_dir('Configurations');
  14. use lib bldtop_dir('.');
  15. my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
  16. plan skip_all => "QUIC protocol is not supported by this OpenSSL build"
  17. if disabled('quic');
  18. plan skip_all => "These tests are not supported in a fuzz build"
  19. if config('options') =~ /-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION|enable-fuzz-afl/;
  20. plan tests =>
  21. ($no_fips ? 0 : 1) # quicapitest with fips
  22. + 1; # quicapitest with default provider
  23. ok(run(test(["quicapitest", "default",
  24. srctop_file("test", "default.cnf"),
  25. srctop_dir("test", "certs"),
  26. srctop_dir("test", "recipes", "75-test_quicapi_data")])),
  27. "running quicapitest");
  28. unless ($no_fips) {
  29. ok(run(test(["quicapitest", "fips",
  30. srctop_file("test", "fips-and-base.cnf"),
  31. srctop_dir("test", "certs"),
  32. srctop_dir("test", "recipes", "75-test_quicapi_data")])),
  33. "running quicapitest");
  34. }