]> sjero.net Git - wget/blob - tests/Test-idn-meta.px
Fix build when libpsl is not available
[wget] / tests / Test-idn-meta.px
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5
6 use WgetFeature qw(iri);
7 use HTTPTest;
8
9 # " Kon'nichiwa <dot> Japan
10 my $euc_jp_hostname = "\272\243\306\374\244\317.\306\374\313\334";
11 my $punycoded_hostname = 'xn--v9ju72g90p.xn--wgv71a';
12
13 ###############################################################################
14
15 my $starter_file = <<EOF;
16 <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />
17 <a href="http://$euc_jp_hostname/">The link</a>
18 EOF
19
20 my $result_file = <<EOF;
21 Found me!
22 EOF
23
24 # code, msg, headers, content
25 my %urls = (
26     'http://start-here.com/start.html' => {
27         code => "200",
28         msg => "You want fries with that?",
29         headers => {
30             'Content-Type' => 'text/html; charset=UTF-8',
31         },
32         content => $starter_file,
33     },
34     "http://$punycoded_hostname/index.html" => {
35         code => "200",
36         msg => "Yes, please",
37         headers => {
38             'Content-Type' => 'text/plain',
39         },
40         content => $result_file,
41     },
42 );
43
44 my $cmdline = $WgetTest::WGETPATH . " --iri -rH"
45     . " -e http_proxy=localhost:{{port}} http://start-here.com/start.html";
46
47 my $expected_error_code = 0;
48
49 my %expected_downloaded_files = (
50     'start-here.com/start.html' => {
51         content => $starter_file,
52     },
53     "$punycoded_hostname/index.html" => {
54         content => $result_file,
55     },
56 );
57
58 ###############################################################################
59
60 my $the_test = HTTPTest->new (name => "Test-idn-meta",
61                               input => \%urls,
62                               cmdline => $cmdline,
63                               errcode => $expected_error_code,
64                               output => \%expected_downloaded_files);
65 exit $the_test->run();
66
67 # vim: et ts=4 sw=4
68