summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/ssl/extlookup.t
blob: d40e76e4d685d33c4e2bbc13e270430438b9539e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 $_");
}