mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 23:55:01 -04:00
4efa0d9f68
the left side of @ to make it short(er).
47 lines
583 B
Plaintext
47 lines
583 B
Plaintext
<testcase>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
data blobb
|
|
</data>
|
|
|
|
# data is sent to stdout
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
ftp
|
|
</server>
|
|
<name>
|
|
Get two FTP files from the same remote dir: no second CWD
|
|
</name>
|
|
<command>
|
|
ftp://%HOSTIP:%FTPPORT/a/path/210 ftp://%HOSTIP:%FTPPORT/a/path/210
|
|
</command>
|
|
<stdout>
|
|
data blobb
|
|
data blobb
|
|
</stdout>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS ftp@example.com
|
|
PWD
|
|
CWD a
|
|
CWD path
|
|
EPSV
|
|
TYPE I
|
|
SIZE 210
|
|
RETR 210
|
|
EPSV
|
|
SIZE 210
|
|
RETR 210
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|