etlegacy-libs/curl/tests/unit/unit1653.c

193 lines
5.4 KiB
C
Raw Normal View History

2019-01-03 15:09:10 +00:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2019-12-20 11:07:02 +00:00
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
2019-01-03 15:09:10 +00:00
*
* 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.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.
*
***************************************************************************/
#include "curlcheck.h"
#include "urldata.h"
#include "curl/urlapi.h"
#include "urlapi-int.h"
static CURLU *u;
static CURLcode
unit_setup(void)
{
return CURLE_OK;
}
static void
unit_stop(void)
{
curl_global_cleanup();
}
2019-12-20 11:07:02 +00:00
#define free_and_clear(x) free(x); x = NULL
2019-01-03 15:09:10 +00:00
2019-12-20 11:07:02 +00:00
UNITTEST_START
{
2019-01-03 15:09:10 +00:00
CURLUcode ret;
2019-12-20 11:07:02 +00:00
char *ipv6port = NULL;
2019-01-03 15:09:10 +00:00
char *portnum;
/* Valid IPv6 */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15]");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
ret = curl_url_get(u, CURLUPART_PORT, &portnum, CURLU_NO_DEFAULT_PORT);
fail_unless(ret != CURLUE_OK, "curl_url_get portnum returned something");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Invalid IPv6 */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15|");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret != CURLUE_OK, "Curl_parse_port true on error");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff;fea7:da15]:80");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret != CURLUE_OK, "Curl_parse_port true on error");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Valid IPv6 with zone index and port number */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15%25eth3]:80");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
ret = curl_url_get(u, CURLUPART_PORT, &portnum, 0);
fail_unless(ret == CURLUE_OK, "curl_url_get portnum returned error");
2019-12-20 11:07:02 +00:00
fail_unless(portnum && !strcmp(portnum, "80"), "Check portnumber");
2019-01-03 15:09:10 +00:00
curl_free(portnum);
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
curl_url_cleanup(u);
/* Valid IPv6 with zone index without port number */
u = curl_url();
if(!u)
goto fail;
ipv6port = strdup("[fe80::250:56ff:fea7:da15%25eth3]");
if(!ipv6port)
goto fail;
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Valid IPv6 with port number */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15]:81");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
ret = curl_url_get(u, CURLUPART_PORT, &portnum, 0);
fail_unless(ret == CURLUE_OK, "curl_url_get portnum returned error");
2019-12-20 11:07:02 +00:00
fail_unless(portnum && !strcmp(portnum, "81"), "Check portnumber");
2019-01-03 15:09:10 +00:00
curl_free(portnum);
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Valid IPv6 with syntax error in the port number */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15];81");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret != CURLUE_OK, "Curl_parse_port true on error");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15]80");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret != CURLUE_OK, "Curl_parse_port true on error");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
curl_url_cleanup(u);
/* Valid IPv6 with no port after the colon, should use default */
u = curl_url();
if(!u)
goto fail;
ipv6port = strdup("[fe80::250:56ff:fea7:da15]:");
if(!ipv6port)
goto fail;
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Incorrect zone index syntax */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
ipv6port = strdup("[fe80::250:56ff:fea7:da15!25eth3]:80");
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
fail_unless(ret != CURLUE_OK, "Curl_parse_port returned non-error");
2019-12-20 11:07:02 +00:00
free_and_clear(ipv6port);
2019-01-03 15:09:10 +00:00
curl_url_cleanup(u);
/* Non percent-encoded zone index */
u = curl_url();
2019-12-20 11:07:02 +00:00
if(!u)
goto fail;
2019-01-03 15:09:10 +00:00
ipv6port = strdup("[fe80::250:56ff:fea7:da15%eth3]:80");
2019-12-20 11:07:02 +00:00
if(!ipv6port)
goto fail;
2019-01-03 15:09:10 +00:00
ret = Curl_parse_port(u, ipv6port);
2019-12-20 11:07:02 +00:00
fail_unless(ret == CURLUE_OK, "Curl_parse_port returned error");
fail:
2019-01-03 15:09:10 +00:00
free(ipv6port);
curl_url_cleanup(u);
2019-12-20 11:07:02 +00:00
}
2019-01-03 15:09:10 +00:00
UNITTEST_STOP