79-test_http.t 951 B

12345678910111213141516171819202122232425262728
  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 OpenSSL::Test qw/:DEFAULT srctop_file/;
  9. use OpenSSL::Test::Utils;
  10. setup("test_http");
  11. plan tests => 2;
  12. SKIP: {
  13. skip "sockets disabled", 1 if disabled("sock");
  14. skip "OCSP disabled", 1 if disabled("ocsp");
  15. my $cmd = [qw{openssl ocsp -index any -port 0}];
  16. my @output = run(app($cmd), capture => 1);
  17. $output[0] =~ s/\r\n/\n/g;
  18. ok($output[0] =~ /^ACCEPT (0.0.0.0|\[::\]):(\d+?) PID=(\d+)$/
  19. && $2 >= 1024 && $3 > 0,
  20. "HTTP server auto-selects and reports local port >= 1024 and pid > 0");
  21. }
  22. ok(run(test(["http_test", srctop_file("test", "certs", "ca-cert.pem")])));