3 test_description
='commit-msg hook'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
10 test_expect_success
'with no hook' '
18 # set up fake editor for interactive editing
19 cat > fake-editor
<<'EOF'
26 ## Not using test_set_editor here so we can easily ensure the editor variable
27 ## is only set for the editor tests
28 FAKE_EDITOR
="$(pwd)/fake-editor"
31 test_expect_success
'with no hook (editor)' '
33 echo "more foo" >> file &&
35 echo "more foo" > FAKE_MSG &&
36 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit
40 test_expect_success
'--no-verify with no hook' '
44 git commit --no-verify -m "bar"
48 test_expect_success
'--no-verify with no hook (editor)' '
50 echo "more bar" > file &&
52 echo "more bar" > FAKE_MSG &&
53 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit --no-verify
57 # now install hook that always succeeds
58 HOOKDIR
="$(git rev-parse --git-dir)/hooks"
59 HOOK
="$HOOKDIR/commit-msg"
67 test_expect_success
'with succeeding hook' '
69 echo "more" >> file &&
75 test_expect_success
'with succeeding hook (editor)' '
77 echo "more more" >> file &&
79 echo "more more" > FAKE_MSG &&
80 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit
84 test_expect_success
'--no-verify with succeeding hook' '
86 echo "even more" >> file &&
88 git commit --no-verify -m "even more"
92 test_expect_success
'--no-verify with succeeding hook (editor)' '
94 echo "even more more" >> file &&
96 echo "even more more" > FAKE_MSG &&
97 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit --no-verify
101 # now a hook that fails
108 test "$(git log --pretty=format:%s%b -1)" = "$1"
111 test_expect_success
'with failing hook' '
113 echo "another" >> file &&
115 test_must_fail git commit -m "another"
119 test_expect_success
'with failing hook (editor)' '
121 echo "more another" >> file &&
123 echo "more another" > FAKE_MSG &&
124 ! (GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit)
128 test_expect_success
'--no-verify with failing hook' '
130 echo "stuff" >> file &&
132 git commit --no-verify -m "stuff"
136 test_expect_success
'-n followed by --verify with failing hook' '
138 echo "even more" >> file &&
140 test_must_fail git commit -n --verify -m "even more"
144 test_expect_success
'--no-verify with failing hook (editor)' '
146 echo "more stuff" >> file &&
148 echo "more stuff" > FAKE_MSG &&
149 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit --no-verify
153 test_expect_success
'merge fails with failing hook' '
155 test_when_finished "git branch -D newbranch" &&
156 test_when_finished "git checkout -f main" &&
157 git checkout --orphan newbranch &&
160 git commit --no-verify file2 -m in-side-branch &&
161 test_must_fail git merge --allow-unrelated-histories main &&
162 commit_msg_is "in-side-branch" # HEAD before merge
166 test_expect_success
'merge bypasses failing hook with --no-verify' '
168 test_when_finished "git branch -D newbranch" &&
169 test_when_finished "git checkout -f main" &&
170 git checkout --orphan newbranch &&
174 git commit --no-verify file2 -m in-side-branch &&
175 git merge --no-verify --allow-unrelated-histories main &&
176 commit_msg_is "Merge branch '\''main'\'' into newbranch"
181 test_expect_success POSIXPERM
'with non-executable hook' '
183 echo "content" >file &&
185 git commit -m "content"
189 test_expect_success POSIXPERM
'with non-executable hook (editor)' '
191 echo "content again" >> file &&
193 echo "content again" > FAKE_MSG &&
194 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit -m "content again"
198 test_expect_success POSIXPERM
'--no-verify with non-executable hook' '
200 echo "more content" >> file &&
202 git commit --no-verify -m "more content"
206 test_expect_success POSIXPERM
'--no-verify with non-executable hook (editor)' '
208 echo "even more content" >> file &&
210 echo "even more content" > FAKE_MSG &&
211 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit --no-verify
215 # now a hook that edits the commit message
216 cat > "$HOOK" <<'EOF'
218 echo "new message" > "$1"
223 test_expect_success
'hook edits commit message' '
225 echo "additional" >> file &&
227 git commit -m "additional" &&
228 commit_msg_is "new message"
232 test_expect_success
'hook edits commit message (editor)' '
234 echo "additional content" >> file &&
236 echo "additional content" > FAKE_MSG &&
237 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit &&
238 commit_msg_is "new message"
242 test_expect_success
"hook doesn't edit commit message" '
244 echo "plus" >> file &&
246 git commit --no-verify -m "plus" &&
251 test_expect_success
"hook doesn't edit commit message (editor)" '
253 echo "more plus" >> file &&
255 echo "more plus" > FAKE_MSG &&
256 GIT_EDITOR="\"\$FAKE_EDITOR\"" git commit --no-verify &&
257 commit_msg_is "more plus"
260 test_expect_success
'hook called in git-merge picks up commit message' '
261 test_when_finished "git branch -D newbranch" &&
262 test_when_finished "git checkout -f main" &&
263 git checkout --orphan newbranch &&
267 git commit --no-verify file2 -m in-side-branch &&
268 git merge --allow-unrelated-histories main &&
269 commit_msg_is "new message"
272 test_expect_failure
'merge --continue remembers --no-verify' '
273 test_when_finished "git branch -D newbranch" &&
274 test_when_finished "git checkout -f main" &&
278 git commit --no-verify -m "add file2 to main" &&
279 git checkout -b newbranch main^ &&
282 git commit --no-verify file2 -m in-side-branch &&
283 git merge --no-verify -m not-rewritten-by-hook main &&
287 git merge --continue &&
288 commit_msg_is not-rewritten-by-hook
291 # set up fake editor to replace `pick` by `reword`
292 cat > reword-editor
<<'EOF'
295 sed 's/^pick/reword/' <"$1".bup >"$1"
297 chmod +x reword-editor
298 REWORD_EDITOR
="$(pwd)/reword-editor"
301 test_expect_success
'hook is called for reword during `rebase -i`' '
303 GIT_SEQUENCE_EDITOR="\"$REWORD_EDITOR\"" git rebase -i HEAD^ &&
304 commit_msg_is "new message"