]> granicus.if.org Git - curl/commitdiff
test1137: verify --ignore-content-length for FTP
authorDaniel Stenberg <daniel@haxx.se>
Fri, 23 Oct 2015 13:24:56 +0000 (15:24 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 23 Oct 2015 13:24:56 +0000 (15:24 +0200)
tests/data/Makefile.inc
tests/data/test1137 [new file with mode: 0644]

index b053534e8d4cb4b4ba19450b3556fe9d16cbf270..79214dbfa2c42d2b61db2f71b902d384836d476f 100644 (file)
@@ -118,7 +118,7 @@ test1104 test1105 test1106 test1107 test1108 test1109 test1110 test1111 \
 test1112 test1113 test1114 test1115 test1116 test1117 test1118 test1119 \
 test1120 test1121 test1122 test1123 test1124 test1125 test1126 test1127 \
 test1128 test1129 test1130 test1131 test1132 test1133 test1134 test1135 \
-test1136 \
+test1136 test1137 \
 \
 test1200 test1201 test1202 test1203 test1204 test1205 test1206 test1207 \
 test1208 test1209 test1210 test1211 test1212 test1213 test1214 test1215 \
diff --git a/tests/data/test1137 b/tests/data/test1137
new file mode 100644 (file)
index 0000000..a2bfcba
--- /dev/null
@@ -0,0 +1,52 @@
+<testcase>
+<info>
+<keywords>
+FTP
+PASV
+RETR
+--ignore-content-length
+</keywords>
+</info>
+# Server-side
+<reply>
+<data>
+data
+    to
+      see
+that FTP
+works
+  so does it?
+</data>
+<servercmd>
+REPLY EPSV 500 no such command
+</servercmd>
+</reply>
+
+# Client-side
+<client>
+<server>
+ftp
+</server>
+ <name>
+FTP RETR --ignore-content-length
+ </name>
+ <command>
+ftp://%HOSTIP:%FTPPORT/1137 --ignore-content-length
+</command>
+
+</client>
+
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+USER anonymous\r
+PASS ftp@example.com\r
+PWD\r
+EPSV\r
+PASV\r
+TYPE I\r
+RETR 1137\r
+QUIT\r
+</protocol>
+</verify>
+</testcase>