test case 126 added, this uses RETRWEIRDO that makes the FTP server send two

responses at once, to excerise the part of curl to make sure it can cache
(parts of) responses properly.
This commit is contained in:
Daniel Stenberg 2001-12-03 13:46:56 +00:00
parent 7493db2338
commit 265bb99382
3 changed files with 60 additions and 8 deletions

View file

@ -14,4 +14,4 @@ test103 test112 test121 test17 test22 test300 test401 test8 \
test104 test113 test122 test18 test23 test301 test402 test9 \
test105 test114 test123 test19 test24 test302 test43 \
test106 test115 test124 test190 test25 test303 test44 \
test107 test116 test125 test2 test26 test33 test45
test107 test116 test125 test2 test26 test33 test45 test126

33
tests/data/test126 Normal file
View file

@ -0,0 +1,33 @@
# Server-side
<reply>
<data>
this is file contents
</data>
</reply>
# Client-side
<client>
<name>
FTP download with multiple replies at once in RETR
</name>
<command>
ftp://%HOSTIP:%FTPPORT/blalbla/lululul/126
</command>
<file name="log/ftpserver.cmd">
RETRWEIRDO
</file>
</test>
# Verify data after the test has been "shot"
<verify>
<protocol>
USER anonymous
PASS curl_by_daniel@haxx.se
PWD
CWD blalbla/lululul
EPSV
TYPE I
SIZE 126
RETR 126
</protocol>
</verify>