blob: 3ad04363b5920497617f806a18a3a5a0083ac1b9 [file] [log] [blame]
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -04001#!/bin/sh
2#
3# Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
4#
5
6# FIXME: Test the various index usages, -i and -o, test reflog,
Wincent Colaiuta264474f2007-12-08 13:29:47 +01007# signoff
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -04008
Nanako Shiraishi47a528a2008-09-03 17:59:33 +09009test_description='git commit'
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040010. ./test-lib.sh
11
12test_tick
13
14test_expect_success \
15 "initial status" \
16 "echo 'bongo bongo' >file &&
Ævar Arnfjörð Bjarmasonb3b298a2011-02-22 23:42:17 +000017 git add file"
18
Junio C Hamano32177ba2011-04-13 16:17:29 -070019test_expect_success "Constructing initial commit" '
20 git status >actual &&
21 test_i18ngrep "Initial commit" actual
22'
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040023
Junio C Hamano41ac4142008-02-01 01:50:53 -080024test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040025 "fail initial amend" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090026 "test_must_fail git commit --amend"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040027
28test_expect_success \
29 "initial commit" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090030 "git commit -m initial"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040031
Junio C Hamano41ac4142008-02-01 01:50:53 -080032test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040033 "invalid options 1" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090034 "test_must_fail git commit -m foo -m bar -F file"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040035
Junio C Hamano41ac4142008-02-01 01:50:53 -080036test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040037 "invalid options 2" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090038 "test_must_fail git commit -C HEAD -m illegal"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040039
Junio C Hamano41ac4142008-02-01 01:50:53 -080040test_expect_success \
Björn Steinbrink9d874422007-11-12 16:15:39 +010041 "using paths with -a" \
42 "echo King of the bongo >file &&
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090043 test_must_fail git commit -m foo -a file"
Björn Steinbrink9d874422007-11-12 16:15:39 +010044
Conrad Irwine41fcfe2011-05-06 23:00:00 -070045test_expect_success PERL 'can use paths with --interactive' '
Jeff King587ac8c2011-05-09 16:53:00 -070046 echo bong-o-bong >file &&
47 # 2: update, 1:st path, that is all, 7: quit
48 ( echo 2; echo 1; echo; echo 7 ) |
Conrad Irwine41fcfe2011-05-06 23:00:00 -070049 git commit -m foo --interactive file &&
50 git reset --hard HEAD^
Jeff King587ac8c2011-05-09 16:53:00 -070051'
Björn Steinbrink9d874422007-11-12 16:15:39 +010052
Junio C Hamano41ac4142008-02-01 01:50:53 -080053test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040054 "using invalid commit with -C" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090055 "test_must_fail git commit -C bogus"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040056
Junio C Hamano41ac4142008-02-01 01:50:53 -080057test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040058 "testing nothing to commit" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090059 "test_must_fail git commit -m initial"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040060
61test_expect_success \
62 "next commit" \
63 "echo 'bongo bongo bongo' >file \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090064 git commit -m next -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040065
Junio C Hamano41ac4142008-02-01 01:50:53 -080066test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040067 "commit message from non-existing file" \
68 "echo 'more bongo: bongo bongo bongo bongo' >file && \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090069 test_must_fail git commit -F gah -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040070
71# Empty except stray tabs and spaces on a few lines.
72sed -e 's/@$//' >msg <<EOF
73 @
74
75 @
76Signed-off-by: hula
77EOF
Junio C Hamano41ac4142008-02-01 01:50:53 -080078test_expect_success \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040079 "empty commit message" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090080 "test_must_fail git commit -F msg -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040081
82test_expect_success \
83 "commit message from file" \
84 "echo 'this is the commit message, coming from a file' >msg && \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +090085 git commit -F msg -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040086
87cat >editor <<\EOF
88#!/bin/sh
Bryan Donlanf69e8362008-05-04 01:37:59 -040089sed -e "s/a file/an amend commit/g" < "$1" > "$1-"
90mv "$1-" "$1"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040091EOF
92chmod 755 editor
93
94test_expect_success \
95 "amend commit" \
Jonathan Niederd33738d2009-11-11 17:56:07 -060096 "EDITOR=./editor git commit --amend"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -040097
Junio C Hamano41ac4142008-02-01 01:50:53 -080098test_expect_success \
Junio C Hamano6d4bbeb2007-08-01 18:14:41 -070099 "passing -m and -F" \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400100 "echo 'enough with the bongos' >file && \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900101 test_must_fail git commit -F msg -m amending ."
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400102
103test_expect_success \
104 "using message from other commit" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900105 "git commit -C HEAD^ ."
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400106
107cat >editor <<\EOF
108#!/bin/sh
Bryan Donlanf69e8362008-05-04 01:37:59 -0400109sed -e "s/amend/older/g" < "$1" > "$1-"
110mv "$1-" "$1"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400111EOF
112chmod 755 editor
113
114test_expect_success \
115 "editing message from other commit" \
116 "echo 'hula hula' >file && \
Jonathan Niederd33738d2009-11-11 17:56:07 -0600117 EDITOR=./editor git commit -c HEAD^ -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400118
119test_expect_success \
120 "message from stdin" \
121 "echo 'silly new contents' >file && \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900122 echo commit message from stdin | git commit -F - -a"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400123
124test_expect_success \
125 "overriding author from command line" \
126 "echo 'gak' >file && \
Jeff King49ff9a72010-01-13 12:39:51 -0500127 git commit -m 'author' --author 'Rubber Duck <rduck@convoy.org>' -a >output 2>&1"
128
129test_expect_success \
130 "commit --author output mentions author" \
131 "grep Rubber.Duck output"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400132
Jeff King1b19ccd2009-04-03 15:33:59 -0400133test_expect_success PERL \
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400134 "interactive add" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900135 "echo 7 | git commit --interactive | grep 'What now'"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400136
Conrad Irwin02a481f2011-05-10 12:12:31 -0700137test_expect_success PERL \
138 "commit --interactive doesn't change index if editor aborts" \
139 "echo zoo >file &&
140 test_must_fail git diff --exit-code >diff1 &&
141 (echo u ; echo '*' ; echo q) |
142 (EDITOR=: && export EDITOR &&
143 test_must_fail git commit --interactive) &&
144 git diff >diff2 &&
145 test_cmp diff1 diff2"
146
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400147test_expect_success \
148 "showing committed revisions" \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900149 "git rev-list HEAD >current"
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400150
Adeodato Simó7eb5bbd2009-01-09 18:30:05 +0100151cat >editor <<\EOF
152#!/bin/sh
153sed -e "s/good/bad/g" < "$1" > "$1-"
154mv "$1-" "$1"
155EOF
156chmod 755 editor
157
158cat >msg <<EOF
159A good commit message.
160EOF
161
162test_expect_success \
163 'editor not invoked if -F is given' '
164 echo "moo" >file &&
Jonathan Niederd33738d2009-11-11 17:56:07 -0600165 EDITOR=./editor git commit -a -F msg &&
Adeodato Simó7eb5bbd2009-01-09 18:30:05 +0100166 git show -s --pretty=format:"%s" | grep -q good &&
167 echo "quack" >file &&
Jonathan Niederd33738d2009-11-11 17:56:07 -0600168 echo "Another good message." | EDITOR=./editor git commit -a -F - &&
Adeodato Simó7eb5bbd2009-01-09 18:30:05 +0100169 git show -s --pretty=format:"%s" | grep -q good
170 '
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400171# We could just check the head sha1, but checking each commit makes it
172# easier to isolate bugs.
173
174cat >expected <<\EOF
17572c0dc9855b0c9dadcbfd5a31cab072e0cb774ca
1769b88fc14ce6b32e3d9ee021531a54f18a5cf38a2
1773536bbb352c3a1ef9a420f5b4242d48578b92aa7
178d381ac431806e53f3dd7ac2f1ae0534f36d738b9
1794fd44095ad6334f3ef72e4c5ec8ddf108174b54a
180402702b49136e7587daa9280e91e4bb7cb2179f7
181EOF
182
183test_expect_success \
Nanako Shiraishi47a528a2008-09-03 17:59:33 +0900184 'validate git rev-list output.' \
Miklos Vajna1e368682008-09-10 19:32:44 +0200185 'test_cmp expected current'
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400186
Junio C Hamanodb33af02007-09-14 16:53:58 -0700187test_expect_success 'partial commit that involves removal (1)' '
Junio C Hamano80bffaf2007-09-12 16:04:22 -0700188
189 git rm --cached file &&
190 mv file elif &&
191 git add elif &&
192 git commit -m "Partial: add elif" elif &&
193 git diff-tree --name-status HEAD^ HEAD >current &&
194 echo "A elif" >expected &&
Miklos Vajna1e368682008-09-10 19:32:44 +0200195 test_cmp expected current
Junio C Hamano80bffaf2007-09-12 16:04:22 -0700196
197'
198
Junio C Hamanodb33af02007-09-14 16:53:58 -0700199test_expect_success 'partial commit that involves removal (2)' '
Junio C Hamano80bffaf2007-09-12 16:04:22 -0700200
201 git commit -m "Partial: remove file" file &&
202 git diff-tree --name-status HEAD^ HEAD >current &&
203 echo "D file" >expected &&
Miklos Vajna1e368682008-09-10 19:32:44 +0200204 test_cmp expected current
Junio C Hamano80bffaf2007-09-12 16:04:22 -0700205
206'
207
Junio C Hamanodb33af02007-09-14 16:53:58 -0700208test_expect_success 'partial commit that involves removal (3)' '
209
210 git rm --cached elif &&
211 echo elif >elif &&
212 git commit -m "Partial: modify elif" elif &&
213 git diff-tree --name-status HEAD^ HEAD >current &&
214 echo "M elif" >expected &&
Miklos Vajna1e368682008-09-10 19:32:44 +0200215 test_cmp expected current
Junio C Hamanodb33af02007-09-14 16:53:58 -0700216
217'
218
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800219author="The Real Author <someguy@his.email.org>"
220test_expect_success 'amend commit to fix author' '
221
222 oldtick=$GIT_AUTHOR_DATE &&
223 test_tick &&
224 git reset --hard &&
225 git cat-file -p HEAD |
226 sed -e "s/author.*/author $author $oldtick/" \
227 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
228 expected &&
229 git commit --amend --author="$author" &&
230 git cat-file -p HEAD > current &&
Miklos Vajna1e368682008-09-10 19:32:44 +0200231 test_cmp expected current
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800232
233'
234
Miklos Vajna02b47cd2009-12-02 23:16:18 +0100235test_expect_success 'amend commit to fix date' '
236
237 test_tick &&
238 newtick=$GIT_AUTHOR_DATE &&
239 git reset --hard &&
240 git cat-file -p HEAD |
241 sed -e "s/author.*/author $author $newtick/" \
242 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
243 expected &&
244 git commit --amend --date="$newtick" &&
245 git cat-file -p HEAD > current &&
246 test_cmp expected current
247
248'
249
Jeff King4579bb42010-12-13 12:02:25 -0500250test_expect_success 'commit complains about bogus date' '
251 test_must_fail git commit --amend --date=10.11.2010
252'
253
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800254test_expect_success 'sign off (1)' '
255
256 echo 1 >positive &&
257 git add positive &&
258 git commit -s -m "thank you" &&
259 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
260 (
261 echo thank you
262 echo
263 git var GIT_COMMITTER_IDENT |
264 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
265 ) >expected &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400266 test_cmp expected actual
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800267
268'
269
270test_expect_success 'sign off (2)' '
271
272 echo 2 >positive &&
273 git add positive &&
274 existing="Signed-off-by: Watch This <watchthis@example.com>" &&
275 git commit -s -m "thank you
276
277$existing" &&
278 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
279 (
280 echo thank you
281 echo
282 echo $existing
283 git var GIT_COMMITTER_IDENT |
284 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
285 ) >expected &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400286 test_cmp expected actual
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800287
288'
289
David Brownc1e01b02009-10-28 10:13:44 -0700290test_expect_success 'signoff gap' '
291
292 echo 3 >positive &&
293 git add positive &&
294 alt="Alt-RFC-822-Header: Value" &&
295 git commit -s -m "welcome
296
297$alt" &&
298 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
299 (
300 echo welcome
301 echo
302 echo $alt
303 git var GIT_COMMITTER_IDENT |
304 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
305 ) >expected &&
306 test_cmp expected actual
307'
308
309test_expect_success 'signoff gap 2' '
310
311 echo 4 >positive &&
312 git add positive &&
313 alt="fixed: 34" &&
314 git commit -s -m "welcome
315
316We have now
317$alt" &&
318 git cat-file commit HEAD | sed -e "1,/^\$/d" > actual &&
319 (
320 echo welcome
321 echo
322 echo We have now
323 echo $alt
324 echo
325 git var GIT_COMMITTER_IDENT |
326 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
327 ) >expected &&
328 test_cmp expected actual
329'
330
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800331test_expect_success 'multiple -m' '
332
333 >negative &&
334 git add negative &&
335 git commit -m "one" -m "two" -m "three" &&
336 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
337 (
338 echo one
339 echo
340 echo two
341 echo
342 echo three
343 ) >expected &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400344 test_cmp expected actual
Junio C Hamano5aa5cd42007-11-10 01:49:34 -0800345
346'
347
Kristian Høgsbergd63c2fd2007-11-02 11:33:06 -0400348author="The Real Author <someguy@his.email.org>"
349test_expect_success 'amend commit to fix author' '
350
351 oldtick=$GIT_AUTHOR_DATE &&
352 test_tick &&
353 git reset --hard &&
354 git cat-file -p HEAD |
355 sed -e "s/author.*/author $author $oldtick/" \
356 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
357 expected &&
358 git commit --amend --author="$author" &&
359 git cat-file -p HEAD > current &&
Miklos Vajna1e368682008-09-10 19:32:44 +0200360 test_cmp expected current
Kristian Høgsbergd63c2fd2007-11-02 11:33:06 -0400361
362'
Kristian Høgsberg12009932007-11-15 09:49:58 -0500363
364test_expect_success 'git commit <file> with dirty index' '
365 echo tacocat > elif &&
366 echo tehlulz > chz &&
367 git add chz &&
368 git commit elif -m "tacocat is a palindrome" &&
369 git show --stat | grep elif &&
370 git diff --cached | grep chz
371'
372
Johannes Sixt13aba1e2007-12-03 08:24:50 +0100373test_expect_success 'same tree (single parent)' '
374
Junio C Hamano31cbb5d2007-12-04 17:16:33 -0800375 git reset --hard
376
Johannes Sixt13aba1e2007-12-03 08:24:50 +0100377 if git commit -m empty
378 then
379 echo oops -- should have complained
380 false
381 else
382 : happy
383 fi
384
385'
386
Junio C Hamano36863af2007-12-03 00:03:10 -0800387test_expect_success 'same tree (single parent) --allow-empty' '
388
389 git commit --allow-empty -m "forced empty" &&
390 git cat-file commit HEAD | grep forced
391
392'
393
Johannes Sixt13aba1e2007-12-03 08:24:50 +0100394test_expect_success 'same tree (merge and amend merge)' '
395
396 git checkout -b side HEAD^ &&
397 echo zero >zero &&
398 git add zero &&
399 git commit -m "add zero" &&
400 git checkout master &&
401
402 git merge -s ours side -m "empty ok" &&
403 git diff HEAD^ HEAD >actual &&
404 : >expected &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400405 test_cmp expected actual &&
Johannes Sixt13aba1e2007-12-03 08:24:50 +0100406
407 git commit --amend -m "empty really ok" &&
408 git diff HEAD^ HEAD >actual &&
409 : >expected &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400410 test_cmp expected actual
Johannes Sixt13aba1e2007-12-03 08:24:50 +0100411
412'
413
Junio C Hamano1eb1e9e2007-12-14 11:57:22 -0800414test_expect_success 'amend using the message from another commit' '
415
416 git reset --hard &&
417 test_tick &&
418 git commit --allow-empty -m "old commit" &&
419 old=$(git rev-parse --verify HEAD) &&
420 test_tick &&
421 git commit --allow-empty -m "new commit" &&
422 new=$(git rev-parse --verify HEAD) &&
423 test_tick &&
424 git commit --allow-empty --amend -C "$old" &&
425 git show --pretty="format:%ad %s" "$old" >expected &&
426 git show --pretty="format:%ad %s" HEAD >actual &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400427 test_cmp expected actual
Junio C Hamano1eb1e9e2007-12-14 11:57:22 -0800428
429'
430
Junio C Hamano8a2f8732008-02-03 00:00:09 -0800431test_expect_success 'amend using the message from a commit named with tag' '
432
433 git reset --hard &&
434 test_tick &&
435 git commit --allow-empty -m "old commit" &&
436 old=$(git rev-parse --verify HEAD) &&
437 git tag -a -m "tag on old" tagged-old HEAD &&
438 test_tick &&
439 git commit --allow-empty -m "new commit" &&
440 new=$(git rev-parse --verify HEAD) &&
441 test_tick &&
442 git commit --allow-empty --amend -C tagged-old &&
443 git show --pretty="format:%ad %s" "$old" >expected &&
444 git show --pretty="format:%ad %s" HEAD >actual &&
Jeff King82ebb0b2008-03-12 17:36:36 -0400445 test_cmp expected actual
Junio C Hamano8a2f8732008-02-03 00:00:09 -0800446
447'
448
Thomas Rast6360d342010-03-12 18:04:34 +0100449test_expect_success 'amend can copy notes' '
450
451 git config notes.rewrite.amend true &&
452 git config notes.rewriteRef "refs/notes/*" &&
453 test_commit foo &&
454 git notes add -m"a note" &&
455 test_tick &&
456 git commit --amend -m"new foo" &&
457 test "$(git notes show)" = "a note"
458
459'
460
Kristian Høgsberg12ace0b2007-07-31 15:37:30 -0400461test_done