]> granicus.if.org Git - curl/commitdiff
Added FTPS upload tests 408 and 409.
authorDan Fandrich <dan@coneharvesters.com>
Thu, 10 May 2007 20:03:20 +0000 (20:03 +0000)
committerDan Fandrich <dan@coneharvesters.com>
Thu, 10 May 2007 20:03:20 +0000 (20:03 +0000)
tests/data/Makefile.am
tests/data/test408 [new file with mode: 0644]
tests/data/test409 [new file with mode: 0644]

index 5b290f835f7ec79a390bc96307781f85588bc478..14305c2c45d44104a0658820fcc2b09b468847d7 100644 (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
diff --git a/tests/data/test408 b/tests/data/test408
new file mode 100644 (file)
index 0000000..211d1fa
--- /dev/null
@@ -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\r
+PASS ftp@example.com\r
+PBSZ 0\r
+PROT C\r
+PWD\r
+CWD CWD\r
+CWD STOR\r
+CWD RETR\r
+PORT 127,0,0,1,5,109\r
+TYPE I\r
+STOR 408\r
+QUIT\r
+</protocol>
+<upload>
+Moooooooooooo
+ upload this
+</upload>
+</verify>
+</testcase>
diff --git a/tests/data/test409 b/tests/data/test409
new file mode 100644 (file)
index 0000000..d7801a8
--- /dev/null
@@ -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\r
+PASS ftp@example.com\r
+PBSZ 0\r
+PROT C\r
+PWD\r
+EPSV\r
+TYPE I\r
+STOR 409\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>