From 8bdce1809db9cd6237ac17f82d1eba9545740cd3 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 26 Jul 2011 16:00:16 +0200 Subject: [PATCH] Add missing files. --- tests/Test-idn-cmd-utf8.px | 52 +++++++++++++++++++++++ tests/Test-idn-robots-utf8.px | 79 +++++++++++++++++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100755 tests/Test-idn-cmd-utf8.px create mode 100755 tests/Test-idn-robots-utf8.px diff --git a/tests/Test-idn-cmd-utf8.px b/tests/Test-idn-cmd-utf8.px new file mode 100755 index 00000000..f068ce47 --- /dev/null +++ b/tests/Test-idn-cmd-utf8.px @@ -0,0 +1,52 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use WgetFeature qw(iri); +use HTTPTest; + +# " Kon'nichiwa Japan +my $utf8_hostname = "\344\273\212\346\227\245\343\201\257.\346\227\245\346\234\254"; +my $punycoded_hostname = 'xn--v9ju72g90p.xn--wgv71a'; + +############################################################################### + +my $result_file = < { + code => "200", + msg => "Yes, please", + headers => { + 'Content-Type' => 'text/plain', + }, + content => $result_file, + }, +); + +my $cmdline = $WgetTest::WGETPATH . " --iri -rH" + . " -e http_proxy=localhost:{{port}} --local-encoding=UTF-8 $utf8_hostname"; + +my $expected_error_code = 0; + +my %expected_downloaded_files = ( + "$punycoded_hostname/index.html" => { + content => $result_file, + }, +); + +############################################################################### + +my $the_test = HTTPTest->new (name => "Test-idn-cmd-utf8", + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, + output => \%expected_downloaded_files); +exit $the_test->run(); + +# vim: et ts=4 sw=4 + diff --git a/tests/Test-idn-robots-utf8.px b/tests/Test-idn-robots-utf8.px new file mode 100755 index 00000000..bcfadd1f --- /dev/null +++ b/tests/Test-idn-robots-utf8.px @@ -0,0 +1,79 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use WgetFeature qw(iri); +use HTTPTest; + +# " Kon'nichiwa Japan +my $utf8_hostname = "\344\273\212\346\227\245\343\201\257.\346\227\245\346\234\254"; +my $punycoded_hostname = 'xn--v9ju72g90p.xn--wgv71a'; + +############################################################################### + +my $starter_file = <The link +EOF + +my $result_file = < { + code => "200", + msg => "Yes, please", + headers => { + 'Content-Type' => 'text/html; charset=UTF-8', + }, + content => $starter_file, + }, + "http://$punycoded_hostname/foo.txt" => { + code => "200", + msg => "Uh-huh", + headers => { + 'Content-Type' => 'text/plain', + }, + content => $result_file, + }, + "http://$punycoded_hostname/robots.txt" => { + code => "200", + msg => "Uh-huh", + headers => { + 'Content-Type' => 'text/plain', + }, + content => '', + }, +); + +my $cmdline = $WgetTest::WGETPATH . " --iri -rH" + . " -e http_proxy=localhost:{{port}} --local-encoding=UTF-8" + . " http://$utf8_hostname/"; + +my $expected_error_code = 0; + +my %expected_downloaded_files = ( + "$punycoded_hostname/index.html" => { + content => $starter_file, + }, + "$punycoded_hostname/foo.txt" => { + content => $result_file, + }, + "$punycoded_hostname/robots.txt" => { + content => '', + }, +); + +############################################################################### + +my $the_test = HTTPTest->new (name => "Test-idn-robots-utf8", + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, + output => \%expected_downloaded_files); +exit $the_test->run(); + +# vim: et ts=4 sw=4 + -- 2.39.2