wget/tests/Test--spider-fail.px

52 lines
1016 B
Plaintext
Raw Normal View History

#!/usr/bin/env perl
use strict;
2008-11-13 05:54:49 +08:00
use warnings;
use HTTPTest;
###############################################################################
my $mainpage = <<EOF;
<html>
<head>
2006-10-13 00:18:57 +08:00
<title>Main Page</title>
</head>
<body>
<p>
2006-10-13 00:18:57 +08:00
Some text.
</p>
</body>
</html>
EOF
# code, msg, headers, content
my %urls = (
2006-10-13 00:18:57 +08:00
'/index.html' => {
code => "200",
msg => "Dontcare",
headers => {
"Content-type" => "text/html",
},
content => $mainpage,
},
);
2008-06-12 17:18:35 +08:00
my $cmdline = $WgetTest::WGETPATH . " --spider http://localhost:{{port}}/nonexistent";
2009-08-28 14:08:58 +08:00
my $expected_error_code = 8;
my %expected_downloaded_files = (
);
###############################################################################
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();
# vim: et ts=4 sw=4