blob: 0b3a1322f64a733d883da122ecadfdd6ec93c346 [file] [log] [blame]
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestRequest;
plan tests => 4, need 'HTML::HeadParser';
my $location = "/TestHooks__access";
ok ! GET_OK $location;
my $rc = GET_RC $location;
ok $rc == 403;
ok GET_OK $location, 'X-Forwarded-For' => '127.0.0.1';
ok ! GET_OK $location, 'X-Forwarded-For' => '666.0.0.1';