wget/tests/Test--spider.px

54 lines
1.0 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;
###############################################################################
my $mainpage = <<EOF;
<html>
<head>
2006-10-12 12:18:57 -04:00
<title>Main Page</title>
</head>
<body>
<p>
2006-10-12 12:18:57 -04:00
Some text.
</p>
</body>
</html>
EOF
# code, msg, headers, content
my %urls = (
2006-10-12 12:18:57 -04:00
'/index.html' => {
code => "200",
msg => "Dontcare",
headers => {
"Content-type" => "text/html",
},
content => $mainpage,
},
);
2008-06-12 05:18:35 -04:00
my $cmdline = $WgetTest::WGETPATH . " --spider http://localhost:{{port}}/index.html";
2008-05-23 03:00:55 -04:00
my $expected_error_code = 0;
my %expected_downloaded_files = (
);
###############################################################################
2006-10-12 12:18:57 -04:00
my $the_test = HTTPTest->new (name => "Test--spider",
2009-09-21 23:39:44 -04:00
input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4