]> sjero.net Git - wget/commitdiff
Robots idn test.
authorMicah Cowan <micah@cowan.name>
Thu, 4 Dec 2008 22:25:12 +0000 (14:25 -0800)
committerMicah Cowan <micah@cowan.name>
Thu, 4 Dec 2008 22:25:12 +0000 (14:25 -0800)
tests/ChangeLog
tests/Test-idn-robots.px [new file with mode: 0755]
tests/run-px

index 8e1a63f6047d43a8df1099e863fea657b7687cb8..d9ba6531debc3f6b09042e25230d6c705133367c 100644 (file)
@@ -1,5 +1,8 @@
 2008-12-04  Micah Cowan  <micah@cowan.name> (not copyrightable)
 
+       * run-px, Test-idn-robots.px: Added test for robots-file
+       downloads.
+
        * Test-idn-cmd.px, Test-idn-meta.px, Test-idn-headers.px:
        Fix test names.
 
diff --git a/tests/Test-idn-robots.px b/tests/Test-idn-robots.px
new file mode 100755 (executable)
index 0000000..bc9084e
--- /dev/null
@@ -0,0 +1,78 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+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/foo.txt">The link</a>
+EOF
+
+my $result_file = <<EOF;
+Found me!
+EOF
+
+# code, msg, headers, content
+my %urls = (
+    "http://$punycoded_hostname/index.html" => {
+        code => "200",
+        msg => "Yes, please",
+        headers => {
+            'Content-Type' => 'text/html; charset=EUC-JP',
+        },
+        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 . " --debug --iri -rH"
+    . " -e http_proxy=localhost:{{port}} --locale=EUC-JP"
+    . " http://$euc_jp_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",
+                              input => \%urls, 
+                              cmdline => $cmdline, 
+                              errcode => $expected_error_code, 
+                              output => \%expected_downloaded_files);
+exit $the_test->run();
+
+# vim: et ts=4 sw=4
+
index 3ab1c444f9d438c3b9f37e72539fe270970b0f3e..01d84995c1d44409bcd98bf5e5d8e9349280213d 100755 (executable)
@@ -34,6 +34,7 @@ my @tests = (
     'Test-idn-headers.px',
     'Test-idn-meta.px',
     'Test-idn-cmd.px',
+    'Test-idn-robots.px',
     'Test-iri.px',
     'Test-iri-disabled.px',
     'Test-iri-forced-remote.px',