forked from lifenjoiner/wget-for-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest-idn-robots.px
executable file
·114 lines (100 loc) · 2.97 KB
/
Test-idn-robots.px
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/usr/bin/env perl
use strict;
use warnings;
use WgetFeature qw(iri);
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';
# URL should always be encoded from utf-8.
my $escaped_hostname = "%E4%BB%8A%E6%97%A5%E3%81%AF.%E6%97%A5%E6%9C%AC";
# Windows will transcode the command line parameters into native locale encoded!
my $url = <<EOF;
$euc_jp_hostname
EOF
###############################################################################
my %preexisting_files = (
'locale-url.txt' => {
content => $url,
},
);
my $starter_file = <<EOF;
<a href="http://$euc_jp_hostname/foo.txt">The link</a>
<a href="http://$punycoded_hostname/foo2.txt">The second link</a>
<a href="http://$escaped_hostname/foo3.txt">The third 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/foo2.txt" => {
code => "200",
msg => "Uh-huh2",
headers => {
'Content-Type' => 'text/plain',
},
content => $result_file,
},
"http://$punycoded_hostname/foo3.txt" => {
code => "200",
msg => "Uh-huh3",
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 -r"
. " -e http_proxy=localhost:{{port}} --local-encoding=EUC-JP"
. " -i locale-url.txt";
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/foo2.txt" => {
content => $result_file,
},
"$punycoded_hostname/foo3.txt" => {
content => $result_file,
},
"$punycoded_hostname/robots.txt" => {
content => '',
},
);
###############################################################################
my $the_test = HTTPTest->new (input => \%urls,
cmdline => $cmdline,
errcode => $expected_error_code,
existing => \%preexisting_files,
output => \%expected_downloaded_files);
exit $the_test->run();
# vim: et ts=4 sw=4