summaryrefslogtreecommitdiffstats
path: root/tests/Test-idn-cmd-utf8.px
blob: 42e431828226b95bb148e38eeec98cf8285f410e (plain)
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
#!/usr/bin/env perl

use strict;
use warnings;

use WgetFeature qw(iri);
use HTTPTest;

# " Kon'nichiwa <dot> 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 = <<EOF;
Found me!
EOF

# code, msg, headers, content
my %urls = (
    "http://$punycoded_hostname/index.html" => {
        code => "200",
        msg => "Yes, please",
        headers => {
            'Content-Type' => 'text/plain',
        },
        content => $result_file,
    },
);

my $cmdline = $WgetTest::WGETPATH . " --iri -r"
    . " -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 (input => \%urls,
                              cmdline => $cmdline,
                              errcode => $expected_error_code,
                              output => \%expected_downloaded_files);
exit $the_test->run();

# vim: et ts=4 sw=4