wget/tests/Test-N.px

48 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env perl
2005-11-02 22:27:23 +08:00
use strict;
2008-11-13 05:54:49 +08:00
use warnings;
2005-11-02 22:27:23 +08:00
use HTTPTest;
2005-11-02 22:27:23 +08:00
###############################################################################
my $dummyfile = <<EOF;
Content
EOF
# code, msg, headers, content
my %urls = (
2006-10-13 00:18:57 +08:00
'/dummy.txt' => {
2005-11-02 22:27:23 +08:00
code => "200",
msg => "Dontcare",
headers => {
2006-10-13 00:18:57 +08:00
"Content-type" => "text/plain",
"Last-Modified" => "Sat, 09 Oct 2004 08:30:00 GMT",
2005-11-02 22:27:23 +08:00
},
content => $dummyfile
},
);
2008-06-12 17:18:35 +08:00
my $cmdline = $WgetTest::WGETPATH . " -N http://localhost:{{port}}/dummy.txt";
2005-11-02 22:27:23 +08:00
my $expected_error_code = 0;
my %expected_downloaded_files = (
2006-10-13 00:18:57 +08:00
'dummy.txt' => {
content => $dummyfile,
timestamp => 1097310600, # "Sat, 09 Oct 2004 08:30:00 GMT"
}
2005-11-02 22:27:23 +08:00
);
###############################################################################
2014-10-02 17:26:59 +08:00
my $the_test = HTTPTest->new (input => \%urls,
2009-09-22 11:39:44 +08:00
cmdline => $cmdline,
errcode => $expected_error_code,
output => \%expected_downloaded_files);
exit $the_test->run();
2005-11-02 22:27:23 +08:00
# vim: et ts=4 sw=4