mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
77268e0649
it disconnects the TCP connection, like a good ftp client should!
48 lines
594 B
Plaintext
48 lines
594 B
Plaintext
# Server-side
|
|
<reply>
|
|
<data>
|
|
</data>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
ftp
|
|
</server>
|
|
<name>
|
|
FTP PORT upload with CWD
|
|
</name>
|
|
<command>
|
|
ftp://%HOSTIP:%FTPPORT/CWD/STOR/RETR/108 -T log/upload108 -P -
|
|
</command>
|
|
<file name="log/upload108">
|
|
Moooooooooooo
|
|
upload this
|
|
</file>
|
|
</test>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<strip>
|
|
^PORT .*
|
|
^EPRT .*
|
|
^LPRT .*
|
|
</strip>
|
|
<protocol>
|
|
USER anonymous
|
|
PASS curl_by_daniel@haxx.se
|
|
PWD
|
|
CWD CWD
|
|
CWD STOR
|
|
CWD RETR
|
|
PORT 127,0,0,1,5,109
|
|
TYPE I
|
|
STOR 108
|
|
QUIT
|
|
</protocol>
|
|
<upload>
|
|
Moooooooooooo
|
|
upload this
|
|
</upload>
|
|
</verify>
|