Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
393dd49e
Commit
393dd49e
authored
Aug 02, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v1.7_proxy' into maint/v1.7
parents
0ddc0776
38a3a371
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1172 additions
and
177 deletions
+1172
-177
src/libgit2/transports/http.c
+7
-1
src/libgit2/transports/httpclient.c
+5
-0
src/libgit2/transports/winhttp.c
+2
-2
src/util/net.c
+264
-157
src/util/net.h
+8
-0
tests/libgit2/online/clone.c
+120
-17
tests/util/url/http.c
+752
-0
tests/util/url/parse.c
+14
-0
No files found.
src/libgit2/transports/http.c
View file @
393dd49e
...
@@ -335,9 +335,15 @@ static int lookup_proxy(
...
@@ -335,9 +335,15 @@ static int lookup_proxy(
}
}
if
(
!
proxy
||
if
(
!
proxy
||
(
error
=
git_net_url_parse
(
&
transport
->
proxy
.
url
,
proxy
))
<
0
)
(
error
=
git_net_url_parse
_http
(
&
transport
->
proxy
.
url
,
proxy
))
<
0
)
goto
done
;
goto
done
;
if
(
!
git_net_url_valid
(
&
transport
->
proxy
.
url
))
{
git_error_set
(
GIT_ERROR_HTTP
,
"invalid URL: '%s'"
,
proxy
);
error
=
-
1
;
goto
done
;
}
*
out_use
=
true
;
*
out_use
=
true
;
done
:
done
:
...
...
src/libgit2/transports/httpclient.c
View file @
393dd49e
...
@@ -837,6 +837,11 @@ GIT_INLINE(int) server_setup_from_url(
...
@@ -837,6 +837,11 @@ GIT_INLINE(int) server_setup_from_url(
git_http_server
*
server
,
git_http_server
*
server
,
git_net_url
*
url
)
git_net_url
*
url
)
{
{
GIT_ASSERT_ARG
(
url
);
GIT_ASSERT_ARG
(
url
->
scheme
);
GIT_ASSERT_ARG
(
url
->
host
);
GIT_ASSERT_ARG
(
url
->
port
);
if
(
!
server
->
url
.
scheme
||
strcmp
(
server
->
url
.
scheme
,
url
->
scheme
)
||
if
(
!
server
->
url
.
scheme
||
strcmp
(
server
->
url
.
scheme
,
url
->
scheme
)
||
!
server
->
url
.
host
||
strcmp
(
server
->
url
.
host
,
url
->
host
)
||
!
server
->
url
.
host
||
strcmp
(
server
->
url
.
host
,
url
->
host
)
||
!
server
->
url
.
port
||
strcmp
(
server
->
url
.
port
,
url
->
port
))
{
!
server
->
url
.
port
||
strcmp
(
server
->
url
.
port
,
url
->
port
))
{
...
...
src/libgit2/transports/winhttp.c
View file @
393dd49e
...
@@ -443,10 +443,10 @@ static int winhttp_stream_connect(winhttp_stream *s)
...
@@ -443,10 +443,10 @@ static int winhttp_stream_connect(winhttp_stream *s)
git_net_url_dispose
(
&
t
->
proxy
.
url
);
git_net_url_dispose
(
&
t
->
proxy
.
url
);
if
((
error
=
git_net_url_parse
(
&
t
->
proxy
.
url
,
proxy_url
))
<
0
)
if
((
error
=
git_net_url_parse
_http
(
&
t
->
proxy
.
url
,
proxy_url
))
<
0
)
goto
on_error
;
goto
on_error
;
if
(
strcmp
(
t
->
proxy
.
url
.
scheme
,
"http"
)
!=
0
&&
strcmp
(
t
->
proxy
.
url
.
scheme
,
"https"
)
!=
0
)
{
if
(
!
git_net_url_valid
(
&
t
->
proxy
.
url
)
)
{
git_error_set
(
GIT_ERROR_HTTP
,
"invalid URL: '%s'"
,
proxy_url
);
git_error_set
(
GIT_ERROR_HTTP
,
"invalid URL: '%s'"
,
proxy_url
);
error
=
-
1
;
error
=
-
1
;
goto
on_error
;
goto
on_error
;
...
...
src/util/net.c
View file @
393dd49e
...
@@ -19,6 +19,30 @@
...
@@ -19,6 +19,30 @@
#define DEFAULT_PORT_GIT "9418"
#define DEFAULT_PORT_GIT "9418"
#define DEFAULT_PORT_SSH "22"
#define DEFAULT_PORT_SSH "22"
#define GIT_NET_URL_PARSER_INIT { 0 }
typedef
struct
{
int
hierarchical
:
1
;
const
char
*
scheme
;
const
char
*
user
;
const
char
*
password
;
const
char
*
host
;
const
char
*
port
;
const
char
*
path
;
const
char
*
query
;
const
char
*
fragment
;
size_t
scheme_len
;
size_t
user_len
;
size_t
password_len
;
size_t
host_len
;
size_t
port_len
;
size_t
path_len
;
size_t
query_len
;
size_t
fragment_len
;
}
git_net_url_parser
;
bool
git_net_hostname_matches_cert
(
bool
git_net_hostname_matches_cert
(
const
char
*
hostname
,
const
char
*
hostname
,
const
char
*
pattern
)
const
char
*
pattern
)
...
@@ -63,6 +87,12 @@ bool git_net_hostname_matches_cert(
...
@@ -63,6 +87,12 @@ bool git_net_hostname_matches_cert(
return
false
;
return
false
;
}
}
#define is_valid_scheme_char(c) \
(((c) >= 'a' && (c) <= 'z') || \
((c) >= 'A' && (c) <= 'Z') || \
((c) >= '0' && (c) <= '9') || \
(c) == '+' || (c) == '-' || (c) == '.')
bool
git_net_str_is_url
(
const
char
*
str
)
bool
git_net_str_is_url
(
const
char
*
str
)
{
{
const
char
*
c
;
const
char
*
c
;
...
@@ -71,10 +101,7 @@ bool git_net_str_is_url(const char *str)
...
@@ -71,10 +101,7 @@ bool git_net_str_is_url(const char *str)
if
(
*
c
==
':'
&&
*
(
c
+
1
)
==
'/'
&&
*
(
c
+
2
)
==
'/'
)
if
(
*
c
==
':'
&&
*
(
c
+
1
)
==
'/'
&&
*
(
c
+
2
)
==
'/'
)
return
true
;
return
true
;
if
((
*
c
<
'a'
||
*
c
>
'z'
)
&&
if
(
!
is_valid_scheme_char
(
*
c
))
(
*
c
<
'A'
||
*
c
>
'Z'
)
&&
(
*
c
<
'0'
||
*
c
>
'9'
)
&&
(
*
c
!=
'+'
&&
*
c
!=
'-'
&&
*
c
!=
'.'
))
break
;
break
;
}
}
...
@@ -97,6 +124,16 @@ static const char *default_port_for_scheme(const char *scheme)
...
@@ -97,6 +124,16 @@ static const char *default_port_for_scheme(const char *scheme)
return
NULL
;
return
NULL
;
}
}
static
bool
is_ssh_scheme
(
const
char
*
scheme
,
size_t
scheme_len
)
{
if
(
!
scheme_len
)
return
false
;
return
strncasecmp
(
scheme
,
"ssh"
,
scheme_len
)
==
0
||
strncasecmp
(
scheme
,
"ssh+git"
,
scheme_len
)
==
0
||
strncasecmp
(
scheme
,
"git+ssh"
,
scheme_len
)
==
0
;
}
int
git_net_url_dup
(
git_net_url
*
out
,
git_net_url
*
in
)
int
git_net_url_dup
(
git_net_url
*
out
,
git_net_url
*
in
)
{
{
if
(
in
->
scheme
)
{
if
(
in
->
scheme
)
{
...
@@ -144,12 +181,9 @@ static int url_invalid(const char *message)
...
@@ -144,12 +181,9 @@ static int url_invalid(const char *message)
}
}
static
int
url_parse_authority
(
static
int
url_parse_authority
(
const
char
**
user_start
,
size_t
*
user_len
,
git_net_url_parser
*
parser
,
const
char
**
password_start
,
size_t
*
password_len
,
const
char
*
authority
,
const
char
**
host_start
,
size_t
*
host_len
,
size_t
len
)
const
char
**
port_start
,
size_t
*
port_len
,
const
char
*
authority_start
,
size_t
len
,
const
char
*
scheme_start
,
size_t
scheme_len
)
{
{
const
char
*
c
,
*
hostport_end
,
*
host_end
=
NULL
,
const
char
*
c
,
*
hostport_end
,
*
host_end
=
NULL
,
*
userpass_end
,
*
user_end
=
NULL
;
*
userpass_end
,
*
user_end
=
NULL
;
...
@@ -165,14 +199,14 @@ static int url_parse_authority(
...
@@ -165,14 +199,14 @@ static int url_parse_authority(
* walk the authority backwards so that we can parse google code's
* walk the authority backwards so that we can parse google code's
* ssh urls that are not rfc compliant and allow @ in the username
* ssh urls that are not rfc compliant and allow @ in the username
*/
*/
for
(
hostport_end
=
authority
_start
+
len
,
c
=
hostport_end
-
1
;
for
(
hostport_end
=
authority
+
len
,
c
=
hostport_end
-
1
;
c
>=
authority
_start
&&
!
user_end
;
c
>=
authority
&&
!
user_end
;
c
--
)
{
c
--
)
{
switch
(
state
)
{
switch
(
state
)
{
case
HOSTPORT
:
case
HOSTPORT
:
if
(
*
c
==
':'
)
{
if
(
*
c
==
':'
)
{
*
port_sta
rt
=
c
+
1
;
parser
->
po
rt
=
c
+
1
;
*
port_len
=
hostport_end
-
*
port_sta
rt
;
parser
->
port_len
=
hostport_end
-
parser
->
po
rt
;
host_end
=
c
;
host_end
=
c
;
state
=
HOST
;
state
=
HOST
;
break
;
break
;
...
@@ -200,9 +234,10 @@ static int url_parse_authority(
...
@@ -200,9 +234,10 @@ static int url_parse_authority(
}
}
else
if
(
*
c
==
'@'
)
{
else
if
(
*
c
==
'@'
)
{
*
host_start
=
c
+
1
;
parser
->
host
=
c
+
1
;
*
host_len
=
host_end
?
host_end
-
*
host_start
:
parser
->
host_len
=
host_end
?
hostport_end
-
*
host_start
;
host_end
-
parser
->
host
:
hostport_end
-
parser
->
host
;
userpass_end
=
c
;
userpass_end
=
c
;
state
=
USERPASS
;
state
=
USERPASS
;
}
}
...
@@ -215,8 +250,8 @@ static int url_parse_authority(
...
@@ -215,8 +250,8 @@ static int url_parse_authority(
case
IPV6
:
case
IPV6
:
if
(
*
c
==
'['
)
{
if
(
*
c
==
'['
)
{
*
host_star
t
=
c
+
1
;
parser
->
hos
t
=
c
+
1
;
*
host_len
=
host_end
-
*
host_star
t
;
parser
->
host_len
=
host_end
-
parser
->
hos
t
;
state
=
HOST_END
;
state
=
HOST_END
;
}
}
...
@@ -240,12 +275,12 @@ static int url_parse_authority(
...
@@ -240,12 +275,12 @@ static int url_parse_authority(
case
USERPASS
:
case
USERPASS
:
if
(
*
c
==
'@'
&&
if
(
*
c
==
'@'
&&
strncasecmp
(
scheme_start
,
"ssh"
,
scheme_len
))
!
is_ssh_scheme
(
parser
->
scheme
,
parser
->
scheme_len
))
return
url_invalid
(
"malformed hostname"
);
return
url_invalid
(
"malformed hostname"
);
if
(
*
c
==
':'
)
{
if
(
*
c
==
':'
)
{
*
password_start
=
c
+
1
;
parser
->
password
=
c
+
1
;
*
password_len
=
userpass_end
-
*
password_start
;
parser
->
password_len
=
userpass_end
-
parser
->
password
;
user_end
=
c
;
user_end
=
c
;
state
=
USER
;
state
=
USER
;
break
;
break
;
...
@@ -260,24 +295,24 @@ static int url_parse_authority(
...
@@ -260,24 +295,24 @@ static int url_parse_authority(
switch
(
state
)
{
switch
(
state
)
{
case
HOSTPORT
:
case
HOSTPORT
:
*
host_start
=
authority_start
;
parser
->
host
=
authority
;
*
host_len
=
(
hostport_end
-
*
host_star
t
);
parser
->
host_len
=
(
hostport_end
-
parser
->
hos
t
);
break
;
break
;
case
HOST
:
case
HOST
:
*
host_start
=
authority_start
;
parser
->
host
=
authority
;
*
host_len
=
(
host_end
-
*
host_star
t
);
parser
->
host_len
=
(
host_end
-
parser
->
hos
t
);
break
;
break
;
case
IPV6
:
case
IPV6
:
return
url_invalid
(
"malformed hostname"
);
return
url_invalid
(
"malformed hostname"
);
case
HOST_END
:
case
HOST_END
:
break
;
break
;
case
USERPASS
:
case
USERPASS
:
*
user_start
=
authority_start
;
parser
->
user
=
authority
;
*
user_len
=
(
userpass_end
-
*
user_start
);
parser
->
user_len
=
(
userpass_end
-
parser
->
user
);
break
;
break
;
case
USER
:
case
USER
:
*
user_start
=
authority_start
;
parser
->
user
=
authority
;
*
user_len
=
(
user_end
-
*
user_start
);
parser
->
user_len
=
(
user_end
-
parser
->
user
);
break
;
break
;
default:
default:
GIT_ASSERT
(
!
"unhandled state"
);
GIT_ASSERT
(
!
"unhandled state"
);
...
@@ -286,97 +321,30 @@ static int url_parse_authority(
...
@@ -286,97 +321,30 @@ static int url_parse_authority(
return
0
;
return
0
;
}
}
int
git_net_url_parse
(
git_net_url
*
url
,
const
char
*
given
)
static
int
url_parse_path
(
git_net_url_parser
*
parser
,
const
char
*
path
,
size_t
len
)
{
{
const
char
*
c
,
*
scheme_start
,
*
authority_start
,
*
user_start
,
const
char
*
c
,
*
end
;
*
password_start
,
*
host_start
,
*
port_start
,
*
path_start
,
*
query_start
,
*
fragment_start
,
*
default_port
;
git_str
scheme
=
GIT_STR_INIT
,
user
=
GIT_STR_INIT
,
password
=
GIT_STR_INIT
,
host
=
GIT_STR_INIT
,
port
=
GIT_STR_INIT
,
path
=
GIT_STR_INIT
,
query
=
GIT_STR_INIT
,
fragment
=
GIT_STR_INIT
;
size_t
scheme_len
=
0
,
user_len
=
0
,
password_len
=
0
,
host_len
=
0
,
port_len
=
0
,
path_len
=
0
,
query_len
=
0
,
fragment_len
=
0
;
bool
hierarchical
=
false
;
int
error
=
0
;
enum
{
enum
{
PATH
,
QUERY
,
FRAGMENT
}
state
=
PATH
;
SCHEME
,
AUTHORITY_START
,
AUTHORITY
,
PATH_START
,
PATH
,
QUERY
,
FRAGMENT
}
state
=
SCHEME
;
memset
(
url
,
0
,
sizeof
(
git_net_url
));
parser
->
path
=
path
;
end
=
path
+
len
;
for
(
c
=
scheme_start
=
given
;
*
c
;
c
++
)
{
for
(
c
=
path
;
c
<
end
;
c
++
)
{
switch
(
state
)
{
switch
(
state
)
{
case
SCHEME
:
if
(
*
c
==
':'
)
{
scheme_len
=
(
c
-
scheme_start
);
if
(
*
(
c
+
1
)
==
'/'
&&
*
(
c
+
2
)
==
'/'
)
{
c
+=
2
;
hierarchical
=
true
;
state
=
AUTHORITY_START
;
}
else
{
state
=
PATH_START
;
}
}
else
if
((
*
c
<
'A'
||
*
c
>
'Z'
)
&&
(
*
c
<
'a'
||
*
c
>
'z'
)
&&
(
*
c
<
'0'
||
*
c
>
'9'
)
&&
(
*
c
!=
'+'
&&
*
c
!=
'-'
&&
*
c
!=
'.'
))
{
/*
* an illegal scheme character means that we
* were just given a relative path
*/
path_start
=
given
;
state
=
PATH
;
break
;
}
break
;
case
AUTHORITY_START
:
authority_start
=
c
;
state
=
AUTHORITY
;
/* fall through */
case
AUTHORITY
:
if
(
*
c
!=
'/'
)
break
;
/*
* authority is sufficiently complex that we parse
* it separately
*/
if
((
error
=
url_parse_authority
(
&
user_start
,
&
user_len
,
&
password_start
,
&
password_len
,
&
host_start
,
&
host_len
,
&
port_start
,
&
port_len
,
authority_start
,
(
c
-
authority_start
),
scheme_start
,
scheme_len
))
<
0
)
goto
done
;
/* fall through */
case
PATH_START
:
path_start
=
c
;
state
=
PATH
;
/* fall through */
case
PATH
:
case
PATH
:
switch
(
*
c
)
{
switch
(
*
c
)
{
case
'?'
:
case
'?'
:
pa
th_len
=
(
c
-
path_start
);
pa
rser
->
path_len
=
(
c
-
parser
->
path
);
query_start
=
c
+
1
;
parser
->
query
=
c
+
1
;
state
=
QUERY
;
state
=
QUERY
;
break
;
break
;
case
'#'
:
case
'#'
:
pa
th_len
=
(
c
-
path_start
);
pa
rser
->
path_len
=
(
c
-
parser
->
path
);
fragment_star
t
=
c
+
1
;
parser
->
fragmen
t
=
c
+
1
;
state
=
FRAGMENT
;
state
=
FRAGMENT
;
break
;
break
;
}
}
...
@@ -384,8 +352,8 @@ int git_net_url_parse(git_net_url *url, const char *given)
...
@@ -384,8 +352,8 @@ int git_net_url_parse(git_net_url *url, const char *given)
case
QUERY
:
case
QUERY
:
if
(
*
c
==
'#'
)
{
if
(
*
c
==
'#'
)
{
query_len
=
(
c
-
query_start
);
parser
->
query_len
=
(
c
-
parser
->
query
);
fragment_star
t
=
c
+
1
;
parser
->
fragmen
t
=
c
+
1
;
state
=
FRAGMENT
;
state
=
FRAGMENT
;
}
}
break
;
break
;
...
@@ -399,82 +367,70 @@ int git_net_url_parse(git_net_url *url, const char *given)
...
@@ -399,82 +367,70 @@ int git_net_url_parse(git_net_url *url, const char *given)
}
}
switch
(
state
)
{
switch
(
state
)
{
case
SCHEME
:
/*
* if we never saw a ':' then we were given a relative
* path, not a bare scheme
*/
path_start
=
given
;
path_len
=
(
c
-
scheme_start
);
break
;
case
AUTHORITY_START
:
break
;
case
AUTHORITY
:
if
((
error
=
url_parse_authority
(
&
user_start
,
&
user_len
,
&
password_start
,
&
password_len
,
&
host_start
,
&
host_len
,
&
port_start
,
&
port_len
,
authority_start
,
(
c
-
authority_start
),
scheme_start
,
scheme_len
))
<
0
)
goto
done
;
break
;
case
PATH_START
:
break
;
case
PATH
:
case
PATH
:
pa
th_len
=
(
c
-
path_start
);
pa
rser
->
path_len
=
(
c
-
parser
->
path
);
break
;
break
;
case
QUERY
:
case
QUERY
:
query_len
=
(
c
-
query_start
);
parser
->
query_len
=
(
c
-
parser
->
query
);
break
;
break
;
case
FRAGMENT
:
case
FRAGMENT
:
fragment_len
=
(
c
-
fragment_star
t
);
parser
->
fragment_len
=
(
c
-
parser
->
fragmen
t
);
break
;
break
;
default:
GIT_ASSERT
(
!
"unhandled state"
);
}
}
if
(
scheme_len
)
{
return
0
;
if
((
error
=
git_str_put
(
&
scheme
,
scheme_start
,
scheme_len
))
<
0
)
}
static
int
url_parse_finalize
(
git_net_url
*
url
,
git_net_url_parser
*
parser
)
{
git_str
scheme
=
GIT_STR_INIT
,
user
=
GIT_STR_INIT
,
password
=
GIT_STR_INIT
,
host
=
GIT_STR_INIT
,
port
=
GIT_STR_INIT
,
path
=
GIT_STR_INIT
,
query
=
GIT_STR_INIT
,
fragment
=
GIT_STR_INIT
;
const
char
*
default_port
;
int
error
=
0
;
if
(
parser
->
scheme_len
)
{
if
((
error
=
git_str_put
(
&
scheme
,
parser
->
scheme
,
parser
->
scheme_len
))
<
0
)
goto
done
;
goto
done
;
git__strntolower
(
scheme
.
ptr
,
scheme
.
size
);
git__strntolower
(
scheme
.
ptr
,
scheme
.
size
);
}
}
if
(
user_len
&&
if
(
parser
->
user_len
&&
(
error
=
git_str_decode_percent
(
&
user
,
user_start
,
user_len
))
<
0
)
(
error
=
git_str_decode_percent
(
&
user
,
parser
->
user
,
parser
->
user_len
))
<
0
)
goto
done
;
goto
done
;
if
(
password_len
&&
if
(
pa
rser
->
pa
ssword_len
&&
(
error
=
git_str_decode_percent
(
&
password
,
pa
ssword_start
,
password_len
))
<
0
)
(
error
=
git_str_decode_percent
(
&
password
,
pa
rser
->
password
,
parser
->
password_len
))
<
0
)
goto
done
;
goto
done
;
if
(
host_len
&&
if
(
parser
->
host_len
&&
(
error
=
git_str_decode_percent
(
&
host
,
host_start
,
host_len
))
<
0
)
(
error
=
git_str_decode_percent
(
&
host
,
parser
->
host
,
parser
->
host_len
))
<
0
)
goto
done
;
goto
done
;
if
(
port_len
)
if
(
p
arser
->
p
ort_len
)
error
=
git_str_put
(
&
port
,
p
ort_start
,
port_len
);
error
=
git_str_put
(
&
port
,
p
arser
->
port
,
parser
->
port_len
);
else
if
(
scheme_len
&&
(
default_port
=
default_port_for_scheme
(
scheme
.
ptr
))
!=
NULL
)
else
if
(
parser
->
scheme_len
&&
(
default_port
=
default_port_for_scheme
(
scheme
.
ptr
))
!=
NULL
)
error
=
git_str_puts
(
&
port
,
default_port
);
error
=
git_str_puts
(
&
port
,
default_port
);
if
(
error
<
0
)
if
(
error
<
0
)
goto
done
;
goto
done
;
if
(
path_len
)
if
(
pa
rser
->
pa
th_len
)
error
=
git_str_put
(
&
path
,
pa
th_start
,
path_len
);
error
=
git_str_put
(
&
path
,
pa
rser
->
path
,
parser
->
path_len
);
else
if
(
hierarchical
)
else
if
(
parser
->
hierarchical
)
error
=
git_str_puts
(
&
path
,
"/"
);
error
=
git_str_puts
(
&
path
,
"/"
);
if
(
error
<
0
)
if
(
error
<
0
)
goto
done
;
goto
done
;
if
(
query_len
&&
if
(
parser
->
query_len
&&
(
error
=
git_str_decode_percent
(
&
query
,
query_start
,
query_len
))
<
0
)
(
error
=
git_str_decode_percent
(
&
query
,
parser
->
query
,
parser
->
query_len
))
<
0
)
goto
done
;
goto
done
;
if
(
fragment_len
&&
if
(
parser
->
fragment_len
&&
(
error
=
git_str_decode_percent
(
&
fragment
,
fragment_start
,
fragment_len
))
<
0
)
(
error
=
git_str_decode_percent
(
&
fragment
,
parser
->
fragment
,
parser
->
fragment_len
))
<
0
)
goto
done
;
goto
done
;
url
->
scheme
=
git_str_detach
(
&
scheme
);
url
->
scheme
=
git_str_detach
(
&
scheme
);
...
@@ -501,6 +457,157 @@ done:
...
@@ -501,6 +457,157 @@ done:
return
error
;
return
error
;
}
}
int
git_net_url_parse
(
git_net_url
*
url
,
const
char
*
given
)
{
git_net_url_parser
parser
=
GIT_NET_URL_PARSER_INIT
;
const
char
*
c
,
*
authority
,
*
path
;
size_t
authority_len
=
0
,
path_len
=
0
;
int
error
=
0
;
enum
{
SCHEME_START
,
SCHEME
,
AUTHORITY_START
,
AUTHORITY
,
PATH_START
,
PATH
}
state
=
SCHEME_START
;
memset
(
url
,
0
,
sizeof
(
git_net_url
));
for
(
c
=
given
;
*
c
;
c
++
)
{
switch
(
state
)
{
case
SCHEME_START
:
parser
.
scheme
=
c
;
state
=
SCHEME
;
/* fall through */
case
SCHEME
:
if
(
*
c
==
':'
)
{
parser
.
scheme_len
=
(
c
-
parser
.
scheme
);
if
(
parser
.
scheme_len
&&
*
(
c
+
1
)
==
'/'
&&
*
(
c
+
2
)
==
'/'
)
{
c
+=
2
;
parser
.
hierarchical
=
1
;
state
=
AUTHORITY_START
;
}
else
{
state
=
PATH_START
;
}
}
else
if
(
!
is_valid_scheme_char
(
*
c
))
{
/*
* an illegal scheme character means that we
* were just given a relative path
*/
path
=
given
;
state
=
PATH
;
break
;
}
break
;
case
AUTHORITY_START
:
authority
=
c
;
state
=
AUTHORITY
;
/* fall through */
case
AUTHORITY
:
if
(
*
c
!=
'/'
)
break
;
authority_len
=
(
c
-
authority
);
/* fall through */
case
PATH_START
:
path
=
c
;
state
=
PATH
;
break
;
case
PATH
:
break
;
default:
GIT_ASSERT
(
!
"unhandled state"
);
}
}
switch
(
state
)
{
case
SCHEME
:
/*
* if we never saw a ':' then we were given a relative
* path, not a bare scheme
*/
path
=
given
;
path_len
=
(
c
-
path
);
break
;
case
AUTHORITY_START
:
break
;
case
AUTHORITY
:
authority_len
=
(
c
-
authority
);
break
;
case
PATH_START
:
break
;
case
PATH
:
path_len
=
(
c
-
path
);
break
;
default:
GIT_ASSERT
(
!
"unhandled state"
);
}
if
(
authority_len
&&
(
error
=
url_parse_authority
(
&
parser
,
authority
,
authority_len
))
<
0
)
goto
done
;
if
(
path_len
&&
(
error
=
url_parse_path
(
&
parser
,
path
,
path_len
))
<
0
)
goto
done
;
error
=
url_parse_finalize
(
url
,
&
parser
);
done:
return
error
;
}
int
git_net_url_parse_http
(
git_net_url
*
url
,
const
char
*
given
)
{
git_net_url_parser
parser
=
GIT_NET_URL_PARSER_INIT
;
const
char
*
c
,
*
authority
,
*
path
=
NULL
;
size_t
authority_len
=
0
,
path_len
=
0
;
int
error
;
/* Hopefully this is a proper URL with a scheme. */
if
(
git_net_str_is_url
(
given
))
return
git_net_url_parse
(
url
,
given
);
memset
(
url
,
0
,
sizeof
(
git_net_url
));
/* Without a scheme, we are in the host (authority) section. */
for
(
c
=
authority
=
given
;
*
c
;
c
++
)
{
if
(
!
path
&&
*
c
==
'/'
)
{
authority_len
=
(
c
-
authority
);
path
=
c
;
}
}
if
(
path
)
path_len
=
(
c
-
path
);
else
authority_len
=
(
c
-
authority
);
parser
.
scheme
=
"http"
;
parser
.
scheme_len
=
4
;
parser
.
hierarchical
=
1
;
if
(
authority_len
&&
(
error
=
url_parse_authority
(
&
parser
,
authority
,
authority_len
))
<
0
)
return
error
;
if
(
path_len
&&
(
error
=
url_parse_path
(
&
parser
,
path
,
path_len
))
<
0
)
return
error
;
return
url_parse_finalize
(
url
,
&
parser
);
}
static
int
scp_invalid
(
const
char
*
message
)
static
int
scp_invalid
(
const
char
*
message
)
{
{
git_error_set
(
GIT_ERROR_NET
,
"invalid scp-style path: %s"
,
message
);
git_error_set
(
GIT_ERROR_NET
,
"invalid scp-style path: %s"
,
message
);
...
...
src/util/net.h
View file @
393dd49e
...
@@ -57,6 +57,14 @@ extern int git_net_url_parse_scp(git_net_url *url, const char *str);
...
@@ -57,6 +57,14 @@ extern int git_net_url_parse_scp(git_net_url *url, const char *str);
*/
*/
extern
int
git_net_url_parse_standard_or_scp
(
git_net_url
*
url
,
const
char
*
str
);
extern
int
git_net_url_parse_standard_or_scp
(
git_net_url
*
url
,
const
char
*
str
);
/**
* Parses a string containing an HTTP endpoint that may not be a
* well-formed URL. For example, "localhost" or "localhost:port".
*/
extern
int
git_net_url_parse_http
(
git_net_url
*
url
,
const
char
*
str
);
/** Appends a path and/or query string to the given URL */
/** Appends a path and/or query string to the given URL */
extern
int
git_net_url_joinpath
(
extern
int
git_net_url_joinpath
(
git_net_url
*
out
,
git_net_url
*
out
,
...
...
tests/libgit2/online/clone.c
View file @
393dd49e
...
@@ -43,7 +43,6 @@ static char *_github_ssh_privkey = NULL;
...
@@ -43,7 +43,6 @@ static char *_github_ssh_privkey = NULL;
static
char
*
_github_ssh_passphrase
=
NULL
;
static
char
*
_github_ssh_passphrase
=
NULL
;
static
char
*
_github_ssh_remotehostkey
=
NULL
;
static
char
*
_github_ssh_remotehostkey
=
NULL
;
static
int
_orig_proxies_need_reset
=
0
;
static
char
*
_orig_http_proxy
=
NULL
;
static
char
*
_orig_http_proxy
=
NULL
;
static
char
*
_orig_https_proxy
=
NULL
;
static
char
*
_orig_https_proxy
=
NULL
;
static
char
*
_orig_no_proxy
=
NULL
;
static
char
*
_orig_no_proxy
=
NULL
;
...
@@ -99,10 +98,12 @@ void test_online_clone__initialize(void)
...
@@ -99,10 +98,12 @@ void test_online_clone__initialize(void)
_github_ssh_passphrase
=
cl_getenv
(
"GITTEST_GITHUB_SSH_PASSPHRASE"
);
_github_ssh_passphrase
=
cl_getenv
(
"GITTEST_GITHUB_SSH_PASSPHRASE"
);
_github_ssh_remotehostkey
=
cl_getenv
(
"GITTEST_GITHUB_SSH_REMOTE_HOSTKEY"
);
_github_ssh_remotehostkey
=
cl_getenv
(
"GITTEST_GITHUB_SSH_REMOTE_HOSTKEY"
);
_orig_http_proxy
=
cl_getenv
(
"HTTP_PROXY"
);
_orig_https_proxy
=
cl_getenv
(
"HTTPS_PROXY"
);
_orig_no_proxy
=
cl_getenv
(
"NO_PROXY"
);
if
(
_remote_expectcontinue
)
if
(
_remote_expectcontinue
)
git_libgit2_opts
(
GIT_OPT_ENABLE_HTTP_EXPECT_CONTINUE
,
1
);
git_libgit2_opts
(
GIT_OPT_ENABLE_HTTP_EXPECT_CONTINUE
,
1
);
_orig_proxies_need_reset
=
0
;
}
}
void
test_online_clone__cleanup
(
void
)
void
test_online_clone__cleanup
(
void
)
...
@@ -140,15 +141,13 @@ void test_online_clone__cleanup(void)
...
@@ -140,15 +141,13 @@ void test_online_clone__cleanup(void)
git__free
(
_github_ssh_passphrase
);
git__free
(
_github_ssh_passphrase
);
git__free
(
_github_ssh_remotehostkey
);
git__free
(
_github_ssh_remotehostkey
);
if
(
_orig_proxies_need_reset
)
{
cl_setenv
(
"HTTP_PROXY"
,
_orig_http_proxy
);
cl_setenv
(
"HTTP_PROXY"
,
_orig_http_proxy
);
cl_setenv
(
"HTTPS_PROXY"
,
_orig_https_proxy
);
cl_setenv
(
"HTTPS_PROXY"
,
_orig_https_proxy
);
cl_setenv
(
"NO_PROXY"
,
_orig_no_proxy
);
cl_setenv
(
"NO_PROXY"
,
_orig_no_proxy
);
git__free
(
_orig_http_proxy
);
git__free
(
_orig_http_proxy
);
git__free
(
_orig_https_proxy
);
git__free
(
_orig_https_proxy
);
git__free
(
_orig_no_proxy
);
git__free
(
_orig_no_proxy
);
}
git_libgit2_opts
(
GIT_OPT_SET_SSL_CERT_LOCATIONS
,
NULL
,
NULL
);
git_libgit2_opts
(
GIT_OPT_SET_SSL_CERT_LOCATIONS
,
NULL
,
NULL
);
git_libgit2_opts
(
GIT_OPT_SET_SERVER_TIMEOUT
,
0
);
git_libgit2_opts
(
GIT_OPT_SET_SERVER_TIMEOUT
,
0
);
...
@@ -968,6 +967,92 @@ static int proxy_cert_cb(git_cert *cert, int valid, const char *host, void *payl
...
@@ -968,6 +967,92 @@ static int proxy_cert_cb(git_cert *cert, int valid, const char *host, void *payl
return
valid
?
0
:
GIT_ECERTIFICATE
;
return
valid
?
0
:
GIT_ECERTIFICATE
;
}
}
void
test_online_clone__proxy_http_host_port_in_opts
(
void
)
{
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
cl_skip
();
if
(
_remote_proxy_scheme
&&
strcmp
(
_remote_proxy_scheme
,
"http"
)
!=
0
)
cl_skip
();
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_SPECIFIED
;
g_options
.
fetch_opts
.
proxy_opts
.
url
=
_remote_proxy_host
;
g_options
.
fetch_opts
.
proxy_opts
.
credentials
=
proxy_cred_cb
;
called_proxy_creds
=
0
;
cl_git_pass
(
git_clone
(
&
g_repo
,
"https://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
cl_assert
(
called_proxy_creds
==
1
);
}
void
test_online_clone__proxy_http_host_port_in_env
(
void
)
{
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
cl_skip
();
if
(
_remote_proxy_scheme
&&
strcmp
(
_remote_proxy_scheme
,
"http"
)
!=
0
)
cl_skip
();
cl_setenv
(
"HTTP_PROXY"
,
_remote_proxy_host
);
cl_setenv
(
"HTTPS_PROXY"
,
_remote_proxy_host
);
cl_setenv
(
"NO_PROXY"
,
NULL
);
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_AUTO
;
g_options
.
fetch_opts
.
proxy_opts
.
credentials
=
proxy_cred_cb
;
called_proxy_creds
=
0
;
cl_git_pass
(
git_clone
(
&
g_repo
,
"https://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
cl_assert
(
called_proxy_creds
==
1
);
}
static
int
repository_create_with_proxy
(
git_repository
**
out
,
const
char
*
path
,
int
bare
,
void
*
payload
)
{
git_repository
*
repo
;
git_config
*
config
;
char
*
value
=
(
char
*
)
payload
;
cl_git_pass
(
git_repository_init
(
&
repo
,
path
,
bare
));
cl_git_pass
(
git_repository_config
(
&
config
,
repo
));
cl_git_pass
(
git_config_set_string
(
config
,
"http.proxy"
,
value
));
git_config_free
(
config
);
*
out
=
repo
;
return
0
;
}
void
test_online_clone__proxy_http_host_port_in_config
(
void
)
{
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
cl_skip
();
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_AUTO
;
g_options
.
fetch_opts
.
proxy_opts
.
credentials
=
proxy_cred_cb
;
g_options
.
repository_cb
=
repository_create_with_proxy
;
g_options
.
repository_cb_payload
=
_remote_proxy_host
;
called_proxy_creds
=
0
;
cl_git_pass
(
git_clone
(
&
g_repo
,
"https://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
cl_assert
(
called_proxy_creds
==
1
);
}
void
test_online_clone__proxy_invalid_url
(
void
)
{
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_SPECIFIED
;
g_options
.
fetch_opts
.
proxy_opts
.
credentials
=
proxy_cred_cb
;
g_options
.
fetch_opts
.
proxy_opts
.
certificate_check
=
proxy_cert_cb
;
g_options
.
fetch_opts
.
proxy_opts
.
url
=
"noschemeorport"
;
cl_git_fail
(
git_clone
(
&
g_repo
,
"http://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
g_options
.
fetch_opts
.
proxy_opts
.
url
=
"noscheme:8080"
;
cl_git_fail
(
git_clone
(
&
g_repo
,
"http://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
}
void
test_online_clone__proxy_credentials_request
(
void
)
void
test_online_clone__proxy_credentials_request
(
void
)
{
{
git_str
url
=
GIT_STR_INIT
;
git_str
url
=
GIT_STR_INIT
;
...
@@ -990,7 +1075,7 @@ void test_online_clone__proxy_credentials_request(void)
...
@@ -990,7 +1075,7 @@ void test_online_clone__proxy_credentials_request(void)
git_str_dispose
(
&
url
);
git_str_dispose
(
&
url
);
}
}
void
test_online_clone__proxy_credentials_in_url
(
void
)
void
test_online_clone__proxy_credentials_in_
well_formed_
url
(
void
)
{
{
git_str
url
=
GIT_STR_INIT
;
git_str
url
=
GIT_STR_INIT
;
...
@@ -1011,17 +1096,35 @@ void test_online_clone__proxy_credentials_in_url(void)
...
@@ -1011,17 +1096,35 @@ void test_online_clone__proxy_credentials_in_url(void)
git_str_dispose
(
&
url
);
git_str_dispose
(
&
url
);
}
}
void
test_online_clone__proxy_credentials_in_
environmen
t
(
void
)
void
test_online_clone__proxy_credentials_in_
host_port_forma
t
(
void
)
{
{
git_str
url
=
GIT_STR_INIT
;
git_str
url
=
GIT_STR_INIT
;
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
cl_skip
();
cl_skip
();
_orig_http_proxy
=
cl_getenv
(
"HTTP_PROXY"
);
if
(
_remote_proxy_scheme
&&
strcmp
(
_remote_proxy_scheme
,
"http"
)
!=
0
)
_orig_https_proxy
=
cl_getenv
(
"HTTPS_PROXY"
);
cl_skip
();
_orig_no_proxy
=
cl_getenv
(
"NO_PROXY"
);
_orig_proxies_need_reset
=
1
;
cl_git_pass
(
git_str_printf
(
&
url
,
"%s:%s@%s"
,
_remote_proxy_user
,
_remote_proxy_pass
,
_remote_proxy_host
));
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_SPECIFIED
;
g_options
.
fetch_opts
.
proxy_opts
.
url
=
url
.
ptr
;
g_options
.
fetch_opts
.
proxy_opts
.
certificate_check
=
proxy_cert_cb
;
called_proxy_creds
=
0
;
cl_git_pass
(
git_clone
(
&
g_repo
,
"http://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
cl_assert
(
called_proxy_creds
==
0
);
git_str_dispose
(
&
url
);
}
void
test_online_clone__proxy_credentials_in_environment
(
void
)
{
git_str
url
=
GIT_STR_INIT
;
if
(
!
_remote_proxy_host
||
!
_remote_proxy_user
||
!
_remote_proxy_pass
)
cl_skip
();
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_AUTO
;
g_options
.
fetch_opts
.
proxy_opts
.
type
=
GIT_PROXY_AUTO
;
g_options
.
fetch_opts
.
proxy_opts
.
certificate_check
=
proxy_cert_cb
;
g_options
.
fetch_opts
.
proxy_opts
.
certificate_check
=
proxy_cert_cb
;
...
...
tests/util/url/http.c
0 → 100644
View file @
393dd49e
#include "clar_libgit2.h"
#include "net.h"
static
git_net_url
conndata
;
void
test_url_http__initialize
(
void
)
{
memset
(
&
conndata
,
0
,
sizeof
(
conndata
));
}
void
test_url_http__cleanup
(
void
)
{
git_net_url_dispose
(
&
conndata
);
}
/* Hostname */
void
test_url_http__has_scheme
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"http://example.com/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__no_scheme
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_implied_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_numeric
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"8888888/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"8888888"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_implied_root_custom_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com:42"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"42"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_implied_root_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com:"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_encoded_password
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@hostname.com:1234/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"hostname.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"1234"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass/is@bad"
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_user
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@example.com/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_user_pass
(
void
)
{
/* user:pass@hostname.tld/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_port
(
void
)
{
/* hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"example.com:/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__hostname_user_port
(
void
)
{
/* user@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@example.com:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_user_pass_port
(
void
)
{
/* user:pass@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_user_pass_port_query
(
void
)
{
/* user:pass@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com:9191/resource?query=q&foo=bar&z=asdf"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_s
(
conndata
.
query
,
"query=q&foo=bar&z=asdf"
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_user_pass_port_fragment
(
void
)
{
/* user:pass@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com:9191/resource#fragment"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_s
(
conndata
.
fragment
,
"fragment"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__hostname_user_pass_port_query_fragment
(
void
)
{
/* user:pass@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com:9191/resource?query=q&foo=bar&z=asdf#fragment"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_s
(
conndata
.
query
,
"query=q&foo=bar&z=asdf"
);
cl_assert_equal_s
(
conndata
.
fragment
,
"fragment"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__fragment_with_question_mark
(
void
)
{
/* user:pass@hostname.tld:port/resource */
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@example.com:9191/resource#fragment_with?question_mark"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"example.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_s
(
conndata
.
fragment
,
"fragment_with?question_mark"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
/* IPv4 addresses */
void
test_url_http__ipv4_trivial
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_implied_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_implied_root_custom_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1:42"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"42"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv4_implied_root_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1:"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_encoded_password
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@192.168.1.1:1234/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"1234"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass/is@bad"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv4_user
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@192.168.1.1/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_user_pass
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@192.168.1.1/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv4_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"192.168.1.1:/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv4_user_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@192.168.1.1:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv4_user_pass_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@192.168.1.1:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"192.168.1.1"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
/* IPv6 addresses */
void
test_url_http__ipv6_trivial
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_implied_root
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_implied_root_custom_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]:42"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"42"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv6_implied_root_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]:"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_encoded_password
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@[fe80::dcad:beff:fe00:0001]:1234/"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"1234"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass/is@bad"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv6_user
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@[fe80::dcad:beff:fe00:0001]/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_user_pass
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@[fe80::dcad:beff:fe00:0001]/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv6_empty_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]:/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__ipv6_user_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user@[fe80::dcad:beff:fe00:0001]:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv6_user_pass_port
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"user:pass@[fe80::dcad:beff:fe00:0001]:9191/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"fe80::dcad:beff:fe00:0001"
);
cl_assert_equal_s
(
conndata
.
port
,
"9191"
);
cl_assert_equal_s
(
conndata
.
path
,
"/resource"
);
cl_assert_equal_s
(
conndata
.
username
,
"user"
);
cl_assert_equal_s
(
conndata
.
password
,
"pass"
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_http__ipv6_invalid_addresses
(
void
)
{
/* Opening bracket missing */
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]:42"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]:"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@fe80::dcad:beff:fe00:0001]:1234/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@fe80::dcad:beff:fe00:0001]/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@fe80::dcad:beff:fe00:0001]/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001]:/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@fe80::dcad:beff:fe00:0001]:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@fe80::dcad:beff:fe00:0001]:9191/resource"
));
/* Closing bracket missing */
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001:42"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001:"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@[fe80::dcad:beff:fe00:0001:1234/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@[fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@[fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001:/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@[fe80::dcad:beff:fe00:0001:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@[fe80::dcad:beff:fe00:0001:9191/resource"
));
/* Both brackets missing */
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001:42"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001:"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass%2fis%40bad@fe80::dcad:beff:fe00:0001:1234/"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@fe80::dcad:beff:fe00:0001/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::dcad:beff:fe00:0001:/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user@fe80::dcad:beff:fe00:0001:9191/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"user:pass@fe80::dcad:beff:fe00:0001:9191/resource"
));
/* Invalid character inside address */
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe8o::dcad:beff:fe00:0001]/resource"
));
/* Characters before/after braces */
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"fe80::[dcad:beff:fe00:0001]/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"cafe[fe80::dcad:beff:fe00:0001]/resource"
));
cl_git_fail_with
(
GIT_EINVALIDSPEC
,
git_net_url_parse_http
(
&
conndata
,
"[fe80::dcad:beff:fe00:0001]cafe/resource"
));
}
/* Oddities */
void
test_url_http__invalid_scheme_is_relative
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"foo!bar://host:42/path/to/project?query_string=yes"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"foo!bar"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"//host:42/path/to/project"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_s
(
conndata
.
query
,
"query_string=yes"
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__scheme_case_is_normalized
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"GIT+SSH://host:42/path/to/project"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"git+ssh"
);
}
void
test_url_http__no_scheme_relative_path
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"path"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"path"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__no_scheme_absolute_path
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"/path"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_p
(
conndata
.
host
,
NULL
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/path"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__empty_path_with_empty_authority
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
""
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_p
(
conndata
.
host
,
NULL
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
void
test_url_http__spaces_in_the_name
(
void
)
{
cl_git_pass
(
git_net_url_parse_http
(
&
conndata
,
"libgit2@dev.azure.com/libgit2/test/_git/spaces%20in%20the%20name"
));
cl_assert_equal_s
(
conndata
.
scheme
,
"http"
);
cl_assert_equal_s
(
conndata
.
host
,
"dev.azure.com"
);
cl_assert_equal_s
(
conndata
.
port
,
"80"
);
cl_assert_equal_s
(
conndata
.
path
,
"/libgit2/test/_git/spaces%20in%20the%20name"
);
cl_assert_equal_s
(
conndata
.
username
,
"libgit2"
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
1
);
}
tests/util/url/parse.c
View file @
393dd49e
...
@@ -669,6 +669,20 @@ void test_url_parse__ipv6_invalid_addresses(void)
...
@@ -669,6 +669,20 @@ void test_url_parse__ipv6_invalid_addresses(void)
/* Oddities */
/* Oddities */
void
test_url_parse__empty_scheme
(
void
)
{
cl_git_pass
(
git_net_url_parse
(
&
conndata
,
"://example.com/resource"
));
cl_assert_equal_s
(
conndata
.
scheme
,
NULL
);
cl_assert_equal_s
(
conndata
.
host
,
NULL
);
cl_assert_equal_s
(
conndata
.
port
,
NULL
);
cl_assert_equal_s
(
conndata
.
path
,
"//example.com/resource"
);
cl_assert_equal_p
(
conndata
.
username
,
NULL
);
cl_assert_equal_p
(
conndata
.
password
,
NULL
);
cl_assert_equal_p
(
conndata
.
query
,
NULL
);
cl_assert_equal_p
(
conndata
.
fragment
,
NULL
);
cl_assert_equal_i
(
git_net_url_is_default_port
(
&
conndata
),
0
);
}
void
test_url_parse__invalid_scheme_is_relative
(
void
)
void
test_url_parse__invalid_scheme_is_relative
(
void
)
{
{
cl_git_pass
(
git_net_url_parse
(
&
conndata
,
"foo!bar://host:42/path/to/project?query_string=yes"
));
cl_git_pass
(
git_net_url_parse
(
&
conndata
,
"foo!bar://host:42/path/to/project?query_string=yes"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment