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) &&
113 test_must_fail git rebase --quit 2>err &&
114 test_grep "no rebase in progress" err
117 test_expect_success
'pre-rebase hook stops rebase (2)' '
119 git reset --hard side &&
120 test_must_fail env EDITOR=: git rebase -i main &&
121 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
122 test 0 = $(git rev-list HEAD...side | wc -l)
125 test_expect_success
'rebase --no-verify overrides pre-rebase (1)' '
127 git reset --hard side &&
128 git rebase --no-verify main &&
129 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
130 test "z$(cat git)" = zworld
133 test_expect_success
'rebase --no-verify overrides pre-rebase (2)' '
135 git reset --hard side &&
136 EDITOR=true git rebase --no-verify -i main &&
137 test "z$(git symbolic-ref HEAD)" = zrefs/heads/test &&
138 test "z$(cat git)" = zworld