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

115 lines
2.9 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
/*
* Source code in here hugely as reported in bug report 651464 by
* Christopher R. Palmer.
*
* Use multi interface to get document over proxy with bad port number.
* This caused the interface to "hang" in libcurl 7.10.2.
*/
int test(char *URL)
{
2013-03-17 23:23:20 +01:00
CURL *c = NULL;
int res = 0;
CURLM *m = NULL;
2009-01-09 00:31:00 +01:00
fd_set rd, wr, exc;
int running;
2013-03-17 23:23:20 +01:00
start_test_timing();
global_init(CURL_GLOBAL_ALL);
easy_init(c);
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
/* The point here is that there must not be anything running on the given
2009-01-09 00:31:00 +01:00
proxy port */
2013-03-17 23:23:20 +01:00
if (libtest_arg2)
easy_setopt(c, CURLOPT_PROXY, libtest_arg2);
easy_setopt(c, CURLOPT_URL, URL);
easy_setopt(c, CURLOPT_VERBOSE, 1L);
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
multi_init(m);
2009-01-09 00:31:00 +01:00
2013-03-17 23:23:20 +01:00
multi_add_handle(m, c);
2009-01-09 00:31:00 +01:00
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
int maxfd = -99;
2009-01-09 00:31:00 +01:00
interval.tv_sec = 1;
interval.tv_usec = 0;
fprintf(stderr, "curl_multi_perform()\n");
2013-03-17 23:23:20 +01:00
multi_perform(m, &running);
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
if(!running) {
/* This is where this code is expected to reach */
int numleft;
CURLMsg *msg = curl_multi_info_read(m, &numleft);
fprintf(stderr, "Expected: not running\n");
if(msg && !numleft)
2013-03-17 23:23:20 +01:00
res = TEST_ERR_SUCCESS; /* this is where we should be */
2009-01-09 00:31:00 +01:00
else
2013-03-17 23:23:20 +01:00
res = TEST_ERR_FAILURE; /* not correct */
break; /* done */
2009-01-09 00:31:00 +01:00
}
2013-03-17 23:23:20 +01:00
fprintf(stderr, "running == %d\n", running);
2009-01-09 00:31:00 +01:00
FD_ZERO(&rd);
FD_ZERO(&wr);
FD_ZERO(&exc);
fprintf(stderr, "curl_multi_fdset()\n");
2013-03-17 23:23:20 +01:00
multi_fdset(m, &rd, &wr, &exc, &maxfd);
/* At this point, maxfd is guaranteed to be greater or equal than -1. */
select_test(maxfd+1, &rd, &wr, &exc, &interval);
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 PA */
2009-01-09 00:31:00 +01:00
curl_multi_remove_handle(m, c);
curl_multi_cleanup(m);
2013-03-17 23:23:20 +01:00
curl_easy_cleanup(c);
2009-01-09 00:31:00 +01:00
curl_global_cleanup();
2013-03-17 23:23:20 +01:00
return res;
2009-01-09 00:31:00 +01:00
}