1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

Test for IDN, based on meta-specified encoding.

This commit is contained in:
Micah Cowan 2008-08-28 12:47:17 -07:00
parent ab0b0a4090
commit 171c71e09c
3 changed files with 69 additions and 2 deletions

View File

@ -3,9 +3,9 @@
* HTTPServer.pm (run): Allow distinguishing between hostnames,
when used as a proxy.
* Test-idn-headers.px: Added.
* Test-idn-headers.px, Test-idn-meta.px: Added.
* run-px: Added Test-idn-headers.px.
* run-px: Added Test-idn-headers.px, Test-idn-meta.px.
* Test-proxy-auth-basic.px: Use the full URL, rather than just the
path (made necessary by the accompanying change to HTTPServer.pm).

66
tests/Test-idn-meta.px Executable file
View File

@ -0,0 +1,66 @@
#!/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;
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />
<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=UTF-8',
},
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-meta",
input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4

View File

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