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
10fbb5c9
Commit
10fbb5c9
authored
May 18, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ssh: only test callbacks for libssh2
There are no custom callbacks for OpenSSH; don't test them.
parent
cf133a82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
tests/libgit2/online/clone.c
+7
-2
No files found.
tests/libgit2/online/clone.c
View file @
10fbb5c9
...
...
@@ -653,7 +653,7 @@ void test_online_clone__ssh_auth_methods(void)
{
int
with_user
;
#ifndef GIT_SSH
#ifndef GIT_SSH
_LIBSSH2
clar__skip
();
#endif
g_options
.
fetch_opts
.
callbacks
.
credentials
=
check_ssh_auth_methods
;
...
...
@@ -796,6 +796,7 @@ void test_online_clone__ssh_cannot_change_username(void)
#ifndef GIT_SSH_LIBSSH2
clar__skip
();
#endif
g_options
.
fetch_opts
.
callbacks
.
credentials
=
cred_foo_bar
;
cl_git_fail
(
git_clone
(
&
g_repo
,
"ssh://git@github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
...
...
@@ -837,6 +838,10 @@ static int ssh_certificate_check(git_cert *cert, int valid, const char *host, vo
void
test_online_clone__ssh_cert
(
void
)
{
#ifndef GIT_SSH_LIBSSH2
cl_skip
();
#endif
g_options
.
fetch_opts
.
callbacks
.
certificate_check
=
ssh_certificate_check
;
if
(
!
_remote_ssh_fingerprint
)
...
...
@@ -911,7 +916,7 @@ void test_online_clone__certificate_invalid(void)
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"https://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
#ifdef GIT_SSH
#ifdef GIT_SSH
_LIBSSH2
cl_git_fail_with
(
GIT_ECERTIFICATE
,
git_clone
(
&
g_repo
,
"ssh://github.com/libgit2/TestGitRepository"
,
"./foo"
,
&
g_options
));
#endif
...
...
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