2006-06-13 09:58:33 -04:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use HTTPTest;
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
my $mainpage = <<EOF;
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Some Page Title</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>
|
|
|
|
Some text...
|
|
|
|
</p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# code, msg, headers, content
|
|
|
|
my %urls = (
|
|
|
|
'/SomePage.html' => {
|
|
|
|
code => "200",
|
|
|
|
msg => "Dontcare",
|
|
|
|
headers => {
|
|
|
|
"Content-type" => "text/html",
|
|
|
|
},
|
|
|
|
content => $mainpage,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2007-07-12 02:10:48 -04:00
|
|
|
my $cmdline = $WgetTest::WGETPATH . " --restrict-file-names=uppercase http://localhost:8080/SomePage.html";
|
2006-06-13 09:58:33 -04:00
|
|
|
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
|
|
|
|
my %expected_downloaded_files = (
|
|
|
|
'SOMEPAGE.HTML' => {
|
|
|
|
content => $mainpage,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2006-12-27 04:00:12 -05:00
|
|
|
my $the_test = HTTPTest->new (name => "Test-Restrict-Uppercase",
|
2006-06-13 09:58:33 -04:00
|
|
|
input => \%urls,
|
|
|
|
cmdline => $cmdline,
|
|
|
|
errcode => $expected_error_code,
|
|
|
|
output => \%expected_downloaded_files);
|
2007-07-12 02:10:48 -04:00
|
|
|
exit $the_test->run();
|
2006-06-13 09:58:33 -04:00
|
|
|
|
|
|
|
# vim: et ts=4 sw=4
|
|
|
|
|