1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00
curl/tests/data/test533
Daniel Stenberg 038542ea3e - The libcurl FTP code now returns CURLE_REMOTE_FILE_NOT_FOUND error when SIZE
gets a 550 response back for the cases where a download (or NOBODY) is
  wanted. It still allows a 550 as response if the SIZE is used as part of an
  upload process (like if resuming an upload is requested and the file isn't
  there before the upload). I also modified the FTP test server and a few test
  cases accordingly to match this modified behavior.
2008-09-30 09:51:58 +00:00

54 lines
668 B
Plaintext

<testcase>
<info>
<keywords>
FTP
PASV
RETR
multi
</keywords>
</info>
# Server-side
<reply>
<data>
</data>
<servercmd>
REPLY RETR 550 the file doesn't exist
REPLY SIZE 550 Can't check for file existence
</servercmd>
</reply>
# Client-side
<client>
<server>
ftp
</server>
<tool>
lib533
</tool>
<name>
FTP RETR a non-existing file twice using the multi interface
</name>
<command>
ftp://%HOSTIP:%FTPPORT/path/533 ftp://%HOSTIP:%FTPPORT/path/533
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol>
USER anonymous
PASS ftp@example.com
PWD
CWD path
EPSV
TYPE I
SIZE 533
EPSV
SIZE 533
QUIT
</protocol>
</verify>
</testcase>