mirror of https://gitee.com/openkylin/wget.git
40 lines
896 B
Plaintext
40 lines
896 B
Plaintext
|
#!/usr/bin/env -S perl -I .
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use FTPTest;
|
||
|
|
||
|
|
||
|
###############################################################################
|
||
|
|
||
|
my $dummyfile = "1234";
|
||
|
|
||
|
# code, msg, headers, content
|
||
|
my %urls = (
|
||
|
'/dummy.txt' => {
|
||
|
content => $dummyfile
|
||
|
},
|
||
|
);
|
||
|
|
||
|
my $cmdline = $WgetTest::WGETPATH . " --start-pos=1 ftp://localhost:{{port}}/dummy.txt";
|
||
|
|
||
|
my $expected_error_code = 0;
|
||
|
|
||
|
my %expected_downloaded_files = (
|
||
|
'dummy.txt' => {
|
||
|
content => substr($dummyfile, 1),
|
||
|
}
|
||
|
);
|
||
|
|
||
|
###############################################################################
|
||
|
|
||
|
my $the_test = FTPTest->new (
|
||
|
input => \%urls,
|
||
|
cmdline => $cmdline,
|
||
|
errcode => $expected_error_code,
|
||
|
output => \%expected_downloaded_files);
|
||
|
exit $the_test->run();
|
||
|
|
||
|
# vim: et ts=4 sw=4
|