2008-11-26 10:14:27 -05:00
|
|
|
#!/usr/bin/perl
|
2008-08-28 05:45:29 -04:00
|
|
|
|
|
|
|
use strict;
|
2008-11-26 10:14:27 -05:00
|
|
|
use warnings;
|
2008-08-28 05:45:29 -04:00
|
|
|
|
2009-09-05 16:54:05 -04:00
|
|
|
use WgetFeature qw(iri);
|
2008-08-28 05:45:29 -04:00
|
|
|
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,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2009-09-27 14:29:01 -04:00
|
|
|
my $cmdline = $WgetTest::WGETPATH . " --iri -rH"
|
2008-08-28 05:45:29 -04:00
|
|
|
. " -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,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2008-12-04 16:57:18 -05:00
|
|
|
my $the_test = HTTPTest->new (name => "Test-idn-headers",
|
2009-09-21 23:39:44 -04:00
|
|
|
input => \%urls,
|
|
|
|
cmdline => $cmdline,
|
|
|
|
errcode => $expected_error_code,
|
2008-08-28 05:45:29 -04:00
|
|
|
output => \%expected_downloaded_files);
|
|
|
|
exit $the_test->run();
|
|
|
|
|
|
|
|
# vim: et ts=4 sw=4
|
|
|
|
|