2018-07-13 23:17:19 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2018-07-13 23:17:19 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2018-07-13 23:17:19 +08: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.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2018-07-13 23:17:19 +08:00
|
|
|
***************************************************************************/
|
|
|
|
#include "curlcheck.h"
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include "url.h"
|
|
|
|
|
|
|
|
#include "memdebug.h" /* LAST include file */
|
|
|
|
|
|
|
|
static CURLcode unit_setup(void)
|
|
|
|
{
|
2022-07-21 07:04:39 +08:00
|
|
|
CURLcode res = CURLE_OK;
|
2022-04-18 14:45:14 +08:00
|
|
|
global_init(CURL_GLOBAL_ALL);
|
|
|
|
return res;
|
2018-07-13 23:17:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void unit_stop(void)
|
|
|
|
{
|
2022-04-18 14:45:14 +08:00
|
|
|
curl_global_cleanup();
|
2018-07-13 23:17:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
UNITTEST_START
|
|
|
|
{
|
2024-05-12 03:36:05 +08:00
|
|
|
CURLcode rc;
|
2018-07-13 23:17:19 +08:00
|
|
|
struct Curl_easy *empty;
|
|
|
|
const char *hostname = "hostname";
|
|
|
|
enum dupstring i;
|
2024-05-10 21:32:57 +08:00
|
|
|
char *userstr = NULL;
|
|
|
|
char *passwdstr = NULL;
|
2018-07-13 23:17:19 +08:00
|
|
|
|
|
|
|
bool async = FALSE;
|
|
|
|
bool protocol_connect = FALSE;
|
|
|
|
|
|
|
|
rc = Curl_open(&empty);
|
2019-12-13 06:49:00 +08:00
|
|
|
if(rc)
|
|
|
|
goto unit_test_abort;
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_OK, "Curl_open() failed");
|
|
|
|
|
2019-01-03 01:04:58 +08:00
|
|
|
rc = Curl_connect(empty, &async, &protocol_connect);
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_URL_MALFORMAT,
|
|
|
|
"Curl_connect() failed to return CURLE_URL_MALFORMAT");
|
|
|
|
|
|
|
|
fail_unless(empty->magic == CURLEASY_MAGIC_NUMBER,
|
|
|
|
"empty->magic should be equal to CURLEASY_MAGIC_NUMBER");
|
|
|
|
|
|
|
|
/* double invoke to ensure no dependency on internal state */
|
2019-01-03 01:04:58 +08:00
|
|
|
rc = Curl_connect(empty, &async, &protocol_connect);
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_URL_MALFORMAT,
|
|
|
|
"Curl_connect() failed to return CURLE_URL_MALFORMAT");
|
|
|
|
|
|
|
|
rc = Curl_init_userdefined(empty);
|
|
|
|
fail_unless(rc == CURLE_OK, "Curl_userdefined() failed");
|
|
|
|
|
2019-01-03 01:04:58 +08:00
|
|
|
rc = Curl_init_do(empty, empty->conn);
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_OK, "Curl_init_do() failed");
|
|
|
|
|
2024-05-10 21:32:57 +08:00
|
|
|
rc = Curl_parse_login_details(hostname, strlen(hostname),
|
|
|
|
&userstr, &passwdstr, NULL);
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_OK,
|
|
|
|
"Curl_parse_login_details() failed");
|
2024-05-10 21:32:57 +08:00
|
|
|
free(userstr);
|
|
|
|
free(passwdstr);
|
2018-07-13 23:17:19 +08:00
|
|
|
|
|
|
|
Curl_freeset(empty);
|
|
|
|
for(i = (enum dupstring)0; i < STRING_LAST; i++) {
|
|
|
|
fail_unless(empty->set.str[i] == NULL,
|
|
|
|
"Curl_free() did not set to NULL");
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:28:05 +08:00
|
|
|
rc = Curl_close(&empty);
|
2018-07-13 23:17:19 +08:00
|
|
|
fail_unless(rc == CURLE_OK, "Curl_close() failed");
|
|
|
|
|
|
|
|
}
|
|
|
|
UNITTEST_STOP
|