added tests for mod-secdownload
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@623 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.2
parent
79d3bc4491
commit
9359e21514
@ -0,0 +1,63 @@
|
||||
#! /usr/bin/perl -w
|
||||
BEGIN {
|
||||
# add current source dir to the include-path
|
||||
# we need this for make distcheck
|
||||
(my $srcdir = $0) =~ s#/[^/]+$#/#;
|
||||
unshift @INC, $srcdir;
|
||||
}
|
||||
|
||||
use strict;
|
||||
use IO::Socket;
|
||||
use Test::More tests => 3;
|
||||
use LightyTest;
|
||||
use Digest::MD5 qw(md5_hex);
|
||||
|
||||
my $tf = LightyTest->new();
|
||||
my $t;
|
||||
|
||||
ok($tf->start_proc == 0, "Starting lighttpd") or die();
|
||||
|
||||
my $secret = "verysecret";
|
||||
my $f = "/index.html";
|
||||
my $thex = sprintf("%08x", time);
|
||||
my $m = md5_hex($secret.$f.$thex);
|
||||
|
||||
# mod-cgi
|
||||
#
|
||||
$t->{REQUEST} = ( <<EOF
|
||||
GET /sec/$m/$thex$f HTTP/1.0
|
||||
EOF
|
||||
);
|
||||
$t->{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } );
|
||||
|
||||
ok($tf->handle_http($t) == 0, 'secdownload');
|
||||
|
||||
$thex = sprintf("%08x", time - 1800);
|
||||
$m = md5_hex($secret.$f.$thex);
|
||||
|
||||
# mod-cgi
|
||||
#
|
||||
$t->{REQUEST} = ( <<EOF
|
||||
GET /sec/$m/$thex$f HTTP/1.0
|
||||
EOF
|
||||
);
|
||||
$t->{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 408 } );
|
||||
|
||||
ok($tf->handle_http($t) == 0, 'secdownload - timeout');
|
||||
|
||||
$f = "/noexists";
|
||||
$thex = sprintf("%08x", time);
|
||||
$m = md5_hex($secret.$f.$thex);
|
||||
|
||||
# mod-cgi
|
||||
#
|
||||
$t->{REQUEST} = ( <<EOF
|
||||
GET /sec/$m/$thex$f HTTP/1.0
|
||||
EOF
|
||||
);
|
||||
$t->{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } );
|
||||
|
||||
ok($tf->handle_http($t) == 0, 'secdownload - timeout');
|
||||
|
||||
ok($tf->stop_proc == 0, "Stopping lighttpd");
|
||||
|
Loading…
Reference in New Issue