mirror of
https://github.com/curl/curl.git
synced 2024-12-21 06:50:10 +08:00
911d37bb2f
The test otherwise could do just about anything (except leak memory in debug mode) and its bad behaviour wouldn't be detected. Now, check the resulting cookie file to ensure the cookies are still there. Closes #12041
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 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 https://curl.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.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
#include "test.h"
|
|
|
|
#include "testutil.h"
|
|
#include "timediff.h"
|
|
#include "warnless.h"
|
|
#include "memdebug.h"
|
|
|
|
int test(char *URL)
|
|
{
|
|
CURLcode res = CURLE_OK;
|
|
CURL *ch = NULL;
|
|
global_init(CURL_GLOBAL_ALL);
|
|
|
|
easy_init(ch);
|
|
|
|
easy_setopt(ch, CURLOPT_URL, URL);
|
|
easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2);
|
|
res = curl_easy_perform(ch);
|
|
if(res)
|
|
goto test_cleanup;
|
|
|
|
curl_easy_reset(ch);
|
|
|
|
easy_setopt(ch, CURLOPT_URL, URL);
|
|
easy_setopt(ch, CURLOPT_COOKIEFILE, libtest_arg2);
|
|
easy_setopt(ch, CURLOPT_COOKIEJAR, libtest_arg3);
|
|
res = curl_easy_perform(ch);
|
|
|
|
test_cleanup:
|
|
curl_easy_cleanup(ch);
|
|
curl_global_cleanup();
|
|
|
|
return (int)res;
|
|
}
|