mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Add new test.
This commit is contained in:
parent
d733dbc703
commit
05fccaeed2
@ -1,3 +1,11 @@
|
|||||||
|
2010-05-29 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
|
* Makefile.am (EXTRA_DIST): Add Test-auth-retcode.px.
|
||||||
|
|
||||||
|
* run-px (tests): Likewise.
|
||||||
|
|
||||||
|
* Test-auth-retcode.px: New file.
|
||||||
|
|
||||||
2010-05-16 Giuseppe Scrivano <gscrivano@gnu.org>
|
2010-05-16 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
* Makefile.am (../md5/libmd5.a): Remove rule.
|
* Makefile.am (../md5/libmd5.a): Remove rule.
|
||||||
|
@ -65,6 +65,7 @@ EXTRA_DIST = FTPServer.pm FTPTest.pm HTTPServer.pm HTTPTest.pm \
|
|||||||
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-auth-with-content-disposition.px \
|
||||||
|
Test-auth-retcode.px \
|
||||||
Test-c-full.px \
|
Test-c-full.px \
|
||||||
Test-c-partial.px \
|
Test-c-partial.px \
|
||||||
Test-c.px \
|
Test-c.px \
|
||||||
|
38
tests/Test-auth-retcode.px
Normal file
38
tests/Test-auth-retcode.px
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
use HTTPTest;
|
||||||
|
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
# code, msg, headers, content
|
||||||
|
my %urls = (
|
||||||
|
'/dummy.txt' => {
|
||||||
|
code => "403",
|
||||||
|
msg => "Dontcare",
|
||||||
|
headers => {
|
||||||
|
"Content-type" => "text/plain",
|
||||||
|
"Last-Modified" => "Sat, 09 Oct 2004 08:30:00 GMT",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
my $cmdline = $WgetTest::WGETPATH . " -N http://localhost:{{port}}/dummy.txt";
|
||||||
|
|
||||||
|
my $expected_error_code = 8;
|
||||||
|
|
||||||
|
my %expected_downloaded_files = ();
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
my $the_test = HTTPTest->new (name => "Test-auth-retcode",
|
||||||
|
input => \%urls,
|
||||||
|
cmdline => $cmdline,
|
||||||
|
errcode => $expected_error_code,
|
||||||
|
output => \%expected_downloaded_files);
|
||||||
|
exit $the_test->run();
|
||||||
|
|
||||||
|
# vim: et ts=4 sw=4
|
@ -14,6 +14,7 @@ my @tests = (
|
|||||||
'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-auth-with-content-disposition.px',
|
||||||
|
'Test-auth-retcode.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