mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 03:25:04 -05:00
33bea767eb
are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as edit and view them using XML tools.
47 lines
590 B
Plaintext
47 lines
590 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 curl_by_daniel@haxx.se
|
|
PWD
|
|
CWD a
|
|
CWD path
|
|
EPSV
|
|
TYPE I
|
|
SIZE 210
|
|
RETR 210
|
|
EPSV
|
|
SIZE 210
|
|
RETR 210
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|