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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2002-12-13 08:40:25 -05:00
|
|
|
#include "test.h"
|
|
|
|
|
2007-02-08 20:11:14 -05:00
|
|
|
#include "testutil.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "warnless.h"
|
|
|
|
#include "memdebug.h"
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
#define TEST_HANG_TIMEOUT 60 * 1000
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2002-12-13 08:40:25 -05:00
|
|
|
/*
|
|
|
|
* Get a single URL without select().
|
|
|
|
*/
|
|
|
|
|
2004-02-05 07:34:17 -05:00
|
|
|
int test(char *URL)
|
2002-12-13 08:40:25 -05:00
|
|
|
{
|
2011-10-21 10:26:18 -04:00
|
|
|
CURL *c = NULL;
|
2010-02-05 13:07:19 -05:00
|
|
|
CURLM *m = NULL;
|
2006-10-25 01:59:46 -04:00
|
|
|
int res = 0;
|
2011-10-21 10:26:18 -04:00
|
|
|
int running;
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
start_test_timing();
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
global_init(CURL_GLOBAL_ALL);
|
2002-12-13 08:40:25 -05:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
easy_init(c);
|
2002-12-13 08:40:25 -05:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
easy_setopt(c, CURLOPT_URL, URL);
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_init(m);
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_add_handle(m, c);
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
for(;;) {
|
|
|
|
struct timeval timeout;
|
2011-08-26 05:10:58 -04:00
|
|
|
fd_set fdread, fdwrite, fdexcep;
|
2011-10-21 10:26:18 -04:00
|
|
|
int maxfd = -99;
|
|
|
|
|
|
|
|
timeout.tv_sec = 0;
|
|
|
|
timeout.tv_usec = 100000L; /* 100 ms */
|
|
|
|
|
|
|
|
multi_perform(m, &running);
|
|
|
|
|
|
|
|
abort_on_test_timeout();
|
|
|
|
|
|
|
|
if(!running)
|
|
|
|
break; /* done */
|
2011-08-26 05:10:58 -04:00
|
|
|
|
|
|
|
FD_ZERO(&fdread);
|
|
|
|
FD_ZERO(&fdwrite);
|
|
|
|
FD_ZERO(&fdexcep);
|
2006-10-25 01:59:46 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_fdset(m, &fdread, &fdwrite, &fdexcep, &maxfd);
|
|
|
|
|
|
|
|
/* At this point, maxfd is guaranteed to be greater or equal than -1. */
|
|
|
|
|
|
|
|
select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
|
|
|
|
|
|
|
|
abort_on_test_timeout();
|
2006-10-25 01:59:46 -04:00
|
|
|
}
|
|
|
|
|
2010-02-05 13:07:19 -05:00
|
|
|
test_cleanup:
|
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
/* proper cleanup sequence - type PA */
|
|
|
|
|
|
|
|
curl_multi_remove_handle(m, c);
|
|
|
|
curl_multi_cleanup(m);
|
2002-12-13 08:40:25 -05:00
|
|
|
curl_easy_cleanup(c);
|
2006-10-25 01:59:46 -04:00
|
|
|
curl_global_cleanup();
|
2002-12-13 08:40:25 -05:00
|
|
|
|
2004-02-09 03:28:00 -05:00
|
|
|
return res;
|
2002-12-13 08:40:25 -05:00
|
|
|
}
|
|
|
|
|