Annotation of embedaddon/lighttpd/tests/mod-access.t, revision 1.1.1.1
1.1 misho 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;
7: }
8:
9: use strict;
10: use IO::Socket;
11: use Test::More tests => 4;
12: use LightyTest;
13:
14: my $tf = LightyTest->new();
15: my $t;
16:
17: ok($tf->start_proc == 0, "Starting lighttpd") or die();
18:
19: $t->{REQUEST} = ( <<EOF
20: GET /index.html~ HTTP/1.0
21: EOF
22: );
23: $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
24: ok($tf->handle_http($t) == 0, 'forbid access to ...~');
25:
26: $t->{REQUEST} = ( <<EOF
27: GET /index.html~/ HTTP/1.0
28: EOF
29: );
30: $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
31: ok($tf->handle_http($t) == 0, '#1230 - forbid access to ...~ - trailing slash');
32:
33: ok($tf->stop_proc == 0, "Stopping lighttpd");
34:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>