mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Test for -O, -nc.
This commit is contained in:
parent
1515ea0dea
commit
72687f78cb
46
tests/Test-O-nc.px
Executable file
46
tests/Test-O-nc.px
Executable file
@ -0,0 +1,46 @@
|
|||||||
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
use HTTPTest;
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
my $dummyfile = <<EOF;
|
||||||
|
Don't care.
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# code, msg, headers, content
|
||||||
|
my %urls = (
|
||||||
|
'/dummy.txt' => {
|
||||||
|
code => "200",
|
||||||
|
msg => "Dontcare",
|
||||||
|
headers => {
|
||||||
|
"Content-type" => "text/plain",
|
||||||
|
},
|
||||||
|
content => $dummyfile
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
my $cmdline = $WgetTest::WGETPATH . " -nc -O out http://localhost:{{port}}/dummy.txt";
|
||||||
|
|
||||||
|
my $expected_error_code = 0;
|
||||||
|
|
||||||
|
my %expected_downloaded_files = (
|
||||||
|
'out' => {
|
||||||
|
content => $dummyfile,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
my $the_test = HTTPTest->new (name => "Test-O-nc",
|
||||||
|
input => \%urls,
|
||||||
|
cmdline => $cmdline,
|
||||||
|
errcode => $expected_error_code,
|
||||||
|
output => \%expected_downloaded_files);
|
||||||
|
exit $the_test->run();
|
||||||
|
|
||||||
|
# vim: et ts=4 sw=4
|
||||||
|
|
@ -36,6 +36,7 @@ my @tests = (
|
|||||||
'Test-O--no-content-disposition-trivial.px',
|
'Test-O--no-content-disposition-trivial.px',
|
||||||
'Test-O-nonexisting.px',
|
'Test-O-nonexisting.px',
|
||||||
'Test-O.px',
|
'Test-O.px',
|
||||||
|
'Test-O-nc.px',
|
||||||
'Test-Restrict-Lowercase.px',
|
'Test-Restrict-Lowercase.px',
|
||||||
'Test-Restrict-Uppercase.px',
|
'Test-Restrict-Uppercase.px',
|
||||||
'Test--spider-fail.px',
|
'Test--spider-fail.px',
|
||||||
|
Loading…
Reference in New Issue
Block a user