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
2ba9a0dd
Commit
2ba9a0dd
authored
Mar 09, 2016
by
Carlos Martín Nieto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3623 from ethomson/rebase_with_commit
rebase: additional setup tests of exotic behavior
parents
ac6f62de
09d99680
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
288 additions
and
5 deletions
+288
-5
tests/rebase/abort.c
+26
-5
tests/rebase/merge.c
+57
-0
tests/rebase/setup.c
+205
-0
No files found.
tests/rebase/abort.c
View file @
2ba9a0dd
...
...
@@ -86,19 +86,41 @@ void test_rebase_abort__merge(void)
git_rebase_free
(
rebase
);
}
void
test_rebase_abort__merge_by_id
(
void
)
{
git_rebase
*
rebase
;
git_oid
branch_id
,
onto_id
;
git_annotated_commit
*
branch_head
,
*
onto_head
;
cl_git_pass
(
git_oid_fromstr
(
&
branch_id
,
"b146bd7608eac53d9bf9e1a6963543588b555c64"
));
cl_git_pass
(
git_oid_fromstr
(
&
onto_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
branch_head
,
repo
,
&
branch_id
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
onto_head
,
repo
,
&
onto_id
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
NULL
,
onto_head
,
NULL
));
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_REBASE_MERGE
,
git_repository_state
(
repo
));
test_abort
(
branch_head
,
onto_head
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
onto_head
);
git_rebase_free
(
rebase
);
}
void
test_rebase_abort__detached_head
(
void
)
{
git_rebase
*
rebase
;
git_oid
branch_id
;
git_reference
*
onto_ref
;
git_oid
branch_id
,
onto_id
;
git_signature
*
signature
;
git_annotated_commit
*
branch_head
,
*
onto_head
;
git_oid_fromstr
(
&
branch_id
,
"b146bd7608eac53d9bf9e1a6963543588b555c64"
);
cl_git_pass
(
git_reference_lookup
(
&
onto_ref
,
repo
,
"refs/heads/master"
)
);
git_oid_fromstr
(
&
onto_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_git_pass
(
git_annotated_commit_lookup
(
&
branch_head
,
repo
,
&
branch_id
));
cl_git_pass
(
git_annotated_commit_
from_ref
(
&
onto_head
,
repo
,
onto_ref
));
cl_git_pass
(
git_annotated_commit_
lookup
(
&
onto_head
,
repo
,
&
onto_id
));
cl_git_pass
(
git_signature_new
(
&
signature
,
"Rebaser"
,
"rebaser@example.com"
,
1404157834
,
-
400
));
...
...
@@ -112,7 +134,6 @@ void test_rebase_abort__detached_head(void)
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
onto_head
);
git_reference_free
(
onto_ref
);
git_rebase_free
(
rebase
);
}
...
...
tests/rebase/merge.c
View file @
2ba9a0dd
...
...
@@ -252,6 +252,63 @@ void test_rebase_merge__commit(void)
git_rebase_free
(
rebase
);
}
void
test_rebase_merge__commit_with_id
(
void
)
{
git_rebase
*
rebase
;
git_oid
branch_id
,
upstream_id
;
git_annotated_commit
*
branch_head
,
*
upstream_head
;
git_rebase_operation
*
rebase_operation
;
git_oid
commit_id
,
tree_id
,
parent_id
;
git_signature
*
author
;
git_commit
*
commit
;
git_reflog
*
reflog
;
const
git_reflog_entry
*
reflog_entry
;
cl_git_pass
(
git_oid_fromstr
(
&
branch_id
,
"b146bd7608eac53d9bf9e1a6963543588b555c64"
));
cl_git_pass
(
git_oid_fromstr
(
&
upstream_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
branch_head
,
repo
,
&
branch_id
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
upstream_head
,
repo
,
&
upstream_id
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
NULL
,
NULL
));
cl_git_pass
(
git_rebase_next
(
&
rebase_operation
,
rebase
));
cl_git_pass
(
git_rebase_commit
(
&
commit_id
,
rebase
,
NULL
,
signature
,
NULL
,
NULL
));
cl_git_pass
(
git_commit_lookup
(
&
commit
,
repo
,
&
commit_id
));
git_oid_fromstr
(
&
parent_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_assert_equal_i
(
1
,
git_commit_parentcount
(
commit
));
cl_assert_equal_oid
(
&
parent_id
,
git_commit_parent_id
(
commit
,
0
));
git_oid_fromstr
(
&
tree_id
,
"4461379789c777d2a6c1f2ee0e9d6c86731b9992"
);
cl_assert_equal_oid
(
&
tree_id
,
git_commit_tree_id
(
commit
));
cl_assert_equal_s
(
NULL
,
git_commit_message_encoding
(
commit
));
cl_assert_equal_s
(
"Modification 1 to beef
\n
"
,
git_commit_message
(
commit
));
cl_git_pass
(
git_signature_new
(
&
author
,
"Edward Thomson"
,
"ethomson@edwardthomson.com"
,
1405621769
,
0
-
(
4
*
60
)));
cl_assert
(
git_signature__equal
(
author
,
git_commit_author
(
commit
)));
cl_assert
(
git_signature__equal
(
signature
,
git_commit_committer
(
commit
)));
/* Make sure the reflogs are updated appropriately */
cl_git_pass
(
git_reflog_read
(
&
reflog
,
repo
,
"HEAD"
));
cl_assert
(
reflog_entry
=
git_reflog_entry_byindex
(
reflog
,
0
));
cl_assert_equal_oid
(
&
parent_id
,
git_reflog_entry_id_old
(
reflog_entry
));
cl_assert_equal_oid
(
&
commit_id
,
git_reflog_entry_id_new
(
reflog_entry
));
cl_assert_equal_s
(
"rebase: Modification 1 to beef"
,
git_reflog_entry_message
(
reflog_entry
));
git_reflog_free
(
reflog
);
git_signature_free
(
author
);
git_commit_free
(
commit
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
upstream_head
);
git_rebase_free
(
rebase
);
}
void
test_rebase_merge__blocked_when_dirty
(
void
)
{
git_rebase
*
rebase
;
...
...
tests/rebase/setup.c
View file @
2ba9a0dd
...
...
@@ -196,6 +196,115 @@ void test_rebase_setup__merge_onto_and_upstream(void)
git_rebase_free
(
rebase
);
}
/* git checkout beef && git rebase --merge --onto master gravy veal */
void
test_rebase_setup__merge_onto_upstream_and_branch
(
void
)
{
git_rebase
*
rebase
;
git_reference
*
upstream_ref
,
*
branch_ref
,
*
onto_ref
;
git_annotated_commit
*
upstream_head
,
*
branch_head
,
*
onto_head
;
git_reference
*
head
;
git_commit
*
head_commit
;
git_oid
head_id
;
git_checkout_options
checkout_opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
checkout_opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_NONE
,
git_repository_state
(
repo
));
cl_git_pass
(
git_repository_set_head
(
repo
,
"refs/heads/beef"
));
cl_git_pass
(
git_checkout_head
(
repo
,
&
checkout_opts
));
cl_git_pass
(
git_reference_lookup
(
&
branch_ref
,
repo
,
"refs/heads/veal"
));
cl_git_pass
(
git_reference_lookup
(
&
upstream_ref
,
repo
,
"refs/heads/gravy"
));
cl_git_pass
(
git_reference_lookup
(
&
onto_ref
,
repo
,
"refs/heads/master"
));
cl_git_pass
(
git_annotated_commit_from_ref
(
&
branch_head
,
repo
,
branch_ref
));
cl_git_pass
(
git_annotated_commit_from_ref
(
&
upstream_head
,
repo
,
upstream_ref
));
cl_git_pass
(
git_annotated_commit_from_ref
(
&
onto_head
,
repo
,
onto_ref
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
onto_head
,
NULL
));
git_oid_fromstr
(
&
head_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_git_pass
(
git_repository_head
(
&
head
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
head_commit
,
head
,
GIT_OBJ_COMMIT
));
cl_assert_equal_oid
(
&
head_id
,
git_commit_id
(
head_commit
));
cl_assert_equal_file
(
"f87d14a4a236582a0278a916340a793714256864
\n
"
,
41
,
"rebase/.git/ORIG_HEAD"
);
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_REBASE_MERGE
,
git_repository_state
(
repo
));
cl_assert_equal_file
(
"3e8989b5a16d5258c935d998ef0e6bb139cc4757
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.1"
);
cl_assert_equal_file
(
"4cacc6f6e740a5bc64faa33e04b8ef0733d8a127
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.2"
);
cl_assert_equal_file
(
"f87d14a4a236582a0278a916340a793714256864
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.3"
);
cl_assert_equal_file
(
"3
\n
"
,
2
,
"rebase/.git/rebase-merge/end"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto"
);
cl_assert_equal_file
(
"master
\n
"
,
7
,
"rebase/.git/rebase-merge/onto_name"
);
cl_assert_equal_file
(
"f87d14a4a236582a0278a916340a793714256864
\n
"
,
41
,
"rebase/.git/rebase-merge/orig-head"
);
git_commit_free
(
head_commit
);
git_reference_free
(
head
);
git_annotated_commit_free
(
upstream_head
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
onto_head
);
git_reference_free
(
upstream_ref
);
git_reference_free
(
branch_ref
);
git_reference_free
(
onto_ref
);
git_rebase_free
(
rebase
);
}
/* git checkout beef && git rebase --merge --onto `git rev-parse master`
* `git rev-parse veal` `git rev-parse gravy`
*/
void
test_rebase_setup__merge_onto_upstream_and_branch_by_id
(
void
)
{
git_rebase
*
rebase
;
git_oid
upstream_id
,
branch_id
,
onto_id
;
git_annotated_commit
*
upstream_head
,
*
branch_head
,
*
onto_head
;
git_reference
*
head
;
git_commit
*
head_commit
;
git_oid
head_id
;
git_checkout_options
checkout_opts
=
GIT_CHECKOUT_OPTIONS_INIT
;
checkout_opts
.
checkout_strategy
=
GIT_CHECKOUT_FORCE
;
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_NONE
,
git_repository_state
(
repo
));
cl_git_pass
(
git_repository_set_head
(
repo
,
"refs/heads/beef"
));
cl_git_pass
(
git_checkout_head
(
repo
,
&
checkout_opts
));
cl_git_pass
(
git_oid_fromstr
(
&
upstream_id
,
"f87d14a4a236582a0278a916340a793714256864"
));
cl_git_pass
(
git_oid_fromstr
(
&
branch_id
,
"d616d97082eb7bb2dc6f180a7cca940993b7a56f"
));
cl_git_pass
(
git_oid_fromstr
(
&
onto_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
upstream_head
,
repo
,
&
upstream_id
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
branch_head
,
repo
,
&
branch_id
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
onto_head
,
repo
,
&
onto_id
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
onto_head
,
NULL
));
git_oid_fromstr
(
&
head_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_git_pass
(
git_repository_head
(
&
head
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
head_commit
,
head
,
GIT_OBJ_COMMIT
));
cl_assert_equal_oid
(
&
head_id
,
git_commit_id
(
head_commit
));
cl_assert_equal_file
(
"d616d97082eb7bb2dc6f180a7cca940993b7a56f
\n
"
,
41
,
"rebase/.git/ORIG_HEAD"
);
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_REBASE_MERGE
,
git_repository_state
(
repo
));
cl_assert_equal_file
(
"d616d97082eb7bb2dc6f180a7cca940993b7a56f
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.1"
);
cl_assert_equal_file
(
"1
\n
"
,
2
,
"rebase/.git/rebase-merge/end"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto_name"
);
cl_assert_equal_file
(
"d616d97082eb7bb2dc6f180a7cca940993b7a56f
\n
"
,
41
,
"rebase/.git/rebase-merge/orig-head"
);
git_commit_free
(
head_commit
);
git_reference_free
(
head
);
git_annotated_commit_free
(
upstream_head
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
onto_head
);
git_rebase_free
(
rebase
);
}
/* Ensure merge commits are dropped in a rebase */
/* git checkout veal && git rebase --merge master */
void
test_rebase_setup__branch_with_merges
(
void
)
...
...
@@ -342,6 +451,102 @@ void test_rebase_setup__merge_null_branch_uses_HEAD(void)
git_rebase_free
(
rebase
);
}
/* git checkout b146bd7608eac53d9bf9e1a6963543588b555c64 && git rebase --merge master */
void
test_rebase_setup__merge_from_detached
(
void
)
{
git_rebase
*
rebase
;
git_reference
*
upstream_ref
;
git_annotated_commit
*
branch_head
,
*
upstream_head
;
git_reference
*
head
;
git_commit
*
head_commit
;
git_oid
branch_id
,
head_id
;
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_NONE
,
git_repository_state
(
repo
));
cl_git_pass
(
git_reference_lookup
(
&
upstream_ref
,
repo
,
"refs/heads/master"
));
cl_git_pass
(
git_oid_fromstr
(
&
branch_id
,
"b146bd7608eac53d9bf9e1a6963543588b555c64"
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
branch_head
,
repo
,
&
branch_id
));
cl_git_pass
(
git_annotated_commit_from_ref
(
&
upstream_head
,
repo
,
upstream_ref
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
NULL
,
NULL
));
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_REBASE_MERGE
,
git_repository_state
(
repo
));
git_oid_fromstr
(
&
head_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_git_pass
(
git_repository_head
(
&
head
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
head_commit
,
head
,
GIT_OBJ_COMMIT
));
cl_assert_equal_oid
(
&
head_id
,
git_commit_id
(
head_commit
));
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/ORIG_HEAD"
);
cl_assert_equal_file
(
"da9c51a23d02d931a486f45ad18cda05cf5d2b94
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.1"
);
cl_assert_equal_file
(
"8d1f13f93c4995760ac07d129246ac1ff64c0be9
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.2"
);
cl_assert_equal_file
(
"3069cc907e6294623e5917ef6de663928c1febfb
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.3"
);
cl_assert_equal_file
(
"588e5d2f04d49707fe4aab865e1deacaf7ef6787
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.4"
);
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.5"
);
cl_assert_equal_file
(
"5
\n
"
,
2
,
"rebase/.git/rebase-merge/end"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto"
);
cl_assert_equal_file
(
"master
\n
"
,
7
,
"rebase/.git/rebase-merge/onto_name"
);
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/rebase-merge/orig-head"
);
git_commit_free
(
head_commit
);
git_reference_free
(
head
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
upstream_head
);
git_reference_free
(
upstream_ref
);
git_rebase_free
(
rebase
);
}
/* git checkout beef && git rebase --merge efad0b11c47cb2f0220cbd6f5b0f93bb99064b00 */
void
test_rebase_setup__merge_branch_by_id
(
void
)
{
git_rebase
*
rebase
;
git_reference
*
branch_ref
;
git_annotated_commit
*
branch_head
,
*
upstream_head
;
git_reference
*
head
;
git_commit
*
head_commit
;
git_oid
head_id
,
upstream_id
;
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_NONE
,
git_repository_state
(
repo
));
cl_git_pass
(
git_reference_lookup
(
&
branch_ref
,
repo
,
"refs/heads/beef"
));
cl_git_pass
(
git_oid_fromstr
(
&
upstream_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
));
cl_git_pass
(
git_annotated_commit_from_ref
(
&
branch_head
,
repo
,
branch_ref
));
cl_git_pass
(
git_annotated_commit_lookup
(
&
upstream_head
,
repo
,
&
upstream_id
));
cl_git_pass
(
git_rebase_init
(
&
rebase
,
repo
,
branch_head
,
upstream_head
,
NULL
,
NULL
));
cl_assert_equal_i
(
GIT_REPOSITORY_STATE_REBASE_MERGE
,
git_repository_state
(
repo
));
git_oid_fromstr
(
&
head_id
,
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00"
);
cl_git_pass
(
git_repository_head
(
&
head
,
repo
));
cl_git_pass
(
git_reference_peel
((
git_object
**
)
&
head_commit
,
head
,
GIT_OBJ_COMMIT
));
cl_assert_equal_oid
(
&
head_id
,
git_commit_id
(
head_commit
));
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/ORIG_HEAD"
);
cl_assert_equal_file
(
"da9c51a23d02d931a486f45ad18cda05cf5d2b94
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.1"
);
cl_assert_equal_file
(
"8d1f13f93c4995760ac07d129246ac1ff64c0be9
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.2"
);
cl_assert_equal_file
(
"3069cc907e6294623e5917ef6de663928c1febfb
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.3"
);
cl_assert_equal_file
(
"588e5d2f04d49707fe4aab865e1deacaf7ef6787
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.4"
);
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/rebase-merge/cmt.5"
);
cl_assert_equal_file
(
"5
\n
"
,
2
,
"rebase/.git/rebase-merge/end"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto"
);
cl_assert_equal_file
(
"efad0b11c47cb2f0220cbd6f5b0f93bb99064b00
\n
"
,
41
,
"rebase/.git/rebase-merge/onto_name"
);
cl_assert_equal_file
(
"b146bd7608eac53d9bf9e1a6963543588b555c64
\n
"
,
41
,
"rebase/.git/rebase-merge/orig-head"
);
git_commit_free
(
head_commit
);
git_reference_free
(
head
);
git_annotated_commit_free
(
branch_head
);
git_annotated_commit_free
(
upstream_head
);
git_reference_free
(
branch_ref
);
git_rebase_free
(
rebase
);
}
static
int
rebase_is_blocked
(
void
)
{
git_rebase
*
rebase
=
NULL
;
...
...
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