curl/tests/data/test117
Daniel Stenberg cd4aee156f
tests: ignore QUIT from FTP protocol comparisons
- QUIT is not an important FTP command
- curl only sends it "best effort", meaning it might not be sent
- it is a known "flaky" thing in test output because of this

Closes #14404
2024-08-07 08:48:56 +02:00

48 lines
552 B
Plaintext

<testcase>
<info>
<keywords>
FTP
FAILURE
</keywords>
</info>
# Server-side
<reply>
<servercmd>
REPLY EPSV 314 bluah you f00l!
REPLY TYPE 314 bluah you f00l!
</servercmd>
</reply>
# Client-side
<client>
<server>
ftp
</server>
<name>
FTP download, failed TYPE
</name>
<command>
ftp://%HOSTIP:%FTPPORT/%TESTNUMBER
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<strip>
QUIT
</strip>
<errorcode>
17
</errorcode>
<protocol>
USER anonymous
PASS ftp@example.com
PWD
EPSV
PASV
TYPE I
QUIT
</protocol>
</verify>
</testcase>