summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/recipes/79-test_http.t (renamed from test/recipes/80-test_http.t)11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/recipes/80-test_http.t b/test/recipes/79-test_http.t
index 2297c5a537..b5bb74393a 100644
--- a/test/recipes/80-test_http.t
+++ b/test/recipes/79-test_http.t
@@ -12,10 +12,15 @@ use OpenSSL::Test::Utils;
setup("test_http");
-plan tests => 1;
+plan tests => 2;
SKIP: {
skip "sockets disabled", 1 if disabled("sock");
- ok(run(test(["http_test",
- srctop_file("test", "certs", "ca-cert.pem")])));
+ skip "OCSP disabled", 1 if disabled("ocsp");
+ my $cmd = [qw{openssl ocsp -index any -port 0}];
+ my @output = run(app($cmd), capture => 1);
+ ok($output[0] =~ /^ACCEPT (0.0.0.0|\[::\]):(\d+?)$/ && $2 >= 1024,
+ "HTTP server auto-selects and reports local port >= 1024");
}
+
+ok(run(test(["http_test", srctop_file("test", "certs", "ca-cert.pem")])));