[doc] remove reference to Linux rt-signals
[lighttpd.git] / tests / mod-access.t
blobde4f22c103488b6991e87e349a20fb1e0d7db1be
1 #!/usr/bin/env perl
2 BEGIN {
3 # add current source dir to the include-path
4 # we need this for make distcheck
5 (my $srcdir = $0) =~ s,/[^/]+$,/,;
6 unshift @INC, $srcdir;
9 use strict;
10 use IO::Socket;
11 use Test::More tests => 6;
12 use LightyTest;
14 my $tf = LightyTest->new();
15 my $t;
17 ok($tf->start_proc == 0, "Starting lighttpd") or die();
19 $t->{REQUEST} = ( <<EOF
20 GET /index.html~ HTTP/1.0
21 EOF
23 $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
24 ok($tf->handle_http($t) == 0, 'forbid access to ...~');
26 $t->{REQUEST} = ( <<EOF
27 GET /index.html~/ HTTP/1.0
28 EOF
30 $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
31 ok($tf->handle_http($t) == 0, '#1230 - forbid access to ...~ - trailing slash');
33 $t->{REQUEST} = ( <<EOF
34 GET /ssi-include.txt HTTP/1.0
35 Host: allow.example.org
36 EOF
38 $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
39 ok($tf->handle_http($t) == 0, 'explicitly allowed');
41 $t->{REQUEST} = ( <<EOF
42 GET /cgi.pl HTTP/1.0
43 Host: allow.example.org
44 EOF
46 $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
47 ok($tf->handle_http($t) == 0, 'not explicitly allowed');
49 ok($tf->stop_proc == 0, "Stopping lighttpd");