mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
49 lines
1.0 KiB
Perl
Executable File
49 lines
1.0 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use WgetFeature qw(iri);
|
|
use FTPTest;
|
|
|
|
|
|
###############################################################################
|
|
|
|
my $ccedilla_l1 = "\xE7";
|
|
my $ccedilla_u8 = "\xC3\xA7";
|
|
|
|
my $francais = <<EOF;
|
|
Some text.
|
|
EOF
|
|
|
|
$francais =~ s/\n/\r\n/;
|
|
|
|
# code, msg, headers, content
|
|
my %urls = (
|
|
"/fran${ccedilla_l1}ais.txt" => {
|
|
content => $francais,
|
|
},
|
|
);
|
|
|
|
my $cmdline = $WgetTest::WGETPATH . " --local-encoding=iso-8859-1 -r -nH -S ftp://localhost:{{port}}/";
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
my %expected_downloaded_files = (
|
|
"fran${ccedilla_l1}ais.txt" => {
|
|
content => $francais,
|
|
},
|
|
);
|
|
|
|
###############################################################################
|
|
|
|
my $the_test = FTPTest->new (name => "Test-ftp-iri-recursive",
|
|
input => \%urls,
|
|
cmdline => $cmdline,
|
|
errcode => $expected_error_code,
|
|
output => \%expected_downloaded_files);
|
|
exit $the_test->run();
|
|
|
|
# vim: et ts=4 sw=4
|
|
|