2006-10-06 17:19:57 -04:00
|
|
|
/*****************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2006-10-09 17:26:09 -04:00
|
|
|
/* used for test case 533, 534 and 535 */
|
2006-10-08 06:51:53 -04:00
|
|
|
|
2006-10-06 17:19:57 -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"
|
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-10-06 17:19:57 -04:00
|
|
|
int test(char *URL)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
CURL *curl;
|
|
|
|
int running;
|
|
|
|
char done=FALSE;
|
|
|
|
CURLM *m;
|
|
|
|
int current=0;
|
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-10-06 17:19:57 -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;
|
|
|
|
}
|
2006-10-06 17:19:57 -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
|
|
|
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-10-06 17:19:57 -04:00
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, URL);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
2006-10-09 02:58:05 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
|
2006-10-06 17:19:57 -04:00
|
|
|
|
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();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-10-06 17:19:57 -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();
|
|
|
|
return TEST_ERR_MAJOR_BAD;
|
|
|
|
}
|
2006-10-06 17:19:57 -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
|
|
|
|
2006-10-06 17:19:57 -04:00
|
|
|
fprintf(stderr, "Start at URL 0\n");
|
|
|
|
|
2006-10-20 11:39:54 -04:00
|
|
|
while (!done) {
|
2006-10-06 17:19:57 -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
|
|
|
|
|
|
|
while (res == CURLM_CALL_MULTI_PERFORM) {
|
2006-10-06 17:19:57 -04:00
|
|
|
res = (int)curl_multi_perform(m, &running);
|
2007-02-08 20:11:14 -05:00
|
|
|
if (tutil_tvdiff(tutil_tvnow(), mp_start) >
|
2006-10-20 11:39:54 -04:00
|
|
|
MULTI_PERFORM_HANG_TIMEOUT) {
|
|
|
|
mp_timedout = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2006-10-06 17:19:57 -04:00
|
|
|
if (running <= 0) {
|
|
|
|
if(!current++) {
|
|
|
|
fprintf(stderr, "Advancing to URL 1\n");
|
|
|
|
/* remove the handle we use */
|
|
|
|
curl_multi_remove_handle(m, curl);
|
|
|
|
|
|
|
|
/* make us re-use the same handle all the time, and try resetting
|
|
|
|
the handle first too */
|
|
|
|
curl_easy_reset(curl);
|
2006-10-08 04:50:12 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, arg2);
|
2006-10-06 17:19:57 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
2006-10-09 02:58:05 -04:00
|
|
|
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
|
2006-10-06 17:19:57 -04:00
|
|
|
|
|
|
|
/* re-add it */
|
|
|
|
res = (int)curl_multi_add_handle(m, curl);
|
|
|
|
if(res) {
|
|
|
|
fprintf(stderr, "add handle failed: %d.\n", res);
|
|
|
|
res = 243;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
done = TRUE; /* bail out */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-10-20 11:39:54 -04:00
|
|
|
if (mp_timedout || done)
|
2006-10-06 17:19:57 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (select_test(max_fd+1, &rd, &wr, &exc, &interval) == -1) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-10-06 17:19:57 -04:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_multi_cleanup(m);
|
|
|
|
curl_global_cleanup();
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2006-10-06 17:19:57 -04:00
|
|
|
return res;
|
|
|
|
}
|