t5520: use test_config to set/unset git config variables (leftover bits)
[git.git] / t / t7502-commit.sh
blobb0ae7059367fdb50dfc04fe87ae69e03abbb03bd
1 #!/bin/sh
3 test_description='git commit porcelain-ish'
5 . ./test-lib.sh
7 commit_msg_is () {
8 expect=commit_msg_is.expect
9 actual=commit_msg_is.actual
11 printf "%s" "$(git log --pretty=format:%s%b -1)" >$actual &&
12 printf "%s" "$1" >$expect &&
13 test_i18ncmp $expect $actual
16 # Arguments: [<prefix] [<commit message>] [<commit options>]
17 check_summary_oneline() {
18 test_tick &&
19 git commit ${3+"$3"} -m "$2" | head -1 > act &&
21 # branch name
22 SUMMARY_PREFIX="$(git name-rev --name-only HEAD)" &&
24 # append the "special" prefix, like "root-commit", "detached HEAD"
25 if test -n "$1"
26 then
27 SUMMARY_PREFIX="$SUMMARY_PREFIX ($1)"
30 # abbrev SHA-1
31 SUMMARY_POSTFIX="$(git log -1 --pretty='format:%h')"
32 echo "[$SUMMARY_PREFIX $SUMMARY_POSTFIX] $2" >exp &&
34 test_i18ncmp exp act
37 test_expect_success 'output summary format' '
39 echo new >file1 &&
40 git add file1 &&
41 check_summary_oneline "root-commit" "initial" &&
43 echo change >>file1 &&
44 git add file1
47 test_expect_success 'output summary format: root-commit' '
48 check_summary_oneline "" "a change"
51 test_expect_success 'output summary format for commit with an empty diff' '
53 check_summary_oneline "" "empty" "--allow-empty"
56 test_expect_success 'output summary format for merges' '
58 git checkout -b recursive-base &&
59 test_commit base file1 &&
61 git checkout -b recursive-a recursive-base &&
62 test_commit commit-a file1 &&
64 git checkout -b recursive-b recursive-base &&
65 test_commit commit-b file1 &&
67 # conflict
68 git checkout recursive-a &&
69 test_must_fail git merge recursive-b &&
70 # resolve the conflict
71 echo commit-a > file1 &&
72 git add file1 &&
73 check_summary_oneline "" "Merge"
76 output_tests_cleanup() {
77 # this is needed for "do not fire editor in the presence of conflicts"
78 git checkout master &&
80 # this is needed for the "partial removal" test to pass
81 git rm file1 &&
82 git commit -m "cleanup"
85 test_expect_success 'the basics' '
87 output_tests_cleanup &&
89 echo doing partial >"commit is" &&
90 mkdir not &&
91 echo very much encouraged but we should >not/forbid &&
92 git add "commit is" not &&
93 echo update added "commit is" file >"commit is" &&
94 echo also update another >not/forbid &&
95 test_tick &&
96 git commit -a -m "initial with -a" &&
98 git cat-file blob HEAD:"commit is" >current.1 &&
99 git cat-file blob HEAD:not/forbid >current.2 &&
101 cmp current.1 "commit is" &&
102 cmp current.2 not/forbid
106 test_expect_success 'partial' '
108 echo another >"commit is" &&
109 echo another >not/forbid &&
110 test_tick &&
111 git commit -m "partial commit to handle a file" "commit is" &&
113 changed=$(git diff-tree --name-only HEAD^ HEAD) &&
114 test "$changed" = "commit is"
118 test_expect_success 'partial modification in a subdirectory' '
120 test_tick &&
121 git commit -m "partial commit to subdirectory" not &&
123 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
124 test "$changed" = "not/forbid"
128 test_expect_success 'partial removal' '
130 git rm not/forbid &&
131 git commit -m "partial commit to remove not/forbid" not &&
133 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
134 test "$changed" = "not/forbid" &&
135 remain=$(git ls-tree -r --name-only HEAD) &&
136 test "$remain" = "commit is"
140 test_expect_success 'sign off' '
142 >positive &&
143 git add positive &&
144 git commit -s -m "thank you" &&
145 actual=$(git cat-file commit HEAD | sed -ne "s/Signed-off-by: //p") &&
146 expected=$(git var GIT_COMMITTER_IDENT | sed -e "s/>.*/>/") &&
147 test "z$actual" = "z$expected"
151 test_expect_success 'multiple -m' '
153 >negative &&
154 git add negative &&
155 git commit -m "one" -m "two" -m "three" &&
156 actual=$(git cat-file commit HEAD | sed -e "1,/^\$/d") &&
157 expected=$(echo one; echo; echo two; echo; echo three) &&
158 test "z$actual" = "z$expected"
162 test_expect_success 'verbose' '
164 echo minus >negative &&
165 git add negative &&
166 git status -v | sed -ne "/^diff --git /p" >actual &&
167 echo "diff --git a/negative b/negative" >expect &&
168 test_cmp expect actual
172 test_expect_success 'verbose respects diff config' '
174 test_config color.diff always &&
175 git status -v >actual &&
176 grep "\[1mdiff --git" actual
179 test_expect_success 'cleanup commit messages (verbatim option,-t)' '
181 echo >>negative &&
182 { echo;echo "# text";echo; } >expect &&
183 git commit --cleanup=verbatim -t expect -a &&
184 git cat-file -p HEAD |sed -e "1,/^\$/d" |head -n 3 >actual &&
185 test_cmp expect actual
189 test_expect_success 'cleanup commit messages (verbatim option,-F)' '
191 echo >>negative &&
192 git commit --cleanup=verbatim -F expect -a &&
193 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
194 test_cmp expect actual
198 test_expect_success 'cleanup commit messages (verbatim option,-m)' '
200 echo >>negative &&
201 git commit --cleanup=verbatim -m "$(cat expect)" -a &&
202 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
203 test_cmp expect actual
207 test_expect_success 'cleanup commit messages (whitespace option,-F)' '
209 echo >>negative &&
210 { echo;echo "# text";echo; } >text &&
211 echo "# text" >expect &&
212 git commit --cleanup=whitespace -F text -a &&
213 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
214 test_cmp expect actual
218 test_expect_success 'cleanup commit messages (strip option,-F)' '
220 echo >>negative &&
221 { echo;echo "# text";echo sample;echo; } >text &&
222 echo sample >expect &&
223 git commit --cleanup=strip -F text -a &&
224 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
225 test_cmp expect actual
229 test_expect_success 'cleanup commit messages (strip option,-F,-e)' '
231 echo >>negative &&
232 { echo;echo sample;echo; } >text &&
233 git commit -e -F text -a &&
234 head -n 4 .git/COMMIT_EDITMSG >actual
237 echo "sample
239 # Please enter the commit message for your changes. Lines starting
240 # with '#' will be ignored, and an empty message aborts the commit." >expect
242 test_expect_success 'cleanup commit messages (strip option,-F,-e): output' '
243 test_i18ncmp expect actual
246 test_expect_success 'cleanup commit message (fail on invalid cleanup mode option)' '
247 test_must_fail git commit --cleanup=non-existent
250 test_expect_success 'cleanup commit message (fail on invalid cleanup mode configuration)' '
251 test_must_fail git -c commit.cleanup=non-existent commit
254 test_expect_success 'cleanup commit message (no config and no option uses default)' '
255 echo content >>file &&
256 git add file &&
257 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
258 git commit --no-status &&
259 commit_msg_is "commit message"
262 test_expect_success 'cleanup commit message (option overrides default)' '
263 echo content >>file &&
264 git add file &&
265 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
266 git commit --cleanup=whitespace --no-status &&
267 commit_msg_is "commit message # comment"
270 test_expect_success 'cleanup commit message (config overrides default)' '
271 echo content >>file &&
272 git add file &&
273 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
274 git -c commit.cleanup=whitespace commit --no-status &&
275 commit_msg_is "commit message # comment"
278 test_expect_success 'cleanup commit message (option overrides config)' '
279 echo content >>file &&
280 git add file &&
281 test_set_editor "$TEST_DIRECTORY"/t7500/add-content-and-comment &&
282 git -c commit.cleanup=whitespace commit --cleanup=default &&
283 commit_msg_is "commit message"
286 test_expect_success 'cleanup commit message (default, -m)' '
287 echo content >>file &&
288 git add file &&
289 git commit -m "message #comment " &&
290 commit_msg_is "message #comment"
293 test_expect_success 'cleanup commit message (whitespace option, -m)' '
294 echo content >>file &&
295 git add file &&
296 git commit --cleanup=whitespace --no-status -m "message #comment " &&
297 commit_msg_is "message #comment"
300 test_expect_success 'cleanup commit message (whitespace config, -m)' '
301 echo content >>file &&
302 git add file &&
303 git -c commit.cleanup=whitespace commit --no-status -m "message #comment " &&
304 commit_msg_is "message #comment"
307 test_expect_success 'message shows author when it is not equal to committer' '
308 echo >>negative &&
309 git commit -e -m "sample" -a &&
310 test_i18ngrep \
311 "^# Author: *A U Thor <author@example.com>\$" \
312 .git/COMMIT_EDITMSG
315 test_expect_success AUTOIDENT 'message shows committer when it is automatic' '
317 echo >>negative &&
319 sane_unset GIT_COMMITTER_EMAIL &&
320 sane_unset GIT_COMMITTER_NAME &&
321 git commit -e -m "sample" -a
322 ) &&
323 # the ident is calculated from the system, so we cannot
324 # check the actual value, only that it is there
325 test_i18ngrep "^# Committer: " .git/COMMIT_EDITMSG
328 write_script .git/FAKE_EDITOR <<EOF
329 echo editor started > "$(pwd)/.git/result"
330 exit 0
333 test_expect_success !AUTOIDENT 'do not fire editor when committer is bogus' '
334 >.git/result
335 >expect &&
337 echo >>negative &&
339 sane_unset GIT_COMMITTER_EMAIL &&
340 sane_unset GIT_COMMITTER_NAME &&
341 GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" &&
342 export GIT_EDITOR &&
343 test_must_fail git commit -e -m sample -a
344 ) &&
345 test_cmp expect .git/result
348 test_expect_success 'do not fire editor in the presence of conflicts' '
350 git clean -f &&
351 echo f >g &&
352 git add g &&
353 git commit -m "add g" &&
354 git branch second &&
355 echo master >g &&
356 echo g >h &&
357 git add g h &&
358 git commit -m "modify g and add h" &&
359 git checkout second &&
360 echo second >g &&
361 git add g &&
362 git commit -m second &&
363 # Must fail due to conflict
364 test_must_fail git cherry-pick -n master &&
365 echo "editor not started" >.git/result &&
367 GIT_EDITOR="\"$(pwd)/.git/FAKE_EDITOR\"" &&
368 export GIT_EDITOR &&
369 test_must_fail git commit
370 ) &&
371 test "$(cat .git/result)" = "editor not started"
374 write_script .git/FAKE_EDITOR <<EOF
375 # kill -TERM command added below.
378 test_expect_success EXECKEEPSPID 'a SIGTERM should break locks' '
379 echo >>negative &&
380 ! "$SHELL_PATH" -c '\''
381 echo kill -TERM $$ >> .git/FAKE_EDITOR
382 GIT_EDITOR=.git/FAKE_EDITOR
383 export GIT_EDITOR
384 exec git commit -a'\'' &&
385 test ! -f .git/index.lock
388 rm -f .git/MERGE_MSG .git/COMMIT_EDITMSG
389 git reset -q --hard
391 test_expect_success 'Hand committing of a redundant merge removes dups' '
393 git rev-parse second master >expect &&
394 test_must_fail git merge second master &&
395 git checkout master g &&
396 EDITOR=: git commit -a &&
397 git cat-file commit HEAD | sed -n -e "s/^parent //p" -e "/^$/q" >actual &&
398 test_cmp expect actual
402 test_expect_success 'A single-liner subject with a token plus colon is not a footer' '
404 git reset --hard &&
405 git commit -s -m "hello: kitty" --allow-empty &&
406 git cat-file commit HEAD | sed -e "1,/^$/d" >actual &&
407 test_line_count = 3 actual
411 write_script .git/FAKE_EDITOR <<\EOF
412 mv "$1" "$1.orig"
414 echo message
415 cat "$1.orig"
416 ) >"$1"
419 echo '## Custom template' >template
421 try_commit () {
422 git reset --hard &&
423 echo >>negative &&
424 GIT_EDITOR=.git/FAKE_EDITOR git commit -a $* $use_template &&
425 case "$use_template" in
427 test_i18ngrep ! "^## Custom template" .git/COMMIT_EDITMSG ;;
429 test_i18ngrep "^## Custom template" .git/COMMIT_EDITMSG ;;
430 esac
433 try_commit_status_combo () {
435 test_expect_success 'commit' '
436 try_commit "" &&
437 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
440 test_expect_success 'commit' '
441 try_commit "" &&
442 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
445 test_expect_success 'commit --status' '
446 try_commit --status &&
447 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
450 test_expect_success 'commit --no-status' '
451 try_commit --no-status &&
452 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
455 test_expect_success 'commit with commit.status = yes' '
456 test_config commit.status yes &&
457 try_commit "" &&
458 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
461 test_expect_success 'commit with commit.status = no' '
462 test_config commit.status no &&
463 try_commit "" &&
464 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
467 test_expect_success 'commit --status with commit.status = yes' '
468 test_config commit.status yes &&
469 try_commit --status &&
470 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
473 test_expect_success 'commit --no-status with commit.status = yes' '
474 test_config commit.status yes &&
475 try_commit --no-status &&
476 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
479 test_expect_success 'commit --status with commit.status = no' '
480 test_config commit.status no &&
481 try_commit --status &&
482 test_i18ngrep "^# Changes to be committed:" .git/COMMIT_EDITMSG
485 test_expect_success 'commit --no-status with commit.status = no' '
486 test_config commit.status no &&
487 try_commit --no-status &&
488 test_i18ngrep ! "^# Changes to be committed:" .git/COMMIT_EDITMSG
493 try_commit_status_combo
495 use_template="-t template"
497 try_commit_status_combo
499 test_expect_success 'commit --status with custom comment character' '
500 test_config core.commentchar ";" &&
501 try_commit --status &&
502 test_i18ngrep "^; Changes to be committed:" .git/COMMIT_EDITMSG
505 test_done