2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2006-06-08 18:43:21 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-03-10 05:48:02 -05:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2006-06-08 18:43:21 -04:00
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2007-02-08 20:11:14 -05:00
|
|
|
#include "testutil.h"
|
2011-05-26 06:40:04 -04:00
|
|
|
#include "warnless.h"
|
2008-09-20 00:26:55 -04:00
|
|
|
#include "memdebug.h"
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2007-03-09 19:19:05 -05:00
|
|
|
#define MAIN_LOOP_HANG_TIMEOUT 90 * 1000
|
|
|
|
#define MULTI_PERFORM_HANG_TIMEOUT 60 * 1000
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2006-06-08 18:43:21 -04:00
|
|
|
int test(char *URL)
|
|
|
|
{
|
2006-06-09 04:25:16 -04:00
|
|
|
int res = 0;
|
2006-06-08 18:43:21 -04:00
|
|
|
CURL *curl;
|
|
|
|
FILE *hd_src ;
|
|
|
|
int hd ;
|
2007-02-16 14:17:05 -05:00
|
|
|
int error;
|
2006-10-26 10:30:11 -04:00
|
|
|
struct_stat file_info;
|
2006-06-08 18:43:21 -04:00
|
|
|
int running;
|
|
|
|
char done=FALSE;
|
2010-02-05 13:07:19 -05:00
|
|
|
CURLM *m = NULL;
|
2006-10-20 11:39:54 -04:00
|
|
|
struct timeval ml_start;
|
|
|
|
struct timeval mp_start;
|
|
|
|
char ml_timedout = FALSE;
|
|
|
|
char mp_timedout = FALSE;
|
2006-06-08 18:43:21 -04:00
|
|
|
|
2007-10-02 12:05:28 -04:00
|
|
|
if (!libtest_arg2) {
|
2006-09-09 12:55:21 -04:00
|
|
|
fprintf(stderr, "Usage: lib525 [url] [uploadfile]\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-10-02 12:05:28 -04:00
|
|
|
hd_src = fopen(libtest_arg2, "rb");
|
2007-02-16 14:17:05 -05:00
|
|
|
if(NULL == hd_src) {
|
|
|
|
error = ERRNO;
|
|
|
|
fprintf(stderr, "fopen() failed with error: %d %s\n",
|
|
|
|
error, strerror(error));
|
2007-10-02 12:05:28 -04:00
|
|
|
fprintf(stderr, "Error opening file: %s\n", libtest_arg2);
|
2007-02-16 14:17:05 -05:00
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
2010-04-07 01:51:05 -04:00
|
|
|
/* get the file size of the local file */
|
|
|
|
hd = fstat(fileno(hd_src), &file_info);
|
|
|
|
if(hd == -1) {
|
|
|
|
/* can't open file, bail out */
|
|
|
|
error = ERRNO;
|
|
|
|
fprintf(stderr, "fstat() failed with error: %d %s\n",
|
|
|
|
error, strerror(error));
|
|
|
|
fprintf(stderr, "ERROR: cannot open file %s\n", libtest_arg2);
|
|
|
|
fclose(hd_src);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-10-25 01:59:46 -04:00
|
|
|
if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
|
|
|
|
fprintf(stderr, "curl_global_init() failed\n");
|
|
|
|
fclose(hd_src);
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
2006-10-25 01:59:46 -04:00
|
|
|
if ((curl = curl_easy_init()) == NULL) {
|
|
|
|
fprintf(stderr, "curl_easy_init() failed\n");
|
2006-10-10 19:50:37 -04:00
|
|
|
fclose(hd_src);
|
|
|
|
curl_global_cleanup();
|
2006-10-25 01:59:46 -04:00
|
|
|
return TEST_ERR_MAJOR_BAD;
|
2006-10-10 19:50:37 -04:00
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* enable uploading */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_UPLOAD, 1L);
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* specify target */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl,CURLOPT_URL, URL);
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* go verbose */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_VERBOSE, 1L);
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* use active FTP */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_FTPPORT, "-");
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* now specify which file to upload */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_READDATA, hd_src);
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
/* NOTE: if you want this code to work on Windows with libcurl as a DLL, you
|
|
|
|
MUST also provide a read callback with CURLOPT_READFUNCTION. Failing to
|
|
|
|
do so will give you a crash since a DLL may not use the variable's memory
|
|
|
|
when passed in to it from an app like this. */
|
|
|
|
|
|
|
|
/* Set the size of the file to upload (optional). If you give a *_LARGE
|
|
|
|
option you MUST make sure that the type of the passed-in argument is a
|
|
|
|
curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must
|
|
|
|
make sure that to pass in a type 'long' argument. */
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curl, CURLOPT_INFILESIZE_LARGE,
|
2006-06-08 18:43:21 -04:00
|
|
|
(curl_off_t)file_info.st_size);
|
|
|
|
|
2006-10-25 01:59:46 -04:00
|
|
|
if ((m = curl_multi_init()) == NULL) {
|
|
|
|
fprintf(stderr, "curl_multi_init() failed\n");
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_global_cleanup();
|
|
|
|
fclose(hd_src);
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
2006-10-25 01:59:46 -04:00
|
|
|
if ((res = (int)curl_multi_add_handle(m, curl)) != CURLM_OK) {
|
|
|
|
fprintf(stderr, "curl_multi_add_handle() failed, "
|
|
|
|
"with code %d\n", res);
|
|
|
|
curl_multi_cleanup(m);
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_global_cleanup();
|
|
|
|
fclose(hd_src);
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
2006-10-20 11:39:54 -04:00
|
|
|
ml_timedout = FALSE;
|
2007-02-08 20:11:14 -05:00
|
|
|
ml_start = tutil_tvnow();
|
2006-10-20 11:39:54 -04:00
|
|
|
|
|
|
|
while (!done) {
|
2006-06-08 18:43:21 -04:00
|
|
|
fd_set rd, wr, exc;
|
|
|
|
int max_fd;
|
|
|
|
struct timeval interval;
|
|
|
|
|
|
|
|
interval.tv_sec = 1;
|
|
|
|
interval.tv_usec = 0;
|
|
|
|
|
2007-02-08 20:11:14 -05:00
|
|
|
if (tutil_tvdiff(tutil_tvnow(), ml_start) >
|
2006-10-20 11:39:54 -04:00
|
|
|
MAIN_LOOP_HANG_TIMEOUT) {
|
|
|
|
ml_timedout = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mp_timedout = FALSE;
|
2007-02-08 20:11:14 -05:00
|
|
|
mp_start = tutil_tvnow();
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2011-06-26 17:12:08 -04:00
|
|
|
res = (int)curl_multi_perform(m, &running);
|
|
|
|
if (tutil_tvdiff(tutil_tvnow(), mp_start) >
|
|
|
|
MULTI_PERFORM_HANG_TIMEOUT) {
|
|
|
|
mp_timedout = TRUE;
|
|
|
|
break;
|
2006-06-08 18:43:21 -04:00
|
|
|
}
|
2011-06-26 17:12:08 -04:00
|
|
|
if (running <= 0) {
|
|
|
|
done = TRUE;
|
2006-06-08 18:43:21 -04:00
|
|
|
break;
|
2011-06-26 17:12:08 -04:00
|
|
|
}
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
if (res != CURLM_OK) {
|
|
|
|
fprintf(stderr, "not okay???\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
FD_ZERO(&rd);
|
|
|
|
FD_ZERO(&wr);
|
|
|
|
FD_ZERO(&exc);
|
|
|
|
max_fd = 0;
|
|
|
|
|
|
|
|
if (curl_multi_fdset(m, &rd, &wr, &exc, &max_fd) != CURLM_OK) {
|
|
|
|
fprintf(stderr, "unexpected failured of fdset.\n");
|
|
|
|
res = 189;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-09-10 15:01:04 -04:00
|
|
|
if (select_test(max_fd+1, &rd, &wr, &exc, &interval) == -1) {
|
2006-06-08 18:43:21 -04:00
|
|
|
fprintf(stderr, "bad select??\n");
|
|
|
|
res = 195;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = CURLM_CALL_MULTI_PERFORM;
|
|
|
|
}
|
|
|
|
|
2006-10-20 11:39:54 -04:00
|
|
|
if (ml_timedout || mp_timedout) {
|
|
|
|
if (ml_timedout) fprintf(stderr, "ml_timedout\n");
|
|
|
|
if (mp_timedout) fprintf(stderr, "mp_timedout\n");
|
2006-10-19 13:29:25 -04:00
|
|
|
fprintf(stderr, "ABORTING TEST, since it seems "
|
|
|
|
"that it would have run forever.\n");
|
2006-10-25 01:59:46 -04:00
|
|
|
res = TEST_ERR_RUNS_FOREVER;
|
2006-10-19 13:29:25 -04:00
|
|
|
}
|
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_cleanup:
|
|
|
|
|
2006-09-28 17:26:06 -04:00
|
|
|
#ifdef LIB529
|
|
|
|
/* test 529 */
|
2010-02-05 13:07:19 -05:00
|
|
|
if(m) {
|
|
|
|
curl_multi_remove_handle(m, curl);
|
|
|
|
curl_multi_cleanup(m);
|
|
|
|
}
|
2006-09-28 17:26:06 -04:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
#else
|
|
|
|
/* test 525 */
|
2010-02-05 13:07:19 -05:00
|
|
|
if(m)
|
|
|
|
curl_multi_remove_handle(m, curl);
|
2006-06-08 18:43:21 -04:00
|
|
|
curl_easy_cleanup(curl);
|
2010-02-05 13:07:19 -05:00
|
|
|
if(m)
|
|
|
|
curl_multi_cleanup(m);
|
2006-09-28 17:26:06 -04:00
|
|
|
#endif
|
2006-06-08 18:43:21 -04:00
|
|
|
|
|
|
|
fclose(hd_src); /* close the local file */
|
|
|
|
|
|
|
|
curl_global_cleanup();
|
2006-06-09 04:25:16 -04:00
|
|
|
return res;
|
2006-06-08 18:43:21 -04:00
|
|
|
}
|