90-test_threads.t 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #! /usr/bin/env perl
  2. # Copyright 2015-2022 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::Simple;
  9. use OpenSSL::Test qw/:DEFAULT srctop_file srctop_dir bldtop_dir bldtop_file data_dir/;
  10. use OpenSSL::Test::Utils;
  11. use Cwd qw(abs_path);
  12. BEGIN {
  13. setup("test_threads");
  14. }
  15. use lib srctop_dir('Configurations');
  16. use lib bldtop_dir('.');
  17. my $no_fips = disabled('fips') || ($ENV{NO_FIPS} // 0);
  18. my $config_path = abs_path(srctop_file("test", $no_fips ? "default.cnf"
  19. : "default-and-fips.cnf"));
  20. plan tests => 3;
  21. if ($no_fips) {
  22. ok(run(test(["threadstest", "-config", $config_path, data_dir()])),
  23. "running test_threads");
  24. } else {
  25. ok(run(test(["threadstest", "-fips", "-config", $config_path, data_dir()])),
  26. "running test_threads with FIPS");
  27. }
  28. ok(run(test(["threadpool_test"])), "running threadpool_test");
  29. # Merge the configuration files into one filtering the contents so the failure
  30. # condition is reproducible. A working FIPS configuration without the install
  31. # status is required.
  32. open CFGBASE, '<', $config_path;
  33. open CFGINC, '<', bldtop_file('/test/fipsmodule.cnf');
  34. open CFGOUT, '>', 'thread.cnf';
  35. while (<CFGBASE>) {
  36. print CFGOUT unless m/^[.]include/;
  37. }
  38. close CFGBASE;
  39. print CFGOUT "\n\n";
  40. while (<CFGINC>) {
  41. print CFGOUT unless m/^install-status/;
  42. }
  43. close CFGINC;
  44. close CFGOUT;
  45. $ENV{OPENSSL_CONF} = 'thread.cnf';
  46. ok(run(test(["threadstest_fips"])), "running threadstest_fips");