mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Test for Content-Disposition in HTTP auth.
This commit is contained in:
parent
aab7dadc9a
commit
f3203b8626
@ -1,5 +1,10 @@
|
|||||||
2009-09-07 Micah Cowan <micah@cowan.name>
|
2009-09-07 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* Test-auth-with-content-disposition.px: New. Test Content-Disposition
|
||||||
|
support when HTTP authentication is required.
|
||||||
|
* run-px, Makefile.am (EXTRA_DIST): Added
|
||||||
|
Test-auth-with-content-disposition.px.
|
||||||
|
|
||||||
* FTPServer.pm (FTPServer::run): Pass "server behavior" information to
|
* FTPServer.pm (FTPServer::run): Pass "server behavior" information to
|
||||||
newly-constructed FTPPaths object.
|
newly-constructed FTPPaths object.
|
||||||
(FTPPaths::initialize): Accept "server behavior" hash.
|
(FTPPaths::initialize): Accept "server behavior" hash.
|
||||||
|
@ -64,6 +64,7 @@ EXTRA_DIST = FTPServer.pm FTPTest.pm HTTPServer.pm HTTPTest.pm \
|
|||||||
Test-auth-basic.px \
|
Test-auth-basic.px \
|
||||||
Test-auth-no-challenge.px \
|
Test-auth-no-challenge.px \
|
||||||
Test-auth-no-challenge-url.px \
|
Test-auth-no-challenge-url.px \
|
||||||
|
Test-auth-with-content-disposition.px \
|
||||||
Test-c-full.px \
|
Test-c-full.px \
|
||||||
Test-c-partial.px \
|
Test-c-partial.px \
|
||||||
Test-c.px \
|
Test-c.px \
|
||||||
@ -73,8 +74,8 @@ EXTRA_DIST = FTPServer.pm FTPTest.pm HTTPServer.pm HTTPTest.pm \
|
|||||||
Test-E-k-K.px \
|
Test-E-k-K.px \
|
||||||
Test-E-k.px \
|
Test-E-k.px \
|
||||||
Test-ftp.px \
|
Test-ftp.px \
|
||||||
Test-ftp-pasv-fail.px \
|
Test-ftp-pasv-fail.px \
|
||||||
Test-ftp-bad-list.px \
|
Test-ftp-bad-list.px \
|
||||||
Test-ftp-recursive.px \
|
Test-ftp-recursive.px \
|
||||||
Test-ftp-iri.px \
|
Test-ftp-iri.px \
|
||||||
Test-ftp-iri-fallback.px \
|
Test-ftp-iri-fallback.px \
|
||||||
|
50
tests/Test-auth-with-content-disposition.px
Executable file
50
tests/Test-auth-with-content-disposition.px
Executable file
@ -0,0 +1,50 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use HTTPTest;
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
my $wholefile = "You're all authenticated.\n";
|
||||||
|
|
||||||
|
# code, msg, headers, content
|
||||||
|
my %urls = (
|
||||||
|
'/needs-auth.txt' => {
|
||||||
|
auth_method => 'Basic',
|
||||||
|
user => 'fiddle-dee-dee',
|
||||||
|
passwd => 'Dodgson',
|
||||||
|
code => "200",
|
||||||
|
msg => "You want fries with that?",
|
||||||
|
headers => {
|
||||||
|
"Content-type" => "text/plain",
|
||||||
|
"Content-Disposition" => "attachment; filename=\"Flubber\"",
|
||||||
|
},
|
||||||
|
content => $wholefile,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
my $cmdline = $WgetTest::WGETPATH . " --user=fiddle-dee-dee --password=Dodgson"
|
||||||
|
. " --content-disposition http://localhost:{{port}}/needs-auth.txt";
|
||||||
|
|
||||||
|
my $expected_error_code = 0;
|
||||||
|
|
||||||
|
my %expected_downloaded_files = (
|
||||||
|
'Flubber' => {
|
||||||
|
content => $wholefile,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
my $the_test = HTTPTest->new (name => "Test-auth-with-content-disposition",
|
||||||
|
input => \%urls,
|
||||||
|
cmdline => $cmdline,
|
||||||
|
errcode => $expected_error_code,
|
||||||
|
output => \%expected_downloaded_files);
|
||||||
|
exit $the_test->run();
|
||||||
|
|
||||||
|
# vim: et ts=4 sw=4
|
||||||
|
|
@ -13,6 +13,7 @@ my @tests = (
|
|||||||
'Test-auth-basic.px',
|
'Test-auth-basic.px',
|
||||||
'Test-auth-no-challenge.px',
|
'Test-auth-no-challenge.px',
|
||||||
'Test-auth-no-challenge-url.px',
|
'Test-auth-no-challenge-url.px',
|
||||||
|
'Test-auth-with-content-disposition.px',
|
||||||
'Test-cookies.px',
|
'Test-cookies.px',
|
||||||
'Test-cookies-401.px',
|
'Test-cookies-401.px',
|
||||||
'Test-proxy-auth-basic.px',
|
'Test-proxy-auth-basic.px',
|
||||||
|
Loading…
Reference in New Issue
Block a user