diff options
Diffstat (limited to 'tests/Test-auth-no-challenge.px')
-rwxr-xr-x | tests/Test-auth-no-challenge.px | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/tests/Test-auth-no-challenge.px b/tests/Test-auth-no-challenge.px deleted file mode 100755 index 0794ece..0000000 --- a/tests/Test-auth-no-challenge.px +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; - -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" - . " --user=fiddle-dee-dee --password=Dodgson" - . " http://localhost:{{port}}/needs-auth.txt"; - -my $expected_error_code = 0; - -my %expected_downloaded_files = ( - 'needs-auth.txt' => { - content => $wholefile, - }, -); - -############################################################################### - -my $the_test = HTTPTest->new (input => \%urls, - cmdline => $cmdline, - errcode => $expected_error_code, - output => \%expected_downloaded_files); -exit $the_test->run(); - -# vim: et ts=4 sw=4 |