1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <testcase>
- <info>
- <keywords>
- FTP
- PASV
- RETR
- post-quote
- </keywords>
- </info>
- # Server-side
- <reply>
- <data>
- data
- to
- see
- that FTP
- works
- so does it?
- </data>
- <servercmd>
- REPLY EPSV 314 bluah you f00l!
- </servercmd>
- </reply>
- # Client-side
- <client>
- <server>
- ftp
- </server>
- <name>
- ftp download with post-quote delete operation
- </name>
- <command>
- ftp://%HOSTIP:%FTPPORT/%TESTNUMBER -Q "-DELE file"
- </command>
- </client>
- # Verify data after the test has been "shot"
- <verify>
- <protocol>
- USER anonymous
- PASS ftp@example.com
- PWD
- EPSV
- PASV
- TYPE I
- SIZE %TESTNUMBER
- RETR %TESTNUMBER
- DELE file
- QUIT
- </protocol>
- </verify>
- </testcase>
|