Added FTPS upload tests 408 and 409.

This commit is contained in:
Dan Fandrich 2007-05-10 20:03:20 +00:00
parent 41ba7666f0
commit 85707460e5
3 changed files with 119 additions and 1 deletions

View File

@ -40,4 +40,5 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \
test286 test307 test308 test287 test400 test288 test600 test601 test602 \
test603 test401 test402 test290 test291 test292 test293 test403 test404 \
test405 test604 test605 test606 test607 test608 test609 test294 test295 \
test296 test297 test298 test610 test611 test612 test406 test407
test296 test297 test298 test610 test611 test612 test406 test407 test408 \
test409

61
tests/data/test408 Normal file
View File

@ -0,0 +1,61 @@
<testcase>
<info>
<keywords>
FTPS
PORT
STOR
</keywords>
</info>
# Server-side
<reply>
<data>
</data>
</reply>
# Client-side
<client>
<features>
SSL
</features>
<server>
ftps
</server>
<name>
FTPS PORT upload with CWD
</name>
<command>
-k --ftp-ssl-control ftps://%HOSTIP:%FTPSPORT/CWD/STOR/RETR/408 -T log/upload408 -P -
</command>
<file name="log/upload408">
Moooooooooooo
upload this
</file>
</client>
# Verify data after the test has been "shot"
<verify>
<strip>
^PORT .*
^EPRT .*
^LPRT .*
</strip>
<protocol>
USER anonymous
PASS ftp@example.com
PBSZ 0
PROT C
PWD
CWD CWD
CWD STOR
CWD RETR
PORT 127,0,0,1,5,109
TYPE I
STOR 408
QUIT
</protocol>
<upload>
Moooooooooooo
upload this
</upload>
</verify>
</testcase>

56
tests/data/test409 Normal file
View File

@ -0,0 +1,56 @@
<testcase>
<info>
<keywords>
FTPS
EPSV
STOR
</keywords>
</info>
# Client-side
<client>
<features>
SSL
</features>
<server>
ftps
</server>
<name>
FTPS PASV upload file
</name>
<file name="log/test409.txt">
data
to
see
that FTP
works
so does it?
</file>
<command>
-k --ftp-ssl-control ftps://%HOSTIP:%FTPSPORT/409 -T log/test409.txt
</command>
</client>
# Verify data after the test has been "shot"
<verify>
<upload>
data
to
see
that FTP
works
so does it?
</upload>
<protocol>
USER anonymous
PASS ftp@example.com
PBSZ 0
PROT C
PWD
EPSV
TYPE I
STOR 409
QUIT
</protocol>
</verify>
</testcase>