Commit 85707460 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Added FTPS upload tests 408 and 409.

parent 41ba7666
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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

tests/data/test408

0 → 100644
+61 −0
Original line number Diff line number Diff line
<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>

tests/data/test409

0 → 100644
+56 −0
Original line number Diff line number Diff line
<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>