2006-04-28 09:20:51 -04:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use HTTPTest;
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2006-10-12 12:18:57 -04:00
|
|
|
my $partiallydownloaded = <<EOF;
|
|
|
|
11111111111111111111111111111111111111111111111111
|
|
|
|
222222222222222222222222222222222222222222222222222222222222
|
2006-04-28 09:20:51 -04:00
|
|
|
EOF
|
|
|
|
|
2006-10-12 12:18:57 -04:00
|
|
|
my $wholefile = <<EOF;
|
|
|
|
11111111111111111111111111111111111111111111111111
|
|
|
|
222222222222222222222222222222222222222222222222222222222222
|
|
|
|
3333333333333333333333333333333333333333333333333333333333333333333333
|
|
|
|
444444444444444444444444444444444444444444444444444444444444
|
|
|
|
55555555555555555555555555555555555555555555555555
|
2006-04-28 09:20:51 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
# code, msg, headers, content
|
|
|
|
my %urls = (
|
2006-10-12 12:18:57 -04:00
|
|
|
'/somefile.txt' => {
|
2006-04-28 09:20:51 -04:00
|
|
|
code => "200",
|
|
|
|
msg => "Dontcare",
|
|
|
|
headers => {
|
2006-10-12 12:18:57 -04:00
|
|
|
"Content-type" => "text/plain",
|
2006-04-28 09:20:51 -04:00
|
|
|
},
|
2006-10-12 12:18:57 -04:00
|
|
|
content => $wholefile,
|
2006-04-28 09:20:51 -04:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2006-10-12 12:18:57 -04:00
|
|
|
my $cmdline = "wget -c http://localhost:8080/somefile.txt";
|
2006-04-28 09:20:51 -04:00
|
|
|
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
|
|
|
|
my %existing_files = (
|
2006-10-12 12:18:57 -04:00
|
|
|
'somefile.txt' => {
|
|
|
|
content => $partiallydownloaded,
|
2006-04-28 09:20:51 -04:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
my %expected_downloaded_files = (
|
2006-10-12 12:18:57 -04:00
|
|
|
'somefile.txt' => {
|
|
|
|
content => $wholefile,
|
2006-04-28 09:20:51 -04:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2006-10-12 12:18:57 -04:00
|
|
|
my $the_test = HTTPTest->new (name => "Test-c-partial",
|
2006-04-28 09:20:51 -04:00
|
|
|
input => \%urls,
|
|
|
|
cmdline => $cmdline,
|
|
|
|
errcode => $expected_error_code,
|
|
|
|
existing => \%existing_files,
|
|
|
|
output => \%expected_downloaded_files);
|
|
|
|
$the_test->run();
|
|
|
|
|
|
|
|
# vim: et ts=4 sw=4
|
|
|
|
|