1
0
Fork 0
apache2/debian/perl-framework/t/ssl/extlookup.t
Daniel Baumann f56986e2d9
Adding debian version 2.4.63-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 11:01:27 +02:00

32 lines
677 B
Perl

use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil;
Apache::TestRequest::scheme("https");
my %exts = (
"2.16.840.1.113730.1.13" => "This Is A Comment"
);
if (have_min_apache_version("2.4.0")) {
$exts{"1.3.6.1.4.1.18060.12.0"} = "Lemons",
}
plan tests => 2 * (keys %exts), need 'test_ssl', need_min_apache_version(2.1);
my ($actual, $expected, $r, $c);
foreach (sort keys %exts) {
$r = GET("/test_ssl_ext_lookup?$_", cert => 'client_ok');
ok t_cmp($r->code, 200, "ssl_ext_lookup works for $_");
$c = $r->content;
chomp $c;
ok t_cmp($c, $exts{$_}, "Extension value match for $_");
}