X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=tests%2FTest-ftp-list-Unknown.px;fp=tests%2FTest-ftp-list-Unknown.px;h=23384d7cbd41c245b9bb8b6a59c46db7006d61c4;hp=0000000000000000000000000000000000000000;hb=c3835a425a2b441dd741c7edc1684310141fb385;hpb=8b2954e58a5599817ac9a5e02c144e95712f6927 diff --git a/tests/Test-ftp-list-Unknown.px b/tests/Test-ftp-list-Unknown.px new file mode 100644 index 00000000..23384d7c --- /dev/null +++ b/tests/Test-ftp-list-Unknown.px @@ -0,0 +1,65 @@ +#!/usr/bin/env perl + + +# 2013-10-17 Andrea Urbani (matfanjol) +# In this ftp test: +# - the response of SYST command is +# 215 Unknown ftp service +# - the response of "LIST -a" command is an empty +# directory. +# wget should use "LIST -a" then "LIST" to get the right +# content. + +use strict; +use warnings; + +use FTPTest; + + +############################################################################### + +my $afile = < { + content => $afile, + }, + '/bfile.txt' => { + content => $bfile, + }, +); + +my $cmdline = $WgetTest::WGETPATH . " --no-directories --recursive --level=1 --accept \"?file.txt\" ftp://localhost:{{port}}/"; + +my $expected_error_code = 0; + +my %expected_downloaded_files = ( + 'afile.txt' => { + content => $afile, + }, + 'bfile.txt' => { + content => $bfile, + }, +); + +############################################################################### + +my $the_test = FTPTest->new (name => "Test-ftp-list-Unknown", + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, + output => \%expected_downloaded_files, + server_behavior => {list_empty_if_list_a => 1, + syst_response => "215 Unknown ftp service"}); +exit $the_test->run(); +