mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
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:
parent
3f7b7dea1e
commit
0e74e1d8d8
@ -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
|
||||
|
@ -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
46
tests/data/test582
Normal 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>
|
@ -12,7 +12,7 @@ noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 \
|
||||
lib529 lib530 lib532 lib533 lib536 lib537 lib540 lib541 lib542 lib543 \
|
||||
lib544 lib545 lib547 lib548 lib549 lib552 lib553 lib554 lib555 lib556 \
|
||||
lib539 lib557 lib560 lib562 lib564 lib565 lib566 lib567 \
|
||||
lib568 lib569 lib570 lib571 lib572 lib573 chkhostname
|
||||
lib568 lib569 lib570 lib571 lib572 lib573 lib582 chkhostname
|
||||
|
||||
chkhostname_SOURCES = chkhostname.c $(top_srcdir)/lib/curl_gethostname.c
|
||||
chkhostname_LDADD = @CURL_NETWORK_LIBS@
|
||||
@ -157,3 +157,5 @@ lib578_SOURCES = lib578.c $(SUPPORTFILES)
|
||||
|
||||
lib579_SOURCES = lib579.c $(SUPPORTFILES)
|
||||
|
||||
lib582_SOURCES = lib582.c $(SUPPORTFILES) $(TESTUTIL)
|
||||
|
||||
|
@ -44,6 +44,9 @@
|
||||
#define test_setopt(A,B,C) \
|
||||
if((res = curl_easy_setopt((A),(B),(C))) != CURLE_OK) goto test_cleanup
|
||||
|
||||
#define test_multi_setopt(A,B,C) \
|
||||
if((res = curl_multi_setopt((A),(B),(C))) != CURLE_OK) goto test_cleanup
|
||||
|
||||
extern char *libtest_arg2; /* set by first.c to the argv[2] or NULL */
|
||||
extern char *libtest_arg3; /* set by first.c to the argv[3] or NULL */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user