sftp-multi: test 582 added

Add test 582 for uploading a file using sftp and the multi interface.

(Patch and test slightly tweaked by Daniel Stenberg)

Initially marked as disabled until it is fixed in the source.
This commit is contained in:
Henry Ludemann 2011-03-08 00:19:49 +01:00 committed by Daniel Stenberg
parent 3f7b7dea1e
commit 0e74e1d8d8
5 changed files with 57 additions and 2 deletions

View file

@ -3,3 +3,7 @@
# per line.
# Lines starting with '#' letters are treated as comments.
564
# Disabled due to a bug with uploading to an SFTP server using the multi
# interface. Easy work around; always pass 0 as the evBitmask to force CURL
# to re-evaluate the socket status.
582

View file

@ -70,7 +70,7 @@ EXTRA_DIST = test1 test108 test117 test127 test20 test27 test34 test46 \
test313 test1115 test578 test579 test1116 test1200 test1201 test1202 \
test1203 test1117 test1118 test1119 test1120 test1300 test1301 test1302 \
test1303 test320 test321 test322 test323 test324 test1121 test581 test580 \
test1304 test1305 test1306 test1307
test1304 test1305 test1306 test1307 test582
filecheck:
@mkdir test-place; \

46
tests/data/test582 Normal file
View file

@ -0,0 +1,46 @@
<testcase>
<info>
<keywords>
SFTP
multi
</keywords>
</info>
# Server-side
<reply>
<data>
</data>
</reply>
# Client-side
<client>
<server>
sftp
</server>
<tool>
lib582
</tool>
<name>
SFTP upload using multi interface
</name>
<command>
Sftp://%HOSTIP:%SSHPORT%PWD/log/upload582.txt %PWD/log/file582.txt %USER:
</command>
<file name="log/file582.txt">
Moooooooooooo
upload this
</file>
</client>
# Verify data after the test has been "shot"
<verify>
<strip>
</strip>
<protocol>
</protocol>
<file name="log/file582.txt">
Moooooooooooo
upload this
</file>
</verify>
</testcase>