summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/apache/cfg_getline.t
blob: 08f0231d420256b0f48b33bc342d385d92fc40dc (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestRequest;
use Apache::TestUtil qw(t_write_file);

use File::Spec;

# test ap_cfg_getline / ap_varbuf_cfg_getline

Apache::TestRequest::user_agent(keep_alive => 1);

my $dir_foo = Apache::Test::vars('serverroot') . '/htdocs/cfg_getline';

# XXX: htaccess is limited to 8190 chars, would need different test
# XXX: method to test longer lines
my @test_cases = (100, 196 .. 202, 396 .. 402 , 596 .. 602 , 1016 .. 1030,
                  8170 .. 8190);
plan tests => 2 * scalar(@test_cases), need need_lwp,
                                       need_module('mod_include'),
                                       need_module('mod_setenvif');

foreach my $len (@test_cases) {
    my $prefix = 'SetEnvIf User-Agent ^ testvar=';
    my $expect = 'a' x ($len - length($prefix));
    my $file = File::Spec->catfile(Apache::Test::vars('serverroot'), 'htdocs',
                                   'apache', 'cfg_getline', '.htaccess');
    t_write_file($file, "$prefix$expect\n");

    my $response = GET('/apache/cfg_getline/index.shtml');
    my $rc = $response->code;
    print "Got rc $rc for length $len\n";
    ok($rc == 200);

    my $got = $response->content;
    my $match;
    if ($got =~ /^'$expect'/) {
        $match = 1;
    }
    else {
        print "Got      $got\n",
              "expected '$expect'\n";
    }
    ok($match);
}