3 test_description
='git rebase with its hook(s)'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
10 test_expect_success setup
'
14 git commit -m initial &&
18 git commit -m second &&
19 git checkout -b side HEAD^ &&
25 git log --pretty=oneline --abbrev-commit --graph --all &&
29 test_expect_success
'rebase' '
31 git reset --hard side &&
33 test "z$(cat git)" = zworld
36 test_expect_success
'rebase -i' '
38 git reset --hard side &&
39 EDITOR=true git rebase -i main &&
40 test "z$(cat git)" = zworld
43 test_expect_success
'setup pre-rebase hook' '
44 test_hook --setup pre-rebase <<-\EOF
45 echo "$1,$2" >.git/PRE-REBASE-INPUT
49 test_expect_success
'pre-rebase hook gets correct input (1)' '
51 git reset --hard side &&
53 test "z$(cat git)" = zworld &&
54 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,
58 test_expect_success
'pre-rebase hook gets correct input (2)' '
60 git reset --hard side &&
61 git rebase main test &&
62 test "z$(cat git)" = zworld &&
63 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,test
66 test_expect_success
'pre-rebase hook gets correct input (3)' '
68 git reset --hard side &&
70 git rebase main test &&
71 test "z$(cat git)" = zworld &&
72 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,test
75 test_expect_success
'pre-rebase hook gets correct input (4)' '
77 git reset --hard side &&
78 EDITOR=true git rebase -i main &&
79 test "z$(cat git)" = zworld &&
80 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,
84 test_expect_success
'pre-rebase hook gets correct input (5)' '
86 git reset --hard side &&
87 EDITOR=true git rebase -i main test &&
88 test "z$(cat git)" = zworld &&
89 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,test
92 test_expect_success
'pre-rebase hook gets correct input (6)' '
94 git reset --hard side &&
96 EDITOR=true git rebase -i main test &&
97 test "z$(cat git)" = zworld &&
98 test "z$(cat .git/PRE-REBASE-INPUT)" = zmain,test
101 test_expect_success
'setup pre-rebase hook that fails' '
102 test_hook --setup --clobber pre-rebase <<-\EOF
107 test_expect_success
'pre-rebase hook stops rebase (1)' '
109 git reset --hard side &&
110 test_must_fail git rebase main &&
111 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
112 test 0 = $(git rev-list HEAD...side | wc -l)
115 test_expect_success
'pre-rebase hook stops rebase (2)' '
117 git reset --hard side &&
118 test_must_fail env EDITOR=: git rebase -i main &&
119 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
120 test 0 = $(git rev-list HEAD...side | wc -l)
123 test_expect_success
'rebase --no-verify overrides pre-rebase (1)' '
125 git reset --hard side &&
126 git rebase --no-verify main &&
127 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
128 test "z$(cat git)" = zworld
131 test_expect_success
'rebase --no-verify overrides pre-rebase (2)' '
133 git reset --hard side &&
134 EDITOR=true git rebase --no-verify -i main &&
135 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
136 test "z$(cat git)" = zworld