Add new test.

This commit is contained in:
Giuseppe Scrivano 2010-05-29 23:10:59 +02:00
parent d733dbc703
commit 05fccaeed2
4 changed files with 48 additions and 0 deletions

View File

@ -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>
* Makefile.am (../md5/libmd5.a): Remove rule.

View File

@ -65,6 +65,7 @@ EXTRA_DIST = FTPServer.pm FTPTest.pm HTTPServer.pm HTTPTest.pm \
Test-auth-no-challenge.px \
Test-auth-no-challenge-url.px \
Test-auth-with-content-disposition.px \
Test-auth-retcode.px \
Test-c-full.px \
Test-c-partial.px \
Test-c.px \

View 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

View File

@ -14,6 +14,7 @@ my @tests = (
'Test-auth-no-challenge.px',
'Test-auth-no-challenge-url.px',
'Test-auth-with-content-disposition.px',
'Test-auth-retcode.px',
'Test-cookies.px',
'Test-cookies-401.px',
'Test-proxy-auth-basic.px',