2008-11-12 16:54:49 -05:00
|
|
|
#!/usr/bin/perl
|
2008-11-11 15:53:01 -05:00
|
|
|
|
|
|
|
use strict;
|
2008-11-12 16:54:49 -05:00
|
|
|
use warnings;
|
2008-11-11 15:53:01 -05:00
|
|
|
|
|
|
|
use HTTPTest;
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
my $wholefile = "You're all authenticated.\n";
|
|
|
|
|
|
|
|
# code, msg, headers, content
|
|
|
|
my %urls = (
|
|
|
|
'/needs-auth.txt' => {
|
|
|
|
auth_no_challenge => 1,
|
|
|
|
auth_method => 'Basic',
|
|
|
|
user => 'fiddle-dee-dee',
|
|
|
|
passwd => 'Dodgson',
|
|
|
|
code => "200",
|
|
|
|
msg => "You want fries with that?",
|
|
|
|
headers => {
|
|
|
|
"Content-type" => "text/plain",
|
|
|
|
},
|
|
|
|
content => $wholefile,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
my $cmdline = $WgetTest::WGETPATH . " --auth-no-challenge "
|
|
|
|
. "http://fiddle-dee-dee:Dodgson\@localhost:{{port}}/needs-auth.txt";
|
|
|
|
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
|
|
|
|
my %expected_downloaded_files = (
|
|
|
|
'needs-auth.txt' => {
|
|
|
|
content => $wholefile,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
my $the_test = HTTPTest->new (name => "Test-auth-no-challenge-url",
|
2009-09-21 23:39:44 -04:00
|
|
|
input => \%urls,
|
|
|
|
cmdline => $cmdline,
|
|
|
|
errcode => $expected_error_code,
|
2008-11-11 15:53:01 -05:00
|
|
|
output => \%expected_downloaded_files);
|
|
|
|
exit $the_test->run();
|
|
|
|
|
|
|
|
# vim: et ts=4 sw=4
|
|
|
|
|