test1137: verify --ignore-content-length for FTP

This commit is contained in:
Daniel Stenberg 2015-10-23 15:24:56 +02:00
parent b1fc8c0e97
commit eefd5a95af
2 changed files with 53 additions and 1 deletions

View 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 \

52
tests/data/test1137 Normal file
View File

@ -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
PASS ftp@example.com
PWD
EPSV
PASV
TYPE I
RETR 1137
QUIT
</protocol>
</verify>
</testcase>