30-test_evp_libctx.t 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #! /usr/bin/env perl
  2. # Copyright 2020-2021 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 strict;
  9. use warnings;
  10. use OpenSSL::Test qw(:DEFAULT bldtop_dir srctop_dir srctop_file bldtop_file);
  11. use OpenSSL::Test::Utils;
  12. BEGIN {
  13. setup("test_evp_libctx");
  14. }
  15. my $no_legacy = disabled('legacy') || ($ENV{NO_LEGACY} // 0);
  16. my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
  17. use lib srctop_dir('Configurations');
  18. use lib bldtop_dir('.');
  19. # If no fips then run the test with no extra arguments.
  20. my @test_args = ( );
  21. plan tests => ($no_fips ? 0 : 1) + ($no_legacy ? 0 : 1) + 1;
  22. unless ($no_fips) {
  23. @test_args = ("-config", srctop_file("test","fips-and-base.cnf"),
  24. "-provider", "fips");
  25. ok(run(test(["evp_libctx_test", @test_args])), "running fips evp_libctx_test");
  26. }
  27. ok(run(test(["evp_libctx_test",
  28. "-config", srctop_file("test","default.cnf"),])),
  29. "running default evp_libctx_test");
  30. unless ($no_legacy) {
  31. ok(run(test(["evp_libctx_test",
  32. "-config", srctop_file("test","default-and-legacy.cnf"),])),
  33. "running default-and-legacy evp_libctx_test");
  34. }