2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2006-10-25 05:20:44 -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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2003-08-19 05:37:28 -04:00
|
|
|
#include "test.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
|
|
|
|
2004-02-05 07:34:17 -05:00
|
|
|
int test(char *URL)
|
2003-08-19 05:37:28 -04:00
|
|
|
{
|
|
|
|
CURL* curls;
|
|
|
|
CURLM* multi;
|
|
|
|
int still_running;
|
2006-06-10 13:35:28 -04:00
|
|
|
int i = -1;
|
2010-02-05 13:07:19 -05:00
|
|
|
int res = 0;
|
2003-08-19 05:37:28 -04:00
|
|
|
CURLMsg *msg;
|
2010-02-05 13:07:19 -05:00
|
|
|
CURLMcode ret;
|
2006-10-20 11:39:54 -04:00
|
|
|
struct timeval ml_start;
|
|
|
|
struct timeval mp_start;
|
|
|
|
char ml_timedout = FALSE;
|
|
|
|
char mp_timedout = FALSE;
|
2003-08-19 05:37:28 -04:00
|
|
|
|
2006-10-25 01:59:46 -04:00
|
|
|
if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
|
|
|
|
fprintf(stderr, "curl_global_init() failed\n");
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((multi = curl_multi_init()) == NULL) {
|
|
|
|
fprintf(stderr, "curl_multi_init() failed\n");
|
|
|
|
curl_global_cleanup();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((curls = curl_easy_init()) == NULL) {
|
|
|
|
fprintf(stderr, "curl_easy_init() failed\n");
|
|
|
|
curl_multi_cleanup(multi);
|
|
|
|
curl_global_cleanup();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2003-08-19 05:37:28 -04:00
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_setopt(curls, CURLOPT_URL, URL);
|
2011-01-25 06:06:50 -05:00
|
|
|
test_setopt(curls, CURLOPT_HEADER, 1L);
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
if ((ret = curl_multi_add_handle(multi, curls)) != CURLM_OK) {
|
2006-10-25 01:59:46 -04:00
|
|
|
fprintf(stderr, "curl_multi_add_handle() failed, "
|
2010-02-05 13:07:19 -05:00
|
|
|
"with code %d\n", ret);
|
2006-10-25 01:59:46 -04:00
|
|
|
curl_easy_cleanup(curls);
|
|
|
|
curl_multi_cleanup(multi);
|
|
|
|
curl_global_cleanup();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2003-08-19 05:37:28 -04:00
|
|
|
|
2006-10-20 11:39:54 -04:00
|
|
|
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
|
|
|
ret = curl_multi_perform(multi, &still_running);
|
|
|
|
if (tutil_tvdiff(tutil_tvnow(), mp_start) >
|
|
|
|
MULTI_PERFORM_HANG_TIMEOUT)
|
|
|
|
mp_timedout = TRUE;
|
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-19 13:29:25 -04:00
|
|
|
|
2006-10-20 11:39:54 -04:00
|
|
|
while ((!ml_timedout) && (!mp_timedout) && (still_running)) {
|
2003-08-19 05:37:28 -04:00
|
|
|
struct timeval timeout;
|
|
|
|
int rc;
|
|
|
|
fd_set fdread;
|
|
|
|
fd_set fdwrite;
|
|
|
|
fd_set fdexcep;
|
|
|
|
int maxfd;
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2003-08-19 05:37:28 -04:00
|
|
|
FD_ZERO(&fdread);
|
|
|
|
FD_ZERO(&fdwrite);
|
|
|
|
FD_ZERO(&fdexcep);
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2010-02-14 14:40:18 -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;
|
|
|
|
}
|
|
|
|
|
2003-08-19 05:37:28 -04:00
|
|
|
curl_multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
|
2006-09-10 15:01:04 -04:00
|
|
|
rc = select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
|
2003-08-19 05:37:28 -04:00
|
|
|
switch(rc) {
|
|
|
|
case -1:
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
2006-10-20 11:39:54 -04:00
|
|
|
mp_timedout = FALSE;
|
2007-02-08 20:11:14 -05:00
|
|
|
mp_start = tutil_tvnow();
|
2011-06-26 17:12:08 -04:00
|
|
|
ret = curl_multi_perform(multi, &still_running);
|
|
|
|
if (tutil_tvdiff(tutil_tvnow(), mp_start) >
|
|
|
|
MULTI_PERFORM_HANG_TIMEOUT)
|
|
|
|
mp_timedout = TRUE;
|
2003-08-19 05:37:28 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-10-20 11:39:54 -04:00
|
|
|
if (ml_timedout || mp_timedout) {
|
2011-06-26 17:12:08 -04:00
|
|
|
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
|
|
|
i = TEST_ERR_RUNS_FOREVER;
|
2006-10-19 13:29:25 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
msg = curl_multi_info_read(multi, &still_running);
|
|
|
|
if(msg)
|
|
|
|
/* this should now contain a result code from the easy handle,
|
|
|
|
get it */
|
|
|
|
i = msg->data.result;
|
|
|
|
}
|
2003-08-19 05:37:28 -04:00
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_cleanup:
|
|
|
|
|
2003-08-19 05:37:28 -04:00
|
|
|
curl_multi_cleanup(multi);
|
|
|
|
curl_easy_cleanup(curls);
|
2006-10-25 01:59:46 -04:00
|
|
|
curl_global_cleanup();
|
2003-08-19 05:37:28 -04:00
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
if(res)
|
|
|
|
i = res;
|
|
|
|
|
2003-08-19 05:37:28 -04:00
|
|
|
return i; /* return the final return code */
|
|
|
|
}
|