1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00
wget/tests/Test-N.px

49 lines
1.1 KiB
Plaintext
Raw Normal View History

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