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
51a5e133
Commit
51a5e133
authored
Aug 16, 2013
by
Vicent Martí
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1778 from libgit2/push_tag_to_tag_test
push: handle tag chains correctly
parents
b2be62fd
5ce6c1e9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
49 additions
and
11 deletions
+49
-11
src/push.c
+32
-11
tests-clar/online/push.c
+12
-0
tests-clar/resources/push_src/.gitted/objects/36/f79b2846017d3761e0a02d0bccd573e0f90c57
+3
-0
tests-clar/resources/push_src/.gitted/objects/ee/a4f2705eeec2db3813f2430829afce99cd00b5
+0
-0
tests-clar/resources/push_src/.gitted/refs/tags/tag-commit-two
+1
-0
tests-clar/resources/push_src/.gitted/refs/tags/tag-tag
+1
-0
No files found.
src/push.c
View file @
51a5e133
...
...
@@ -233,6 +233,37 @@ on_error:
return
error
;
}
/**
* Insert all tags until we find a non-tag object, which is returned
* in `out`.
*/
static
int
enqueue_tag
(
git_object
**
out
,
git_push
*
push
,
git_oid
*
id
)
{
git_object
*
obj
=
NULL
,
*
target
=
NULL
;
int
error
;
if
((
error
=
git_object_lookup
(
&
obj
,
push
->
repo
,
id
,
GIT_OBJ_TAG
))
<
0
)
return
error
;
while
(
git_object_type
(
obj
)
==
GIT_OBJ_TAG
)
{
if
((
error
=
git_packbuilder_insert
(
push
->
pb
,
git_object_id
(
obj
),
NULL
))
<
0
)
break
;
if
((
error
=
git_tag_target
(
&
target
,
(
git_tag
*
)
obj
))
<
0
)
break
;
git_object_free
(
obj
);
obj
=
target
;
}
if
(
error
<
0
)
git_object_free
(
obj
);
else
*
out
=
obj
;
return
error
;
}
static
int
revwalk
(
git_vector
*
commits
,
git_push
*
push
)
{
git_remote_head
*
head
;
...
...
@@ -265,21 +296,11 @@ static int revwalk(git_vector *commits, git_push *push)
goto
on_error
;
if
(
type
==
GIT_OBJ_TAG
)
{
git_tag
*
tag
;
git_object
*
target
;
if
(
git_packbuilder_insert
(
push
->
pb
,
&
spec
->
loid
,
NULL
)
<
0
)
if
(
(
error
=
enqueue_tag
(
&
target
,
push
,
&
spec
->
loid
)
)
<
0
)
goto
on_error
;
if
(
git_tag_lookup
(
&
tag
,
push
->
repo
,
&
spec
->
loid
)
<
0
)
goto
on_error
;
if
(
git_tag_peel
(
&
target
,
tag
)
<
0
)
{
git_tag_free
(
tag
);
goto
on_error
;
}
git_tag_free
(
tag
);
if
(
git_object_type
(
target
)
==
GIT_OBJ_COMMIT
)
{
if
(
git_revwalk_push
(
rw
,
git_object_id
(
target
))
<
0
)
{
git_object_free
(
target
);
...
...
tests-clar/online/push.c
View file @
51a5e133
...
...
@@ -33,6 +33,7 @@ static git_oid _tag_commit;
static
git_oid
_tag_tree
;
static
git_oid
_tag_blob
;
static
git_oid
_tag_lightweight
;
static
git_oid
_tag_tag
;
static
int
cred_acquire_cb
(
git_cred
**
cred
,
...
...
@@ -279,6 +280,7 @@ void test_online_push__initialize(void)
git_oid_fromstr
(
&
_tag_tree
,
"ff83aa4c5e5d28e3bcba2f5c6e2adc61286a4e5e"
);
git_oid_fromstr
(
&
_tag_blob
,
"b483ae7ba66decee9aee971f501221dea84b1498"
);
git_oid_fromstr
(
&
_tag_lightweight
,
"951bbbb90e2259a4c8950db78946784fb53fcbce"
);
git_oid_fromstr
(
&
_tag_tag
,
"eea4f2705eeec2db3813f2430829afce99cd00b5"
);
/* Remote URL environment variable must be set. User and password are optional. */
_remote_url
=
cl_getenv
(
"GITTEST_REMOTE_URL"
);
...
...
@@ -579,6 +581,16 @@ void test_online_push__tag_lightweight(void)
exp_refs
,
ARRAY_SIZE
(
exp_refs
),
0
);
}
void
test_online_push__tag_to_tag
(
void
)
{
const
char
*
specs
[]
=
{
"refs/tags/tag-tag:refs/tags/tag-tag"
};
push_status
exp_stats
[]
=
{
{
"refs/tags/tag-tag"
,
NULL
}
};
expected_ref
exp_refs
[]
=
{
{
"refs/tags/tag-tag"
,
&
_tag_tag
}
};
do_push
(
specs
,
ARRAY_SIZE
(
specs
),
exp_stats
,
ARRAY_SIZE
(
exp_stats
),
exp_refs
,
ARRAY_SIZE
(
exp_refs
),
0
);
}
void
test_online_push__force
(
void
)
{
const
char
*
specs1
[]
=
{
"refs/heads/b3:refs/heads/tgt"
};
...
...
tests-clar/resources/push_src/.gitted/objects/36/f79b2846017d3761e0a02d0bccd573e0f90c57
0 → 100644
View file @
51a5e133
File added
tests-clar/resources/push_src/.gitted/objects/ee/a4f2705eeec2db3813f2430829afce99cd00b5
0 → 100644
View file @
51a5e133
File added
tests-clar/resources/push_src/.gitted/refs/tags/tag-commit-two
0 → 100644
View file @
51a5e133
36f79b2846017d3761e0a02d0bccd573e0f90c57
tests-clar/resources/push_src/.gitted/refs/tags/tag-tag
0 → 100644
View file @
51a5e133
eea4f2705eeec2db3813f2430829afce99cd00b5
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