diff options
author | Yang Tse <yangsita@gmail.com> | 2011-10-27 22:00:23 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-10-27 22:00:23 +0200 |
commit | 8ccf7bf8d702108aabea152424f2c753467b0101 (patch) | |
tree | 8f1be6d2a7b3602ef55ff6c6ecde74b9576deb34 | |
parent | c761fcb055681fd25d6a211a9d10e67e497fd54d (diff) |
lib589.c: add CURLOPT_READDATA missing stuff
-rw-r--r-- | tests/libtest/lib589.c | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/tests/libtest/lib589.c b/tests/libtest/lib589.c index 4d6fff0d3..9ce36ed15 100644 --- a/tests/libtest/lib589.c +++ b/tests/libtest/lib589.c @@ -37,16 +37,41 @@ int test(char *URL) int running; int msgs_left; CURLMsg *msg; + FILE *upload = NULL; + int error; start_test_timing(); - global_init(CURL_GLOBAL_ALL); + upload = fopen(libtest_arg2, "rb"); + if(!upload) { + error = ERRNO; + fprintf(stderr, "fopen() failed with error: %d (%s)\n", + error, strerror(error)); + fprintf(stderr, "Error opening file: (%s)\n", libtest_arg2); + return TEST_ERR_FOPEN; + } + + res_global_init(CURL_GLOBAL_ALL); + if(res) { + fclose(upload); + return res; + } easy_init(easy); - easy_setopt(easy, CURLOPT_URL, URL); + /* go verbose */ easy_setopt(easy, CURLOPT_VERBOSE, 1L); + + /* specify target */ + easy_setopt(easy, CURLOPT_URL, URL); + + /* enable uploading */ easy_setopt(easy, CURLOPT_UPLOAD, 1L); + + /* data pointer for the file read function */ + easy_setopt(easy, CURLOPT_READDATA, upload); + + /* use active mode FTP */ easy_setopt(easy, CURLOPT_FTPPORT, "-"); multi_init(multi); @@ -85,8 +110,8 @@ int test(char *URL) interval.tv_usec = (timeout%1000)*1000; } else { - interval.tv_sec = 5; - interval.tv_usec = 0; + interval.tv_sec = 0; + interval.tv_usec = 100000L; /* 100 ms */ } select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &interval); @@ -106,5 +131,8 @@ test_cleanup: curl_easy_cleanup(easy); curl_global_cleanup(); + /* close the local file */ + fclose(upload); + return res; } |