wget/tests/Test-c-full.px

59 lines
1.4 KiB
Plaintext
Raw Normal View History

2008-11-12 16:54:49 -05:00
#!/usr/bin/perl
use strict;
2008-11-12 16:54:49 -05:00
use warnings;
use HTTPTest;
###############################################################################
2006-10-12 12:18:57 -04:00
my $wholefile = <<EOF;
11111111111111111111111111111111111111111111111111
222222222222222222222222222222222222222222222222222222222222
3333333333333333333333333333333333333333333333333333333333333333333333
444444444444444444444444444444444444444444444444444444444444
55555555555555555555555555555555555555555555555555
EOF
# code, msg, headers, content
my %urls = (
2006-10-12 12:18:57 -04:00
'/somefile.txt' => {
code => "200",
msg => "Dontcare",
headers => {
2006-10-12 12:18:57 -04:00
"Content-type" => "text/plain",
},
2006-10-12 12:18:57 -04:00
content => $wholefile,
},
);
2008-06-12 05:18:35 -04:00
my $cmdline = $WgetTest::WGETPATH . " -c http://localhost:{{port}}/somefile.txt";
my $expected_error_code = 0;
my %existing_files = (
2006-10-12 12:18:57 -04:00
'somefile.txt' => {
content => $wholefile,
},
);
my %expected_downloaded_files = (
2006-10-12 12:18:57 -04:00
'somefile.txt' => {
content => $wholefile,
},
);
###############################################################################
2006-10-12 12:18:57 -04:00
my $the_test = HTTPTest->new (name => "Test-c-full",
2009-09-21 23:39:44 -04: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