2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
2006-09-07 17:49:20 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-03-26 11:02:22 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2006-09-07 17:49:20 -04:00
|
|
|
/*
|
|
|
|
* This code sets up multiple easy handles that transfer a single file from
|
|
|
|
* the same URL, in a serial manner after each other. Due to the connection
|
|
|
|
* sharing within the multi handle all transfers are performed on the same
|
|
|
|
* persistent connection.
|
|
|
|
*
|
2006-10-04 17:11:08 -04:00
|
|
|
* This source code is used for lib526, lib527 and lib532 with only #ifdefs
|
|
|
|
* controlling the small differences.
|
|
|
|
*
|
|
|
|
* - lib526 closes all easy handles after
|
2017-03-26 11:02:22 -04:00
|
|
|
* they all have transferred the file over the single connection
|
2006-10-04 17:11:08 -04:00
|
|
|
* - lib527 closes each easy handle after each single transfer.
|
|
|
|
* - lib532 uses only a single easy handle that is removed, reset and then
|
|
|
|
* re-added for each transfer
|
|
|
|
*
|
|
|
|
* Test case 526, 527 and 532 use FTP, while test 528 uses the lib526 tool but
|
|
|
|
* with HTTP.
|
2006-09-07 17:49:20 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
#include <fcntl.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-20 11:39:54 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
#define TEST_HANG_TIMEOUT 60 * 1000
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
#define NUM_HANDLES 4
|
|
|
|
|
|
|
|
int test(char *URL)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
CURL *curl[NUM_HANDLES];
|
|
|
|
int running;
|
2010-02-05 13:07:19 -05:00
|
|
|
CURLM *m = NULL;
|
2011-10-21 10:26:18 -04:00
|
|
|
int current = 0;
|
|
|
|
int i;
|
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < NUM_HANDLES; i++)
|
2011-10-21 10:26:18 -04:00
|
|
|
curl[i] = NULL;
|
|
|
|
|
|
|
|
start_test_timing();
|
|
|
|
|
|
|
|
global_init(CURL_GLOBAL_ALL);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
/* get NUM_HANDLES easy handles */
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < NUM_HANDLES; i++) {
|
2011-10-21 10:26:18 -04:00
|
|
|
easy_init(curl[i]);
|
|
|
|
/* specify target */
|
|
|
|
easy_setopt(curl[i], CURLOPT_URL, URL);
|
2006-09-07 17:49:20 -04:00
|
|
|
/* go verbose */
|
2011-10-21 10:26:18 -04:00
|
|
|
easy_setopt(curl[i], CURLOPT_VERBOSE, 1L);
|
2006-10-25 01:59:46 -04:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_init(m);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_add_handle(m, curl[current]);
|
2006-10-20 11:39:54 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
fprintf(stderr, "Start at URL 0\n");
|
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
for(;;) {
|
2006-09-07 17:49:20 -04:00
|
|
|
struct timeval interval;
|
2011-10-21 10:26:18 -04:00
|
|
|
fd_set rd, wr, exc;
|
|
|
|
int maxfd = -99;
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
interval.tv_sec = 1;
|
|
|
|
interval.tv_usec = 0;
|
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_perform(m, &running);
|
|
|
|
|
|
|
|
abort_on_test_timeout();
|
|
|
|
|
|
|
|
if(!running) {
|
2006-09-07 17:49:20 -04:00
|
|
|
#ifdef LIB527
|
2011-06-26 17:12:08 -04:00
|
|
|
/* NOTE: this code does not remove the handle from the multi handle
|
|
|
|
here, which would be the nice, sane and documented way of working.
|
|
|
|
This however tests that the API survives this abuse gracefully. */
|
|
|
|
curl_easy_cleanup(curl[current]);
|
2011-10-21 10:26:18 -04:00
|
|
|
curl[current] = NULL;
|
2006-09-07 17:49:20 -04:00
|
|
|
#endif
|
2011-06-26 17:12:08 -04:00
|
|
|
if(++current < NUM_HANDLES) {
|
|
|
|
fprintf(stderr, "Advancing to URL %d\n", current);
|
2006-10-04 17:11:08 -04:00
|
|
|
#ifdef LIB532
|
2011-06-26 17:12:08 -04:00
|
|
|
/* first remove the only handle we use */
|
|
|
|
curl_multi_remove_handle(m, curl[0]);
|
2006-10-04 17:11:08 -04:00
|
|
|
|
2011-06-26 17:12:08 -04:00
|
|
|
/* make us re-use the same handle all the time, and try resetting
|
|
|
|
the handle first too */
|
|
|
|
curl_easy_reset(curl[0]);
|
2011-10-21 10:26:18 -04:00
|
|
|
easy_setopt(curl[0], CURLOPT_URL, URL);
|
|
|
|
/* go verbose */
|
|
|
|
easy_setopt(curl[0], CURLOPT_VERBOSE, 1L);
|
2006-10-04 17:11:08 -04:00
|
|
|
|
2011-06-26 17:12:08 -04:00
|
|
|
/* re-add it */
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_add_handle(m, curl[0]);
|
2006-10-04 17:11:08 -04:00
|
|
|
#else
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_add_handle(m, curl[current]);
|
2006-10-04 17:11:08 -04:00
|
|
|
#endif
|
2011-06-26 17:12:08 -04:00
|
|
|
}
|
|
|
|
else {
|
2011-10-21 10:26:18 -04:00
|
|
|
break; /* done */
|
2006-09-07 17:49:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FD_ZERO(&rd);
|
|
|
|
FD_ZERO(&wr);
|
|
|
|
FD_ZERO(&exc);
|
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
multi_fdset(m, &rd, &wr, &exc, &maxfd);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
/* At this point, maxfd is guaranteed to be greater or equal than -1. */
|
|
|
|
|
2017-09-09 17:55:08 -04:00
|
|
|
select_test(maxfd + 1, &rd, &wr, &exc, &interval);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
abort_on_test_timeout();
|
2006-10-19 13:29:25 -04:00
|
|
|
}
|
|
|
|
|
2010-02-05 14:24:22 -05:00
|
|
|
test_cleanup:
|
2010-02-05 13:07:19 -05:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
#if defined(LIB526)
|
|
|
|
|
|
|
|
/* test 526 and 528 */
|
|
|
|
/* proper cleanup sequence - type PB */
|
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < NUM_HANDLES; i++) {
|
2011-10-21 10:26:18 -04:00
|
|
|
curl_multi_remove_handle(m, curl[i]);
|
2006-09-07 17:49:20 -04:00
|
|
|
curl_easy_cleanup(curl[i]);
|
|
|
|
}
|
2011-10-21 10:26:18 -04:00
|
|
|
curl_multi_cleanup(m);
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
|
|
|
#elif defined(LIB527)
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
/* test 527 */
|
|
|
|
|
|
|
|
/* Upon non-failure test flow the easy's have already been cleanup'ed. In
|
|
|
|
case there is a failure we arrive here with easy's that have not been
|
|
|
|
cleanup'ed yet, in this case we have to cleanup them or otherwise these
|
|
|
|
will be leaked, let's use undocumented cleanup sequence - type UB */
|
|
|
|
|
|
|
|
if(res)
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < NUM_HANDLES; i++)
|
2011-10-21 10:26:18 -04:00
|
|
|
curl_easy_cleanup(curl[i]);
|
|
|
|
|
|
|
|
curl_multi_cleanup(m);
|
|
|
|
curl_global_cleanup();
|
|
|
|
|
|
|
|
#elif defined(LIB532)
|
|
|
|
|
|
|
|
/* test 532 */
|
|
|
|
/* undocumented cleanup sequence - type UB */
|
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < NUM_HANDLES; i++)
|
2011-10-21 10:26:18 -04:00
|
|
|
curl_easy_cleanup(curl[i]);
|
|
|
|
curl_multi_cleanup(m);
|
2006-09-07 17:49:20 -04:00
|
|
|
curl_global_cleanup();
|
2011-10-21 10:26:18 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
return res;
|
|
|
|
}
|