2011-03-12 18:18:04 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
/*
|
|
|
|
* This test case is based on the sample code provided by Saqib Ali
|
|
|
|
* http://curl.haxx.se/mail/lib-2011-03/0066.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2011-09-06 11:47:54 -04:00
|
|
|
|
2011-03-12 18:18:04 -05:00
|
|
|
int test(char *URL)
|
|
|
|
{
|
2011-03-15 07:21:58 -04:00
|
|
|
int stillRunning;
|
2011-10-21 10:26:18 -04:00
|
|
|
CURLM* multiHandle = NULL;
|
|
|
|
CURL* curl = NULL;
|
|
|
|
int res = 0;
|
|
|
|
|
|
|
|
global_init(CURL_GLOBAL_ALL);
|
|
|
|
|
|
|
|
multi_init(multiHandle);
|
|
|
|
|
|
|
|
easy_init(curl);
|
|
|
|
|
|
|
|
easy_setopt(curl, CURLOPT_USERPWD, libtest_arg2);
|
|
|
|
easy_setopt(curl, CURLOPT_SSH_PUBLIC_KEYFILE, "curl_client_key.pub");
|
|
|
|
easy_setopt(curl, CURLOPT_SSH_PRIVATE_KEYFILE, "curl_client_key");
|
|
|
|
|
|
|
|
easy_setopt(curl, CURLOPT_UPLOAD, 1L);
|
|
|
|
easy_setopt(curl, CURLOPT_VERBOSE, 1L);
|
|
|
|
|
|
|
|
easy_setopt(curl, CURLOPT_URL, URL);
|
|
|
|
easy_setopt(curl, CURLOPT_INFILESIZE, (long)5);
|
|
|
|
|
|
|
|
multi_add_handle(multiHandle, curl);
|
2011-03-12 18:18:04 -05:00
|
|
|
|
2011-09-06 11:56:39 -04:00
|
|
|
/* this tests if removing an easy handle immediately after multi
|
2011-09-06 13:59:42 -04:00
|
|
|
perform has been called succeeds or not. */
|
2011-03-12 18:18:04 -05:00
|
|
|
|
2011-09-06 13:59:42 -04:00
|
|
|
fprintf(stderr, "curl_multi_perform()...\n");
|
2011-10-21 10:26:18 -04:00
|
|
|
|
|
|
|
multi_perform(multiHandle, &stillRunning);
|
|
|
|
|
|
|
|
fprintf(stderr, "curl_multi_perform() succeeded\n");
|
2011-09-06 11:56:39 -04:00
|
|
|
|
2011-09-06 13:59:42 -04:00
|
|
|
fprintf(stderr, "curl_multi_remove_handle()...\n");
|
|
|
|
res = (int) curl_multi_remove_handle(multiHandle, curl);
|
2011-09-06 11:56:39 -04:00
|
|
|
if(res)
|
|
|
|
fprintf(stderr, "curl_multi_remove_handle() failed, "
|
|
|
|
"with code %d\n", res);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "curl_multi_remove_handle() succeeded\n");
|
2011-03-12 18:18:04 -05:00
|
|
|
|
|
|
|
test_cleanup:
|
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
/* undocumented cleanup sequence - type UB */
|
|
|
|
|
2011-03-12 18:18:04 -05:00
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
curl_multi_cleanup(multiHandle);
|
2011-09-06 11:56:39 -04:00
|
|
|
curl_global_cleanup();
|
2011-03-12 18:18:04 -05:00
|
|
|
|
2011-10-21 10:26:18 -04:00
|
|
|
return res;
|
2011-03-12 18:18:04 -05:00
|
|
|
}
|