IDN test.

This commit is contained in:
Micah Cowan 2008-08-28 02:45:29 -07:00
parent 090f1596ae
commit ab0b0a4090
5 changed files with 81 additions and 2 deletions

View File

@ -1,3 +1,15 @@
2008-08-28 Micah Cowan <micah@cowan.name>
* HTTPServer.pm (run): Allow distinguishing between hostnames,
when used as a proxy.
* Test-idn-headers.px: Added.
* run-px: Added Test-idn-headers.px.
* Test-proxy-auth-basic.px: Use the full URL, rather than just the
path (made necessary by the accompanying change to HTTPServer.pm).
2008-08-14 Xavier Saint <wget@sxav.eu>
* Test-iri-list.px : Fetch files from a remote list.

View File

@ -27,7 +27,8 @@ sub run {
my $con = $self->accept();
print STDERR "Accepted a new connection\n" if $log;
while (my $req = $con->get_request) {
my $url_path = $req->url->path;
#my $url_path = $req->url->path;
my $url_path = $req->url->as_string;
if ($url_path =~ m{/$}) { # append 'index.html'
$url_path .= 'index.html';
}

65
tests/Test-idn-headers.px Executable file
View File

@ -0,0 +1,65 @@
#!/usr/bin/perl -w
use strict;
use HTTPTest;
# " Kon'nichiwa <dot> Japan
my $euc_jp_hostname = "\272\243\306\374\244\317.\306\374\313\334";
my $punycoded_hostname = 'xn--v9ju72g90p.xn--wgv71a';
###############################################################################
my $starter_file = <<EOF;
<a href="http://$euc_jp_hostname/">The link</a>
EOF
my $result_file = <<EOF;
Found me!
EOF
# code, msg, headers, content
my %urls = (
'http://start-here.com/start.html' => {
code => "200",
msg => "You want fries with that?",
headers => {
'Content-Type' => 'text/html; charset=EUC-JP',
},
content => $starter_file,
},
"http://$punycoded_hostname/index.html" => {
code => "200",
msg => "Yes, please",
headers => {
'Content-Type' => 'text/plain',
},
content => $result_file,
},
);
my $cmdline = $WgetTest::WGETPATH . " --debug --iri -rH"
. " -e http_proxy=localhost:{{port}} http://start-here.com/start.html";
my $expected_error_code = 0;
my %expected_downloaded_files = (
'start-here.com/start.html' => {
content => $starter_file,
},
"$punycoded_hostname/index.html" => {
content => $result_file,
},
);
###############################################################################
my $the_test = HTTPTest->new (name => "Test-iri-headers",
input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4

View File

@ -11,7 +11,7 @@ my $wholefile = "You're all authenticated.\n";
# code, msg, headers, content
my %urls = (
'/needs-auth.txt' => {
'http://no.such.domain/needs-auth.txt' => {
auth_method => 'Basic',
user => 'fiddle-dee-dee',
passwd => 'Dodgson',

View File

@ -23,6 +23,7 @@ my @tests = (
'Test-HTTP-Content-Disposition-1.px',
'Test-HTTP-Content-Disposition-2.px',
'Test-HTTP-Content-Disposition.px',
'Test-idn-headers.px',
'Test-iri.px',
'Test-iri-disabled.px',
'Test-iri-forced-remote.px',