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
439e19f6
Commit
439e19f6
authored
Nov 12, 2014
by
David Calavera
Committed by
Carlos Martín Nieto
Dec 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test that prune overlapping works as expected.
parent
ce4b57c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
1 deletions
+64
-1
src/remote.c
+0
-1
tests/network/fetchlocal.c
+64
-0
No files found.
src/remote.c
View file @
439e19f6
...
...
@@ -904,7 +904,6 @@ int git_remote_fetch(
{
int
error
;
git_buf
reflog_msg_buf
=
GIT_BUF_INIT
;
size_t
i
;
/* Connect and download everything */
if
((
error
=
git_remote_connect
(
remote
,
GIT_DIRECTION_FETCH
))
!=
0
)
...
...
tests/network/fetchlocal.c
View file @
439e19f6
...
...
@@ -113,6 +113,70 @@ void test_network_fetchlocal__prune(void)
git_repository_free
(
repo
);
}
void
test_network_fetchlocal__prune_overlapping
(
void
)
{
git_repository
*
repo
;
git_remote
*
origin
;
int
callcount
=
0
;
git_strarray
refnames
=
{
0
};
git_reference
*
ref
;
git_object
*
obj
;
git_config
*
config
;
git_repository
*
remote_repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
cl_git_pass
(
git_revparse_single
(
&
obj
,
remote_repo
,
"master"
));
cl_git_pass
(
git_reference_create
(
&
ref
,
remote_repo
,
"refs/pull/42/head"
,
git_object_id
(
obj
),
1
,
NULL
,
NULL
));
git_object_free
(
obj
);
const
char
*
url
=
cl_git_path_url
(
git_repository_path
(
remote_repo
));
git_remote_callbacks
callbacks
=
GIT_REMOTE_CALLBACKS_INIT
;
callbacks
.
transfer_progress
=
transfer_cb
;
callbacks
.
payload
=
&
callcount
;
cl_set_cleanup
(
&
cleanup_local_repo
,
"foo"
);
cl_git_pass
(
git_repository_init
(
&
repo
,
"foo"
,
true
));
cl_git_pass
(
git_remote_create
(
&
origin
,
repo
,
GIT_REMOTE_ORIGIN
,
url
));
git_remote_set_callbacks
(
origin
,
&
callbacks
);
cl_git_pass
(
git_remote_connect
(
origin
,
GIT_DIRECTION_FETCH
));
cl_git_pass
(
git_remote_download
(
origin
,
NULL
));
cl_git_pass
(
git_remote_update_tips
(
origin
,
NULL
,
NULL
));
cl_git_pass
(
git_repository_config
(
&
config
,
repo
));
cl_git_pass
(
git_config_set_multivar
(
config
,
"remote.origin.fetch"
,
"^$"
,
"refs/pull/*/head:refs/remotes/origin/pr/*"
));
git_config_free
(
config
);
cl_git_pass
(
git_remote_load
(
&
origin
,
repo
,
GIT_REMOTE_ORIGIN
));
git_remote_set_callbacks
(
origin
,
&
callbacks
);
cl_git_pass
(
git_remote_connect
(
origin
,
GIT_DIRECTION_FETCH
));
cl_git_pass
(
git_remote_download
(
origin
,
NULL
));
cl_git_pass
(
git_remote_prune
(
origin
));
cl_git_pass
(
git_remote_update_tips
(
origin
,
NULL
,
NULL
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"origin/master"
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"origin/pr/42"
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
20
,
(
int
)
refnames
.
count
);
cl_git_pass
(
git_config_delete_multivar
(
config
,
"remote.origin.fetch"
,
"refs"
));
cl_git_pass
(
git_config_set_multivar
(
config
,
"remote.origin.fetch"
,
"^$"
,
"refs/pull/*/head:refs/remotes/origin/pr/*"
));
cl_git_pass
(
git_config_set_multivar
(
config
,
"remote.origin.fetch"
,
"^$"
,
"refs/heads/*:refs/remotes/origin/*"
));
cl_git_pass
(
git_remote_load
(
&
origin
,
repo
,
GIT_REMOTE_ORIGIN
));
git_remote_set_callbacks
(
origin
,
&
callbacks
);
cl_git_pass
(
git_remote_connect
(
origin
,
GIT_DIRECTION_FETCH
));
cl_git_pass
(
git_remote_download
(
origin
,
NULL
));
cl_git_pass
(
git_remote_prune
(
origin
));
cl_git_pass
(
git_remote_update_tips
(
origin
,
NULL
,
NULL
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"origin/master"
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"origin/pr/42"
));
cl_git_pass
(
git_reference_list
(
&
refnames
,
repo
));
cl_assert_equal_i
(
20
,
(
int
)
refnames
.
count
);
}
void
test_network_fetchlocal__fetchprune
(
void
)
{
git_repository
*
repo
;
...
...
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