mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
ae3d5949b8
directly to ftpserver.cmd and removing unneeded empty sections.
56 lines
760 B
Plaintext
56 lines
760 B
Plaintext
<testcase>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
data blobb
|
|
</data>
|
|
<servercmd>
|
|
REPLY EPRT 500 no such command
|
|
</servercmd>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
ipv6
|
|
</features>
|
|
<server>
|
|
ftp-ipv6
|
|
</server>
|
|
<name>
|
|
Get two FTP files with no remote EPRT support
|
|
</name>
|
|
<command>
|
|
ftp://%HOSTIP:%FTPPORT/a/path/212 ftp://%HOSTIP:%FTPPORT/a/path/212 -P -
|
|
</command>
|
|
<stdout>
|
|
data blobb
|
|
data blobb
|
|
</stdout>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strippart>
|
|
s/^(EPRT \|1\|127.0.0.1).*/$1/
|
|
s/^(PORT 127,0,0,1,).*/$1/
|
|
</strippart>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS ftp@example.com
|
|
PWD
|
|
CWD a
|
|
CWD path
|
|
EPRT |1|127.0.0.1
|
|
PORT 127,0,0,1,
|
|
TYPE I
|
|
SIZE 212
|
|
RETR 212
|
|
PORT 127,0,0,1,
|
|
SIZE 212
|
|
RETR 212
|
|
QUIT
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|