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
5e0c3d2d
Commit
5e0c3d2d
authored
Nov 13, 2014
by
David Calavera
Committed by
Carlos Martín Nieto
Dec 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure that `fetch --prune --tags` doesn't remove tags.
parent
b91194e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
tests/network/fetchlocal.c
+59
-0
No files found.
tests/network/fetchlocal.c
View file @
5e0c3d2d
...
...
@@ -4,6 +4,10 @@
#include "path.h"
#include "remote.h"
static
const
char
*
tagger_name
=
"Vicent Marti"
;
static
const
char
*
tagger_email
=
"vicent@github.com"
;
static
const
char
*
tagger_message
=
"This is my tag.
\n\n
There are many tags, but this one is mine
\n
"
;
static
int
transfer_cb
(
const
git_transfer_progress
*
stats
,
void
*
payload
)
{
int
*
callcount
=
(
int
*
)
payload
;
...
...
@@ -238,6 +242,61 @@ void test_network_fetchlocal__fetchprune(void)
git_repository_free
(
repo
);
}
void
test_network_fetchlocal__prune_tag
(
void
)
{
git_repository
*
repo
;
git_remote
*
origin
;
int
callcount
=
0
;
git_reference
*
ref
;
git_config
*
config
;
git_oid
tag_id
;
git_signature
*
tagger
;
git_object
*
obj
;
git_repository
*
remote_repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
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_fetch
(
origin
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"origin/master"
));
cl_git_pass
(
git_reference_create
(
&
ref
,
repo
,
"refs/remotes/origin/fake-remote"
,
git_object_id
(
obj
),
1
,
NULL
,
NULL
));
/* create signature */
cl_git_pass
(
git_signature_new
(
&
tagger
,
tagger_name
,
tagger_email
,
123456789
,
60
));
cl_git_pass
(
git_tag_create
(
&
tag_id
,
repo
,
"some-tag"
,
obj
,
tagger
,
tagger_message
,
0
)
);
cl_git_pass
(
git_repository_config
(
&
config
,
repo
));
cl_git_pass
(
git_config_set_bool
(
config
,
"remote.origin.prune"
,
1
));
git_config_free
(
config
);
cl_git_pass
(
git_remote_lookup
(
&
origin
,
repo
,
GIT_REMOTE_ORIGIN
));
cl_assert_equal_i
(
1
,
git_remote_prune_refs
(
origin
));
git_remote_set_callbacks
(
origin
,
&
callbacks
);
cl_git_pass
(
git_remote_fetch
(
origin
,
NULL
,
NULL
,
NULL
));
cl_git_pass
(
git_revparse_single
(
&
obj
,
repo
,
"some-tag"
));
cl_git_fail
(
git_revparse_single
(
&
obj
,
repo
,
"refs/remotes/origin/fake-remote"
));
git_object_free
(
obj
);
git_remote_free
(
origin
);
git_repository_free
(
remote_repo
);
git_repository_free
(
repo
);
}
static
void
cleanup_sandbox
(
void
*
unused
)
{
GIT_UNUSED
(
unused
);
...
...
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