sourcemod/extensions/curl/curl-src/tests/libtest/lib530.c

112 lines
2.7 KiB
C
Raw Normal View History

2013-03-17 23:23:20 +01:00
/***************************************************************************
2009-01-09 00:31:00 +01:00
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2013-03-17 23:23:20 +01: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.
*
***************************************************************************/
2009-01-09 00:31:00 +01:00
#include "test.h"
#include "testutil.h"
2013-03-17 23:23:20 +01:00
#include "warnless.h"
2009-01-09 00:31:00 +01:00
#include "memdebug.h"
2013-03-17 23:23:20 +01:00
#define TEST_HANG_TIMEOUT 60 * 1000
2009-01-09 00:31:00 +01:00
#define NUM_HANDLES 4
int test(char *URL)
{
int res = 0;
CURL *curl[NUM_HANDLES];
int running;
2013-03-17 23:23:20 +01:00
CURLM *m = NULL;
int i;
2009-01-09 00:31:00 +01:00
char target_url[256];
2013-03-17 23:23:20 +01:00
for(i=0; i < NUM_HANDLES; i++)
curl[i] = NULL;
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
start_test_timing();
global_init(CURL_GLOBAL_ALL);
multi_init(m);
2009-01-09 00:31:00 +01:00
/* get NUM_HANDLES easy handles */
for(i=0; i < NUM_HANDLES; i++) {
2013-03-17 23:23:20 +01:00
/* get an easy handle */
easy_init(curl[i]);
/* specify target */
2009-01-09 00:31:00 +01:00
sprintf(target_url, "%s%04i", URL, i + 1);
target_url[sizeof(target_url) - 1] = '\0';
2013-03-17 23:23:20 +01:00
easy_setopt(curl[i], CURLOPT_URL, target_url);
2009-01-09 00:31:00 +01:00
/* go verbose */
2013-03-17 23:23:20 +01:00
easy_setopt(curl[i], CURLOPT_VERBOSE, 1L);
2009-01-09 00:31:00 +01:00
/* include headers */
2013-03-17 23:23:20 +01:00
easy_setopt(curl[i], CURLOPT_HEADER, 1L);
2009-01-09 00:31:00 +01:00
/* add handle to multi */
2013-03-17 23:23:20 +01:00
multi_add_handle(m, curl[i]);
2009-01-09 00:31:00 +01:00
}
2013-03-17 23:23:20 +01:00
multi_setopt(m, CURLMOPT_PIPELINING, 1L);
2009-01-09 00:31:00 +01:00
fprintf(stderr, "Start at URL 0\n");
2013-03-17 23:23:20 +01:00
for(;;) {
2009-01-09 00:31:00 +01:00
struct timeval interval;
2013-03-17 23:23:20 +01:00
fd_set rd, wr, exc;
int maxfd = -99;
2009-01-09 00:31:00 +01:00
interval.tv_sec = 1;
interval.tv_usec = 0;
2013-03-17 23:23:20 +01:00
multi_perform(m, &running);
abort_on_test_timeout();
if(!running)
break; /* done */
2009-01-09 00:31:00 +01:00
FD_ZERO(&rd);
FD_ZERO(&wr);
FD_ZERO(&exc);
2013-03-17 23:23:20 +01:00
multi_fdset(m, &rd, &wr, &exc, &maxfd);
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
/* At this point, maxfd is guaranteed to be greater or equal than -1. */
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
select_test(maxfd+1, &rd, &wr, &exc, &interval);
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
abort_on_test_timeout();
2009-01-09 00:31:00 +01:00
}
2013-03-17 23:23:20 +01:00
test_cleanup:
/* proper cleanup sequence - type PB */
2009-01-09 00:31:00 +01:00
for(i=0; i < NUM_HANDLES; i++) {
curl_multi_remove_handle(m, curl[i]);
curl_easy_cleanup(curl[i]);
}
curl_multi_cleanup(m);
curl_global_cleanup();
return res;
}