wget/tests/Test-c-partial.px

68 lines
1.7 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env perl
use strict;
2008-11-13 05:54:49 +08:00
use warnings;
use HTTPTest;
###############################################################################
2006-10-13 00:18:57 +08:00
my $partiallydownloaded = <<EOF;
11111111111111111111111111111111111111111111111111
2008-06-01 09:17:45 +08:00
22222222x222222222222222222222222222222222222222222222222222
EOF
2008-06-01 09:17:45 +08:00
my $rest = <<EOF;
2006-10-13 00:18:57 +08:00
3333333333333333333333333333333333333333333333333333333333333333333333
444444444444444444444444444444444444444444444444444444444444
55555555555555555555555555555555555555555555555555
EOF
2008-06-01 09:17:45 +08:00
my $wholefile = <<EOF . $rest;
11111111111111111111111111111111111111111111111111
222222222222222222222222222222222222222222222222222222222222
EOF
my $downloadedfile = $partiallydownloaded . $rest;
# code, msg, headers, content
my %urls = (
2006-10-13 00:18:57 +08:00
'/somefile.txt' => {
code => "200",
msg => "Dontcare",
headers => {
2006-10-13 00:18:57 +08:00
"Content-type" => "text/plain",
},
2006-10-13 00:18:57 +08:00
content => $wholefile,
},
);
2008-06-12 17:18:35 +08:00
my $cmdline = $WgetTest::WGETPATH . " -c http://localhost:{{port}}/somefile.txt";
my $expected_error_code = 0;
my %existing_files = (
2006-10-13 00:18:57 +08:00
'somefile.txt' => {
content => $partiallydownloaded,
},
);
my %expected_downloaded_files = (
2006-10-13 00:18:57 +08:00
'somefile.txt' => {
2008-06-01 09:17:45 +08:00
content => $downloadedfile,
},
);
###############################################################################
2006-10-13 00:18:57 +08:00
my $the_test = HTTPTest->new (name => "Test-c-partial",
2009-09-22 11:39:44 +08:00
input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
existing => \%existing_files,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4