curl-curl/tests/data/test3027
Viktor Szakats 4d2a05d3fe
tests: use crlf=yes attribute more
To make special newlines more explicit and visible.
Mostly in `<protocol>` sections, some in `<data*>` and `<upload>`.

Reducing the number of `tests/data/test*`:
- CRLF newlines from 21535 to 11337.
- files with mixed newlines from 1335 to 707.

Also delete empty `<protocol>` sections.

Closes #19284
2025-10-31 15:01:08 +01:00

56 lines
688 B
Plaintext

<testcase>
<info>
<keywords>
FTP
CURLOPT_FILETIME
MDTM fail
</keywords>
</info>
# Server-side
<reply>
<servercmd>
REPLY MDTM 550 Permission denied
</servercmd>
<data>
data blobb
</data>
# data is sent to stdout
</reply>
# Client-side
<client>
<server>
ftp
</server>
<name>
Get a file via FTP but 550 after MDTM command
</name>
<tool>
lib3027
</tool>
<command option="no-include">
ftp://%HOSTIP:%FTPPORT/%TESTNUMBER
</command>
<stdout>
data blobb
</stdout>
</client>
# Verify data after the test has been "shot"
<verify>
<protocol crlf="yes">
USER anonymous
PASS ftp@example.com
PWD
MDTM %TESTNUMBER
EPSV
TYPE I
SIZE %TESTNUMBER
RETR %TESTNUMBER
QUIT
</protocol>
</verify>
</testcase>