-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add simple tests of consistency across rebase types
Helped-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Martin von Zweigbergk <martinvonz@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Martin von Zweigbergk
authored and
Junio C Hamano
committed
Jun 7, 2013
1 parent
edca415
commit 2aad7ca
Showing
2 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
#!/bin/sh | ||
|
||
test_description='basic rebase topology tests' | ||
. ./test-lib.sh | ||
. "$TEST_DIRECTORY"/lib-rebase.sh | ||
|
||
# a---b---c | ||
# \ | ||
# d---e | ||
test_expect_success 'setup' ' | ||
test_commit a && | ||
test_commit b && | ||
test_commit c && | ||
git checkout b && | ||
test_commit d && | ||
test_commit e | ||
' | ||
|
||
test_run_rebase () { | ||
result=$1 | ||
shift | ||
test_expect_$result "simple rebase $*" " | ||
reset_rebase && | ||
git rebase $* c e && | ||
test_cmp_rev c HEAD~2 && | ||
test_linear_range 'd e' c.. | ||
" | ||
} | ||
test_run_rebase success '' | ||
test_run_rebase success -m | ||
test_run_rebase success -i | ||
test_run_rebase success -p | ||
|
||
test_run_rebase () { | ||
result=$1 | ||
shift | ||
test_expect_$result "rebase $* is no-op if upstream is an ancestor" " | ||
reset_rebase && | ||
git rebase $* b e && | ||
test_cmp_rev e HEAD | ||
" | ||
} | ||
test_run_rebase success '' | ||
test_run_rebase success -m | ||
test_run_rebase success -i | ||
test_run_rebase success -p | ||
|
||
test_run_rebase () { | ||
result=$1 | ||
shift | ||
test_expect_$result "rebase $* -f rewrites even if upstream is an ancestor" " | ||
reset_rebase && | ||
git rebase $* -f b e && | ||
! test_cmp_rev e HEAD && | ||
test_cmp_rev b HEAD~2 && | ||
test_linear_range 'd e' b.. | ||
" | ||
} | ||
test_run_rebase success '' | ||
test_run_rebase success -m | ||
test_run_rebase success -i | ||
test_run_rebase failure -p | ||
|
||
test_run_rebase () { | ||
result=$1 | ||
shift | ||
test_expect_$result "rebase $* fast-forwards from ancestor of upstream" " | ||
reset_rebase && | ||
git rebase $* e b && | ||
test_cmp_rev e HEAD | ||
" | ||
} | ||
test_run_rebase success '' | ||
test_run_rebase success -m | ||
test_run_rebase success -i | ||
test_run_rebase success -p | ||
|
||
test_done |