3 # Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>
6 # FIXME: Test the various index usages, -i and -o, test reflog,
9 test_description
='git-commit'
16 "echo 'bongo bongo' >file &&
18 git-status | grep 'Initial commit'"
21 "fail initial amend" \
26 "git-commit -m initial"
30 "git-commit -m foo -m bar -F file"
34 "git-commit -C HEAD -m illegal"
37 "using paths with -a" \
38 "echo King of the bongo >file &&
39 git-commit -m foo -a file"
42 "using paths with --interactive" \
43 "echo bong-o-bong >file &&
44 echo 7 | git-commit -m foo --interactive file"
47 "using invalid commit with -C" \
51 "testing nothing to commit" \
52 "git-commit -m initial"
56 "echo 'bongo bongo bongo' >file \
57 git-commit -m next -a"
60 "commit message from non-existing file" \
61 "echo 'more bongo: bongo bongo bongo bongo' >file && \
64 # Empty except stray tabs and spaces on a few lines.
65 sed -e 's/@$//' >msg
<<EOF
72 "empty commit message" \
73 "git-commit -F msg -a"
76 "commit message from file" \
77 "echo 'this is the commit message, coming from a file' >msg && \
82 sed -e "s/a file/an amend commit/g" < $1 > $1-
89 "VISUAL=./editor git-commit --amend"
93 "echo 'enough with the bongos' >file && \
94 git-commit -F msg -m amending ."
97 "using message from other commit" \
98 "git-commit -C HEAD^ ."
102 sed -e "s/amend/older/g" < $1 > $1-
107 test_expect_success \
108 "editing message from other commit" \
109 "echo 'hula hula' >file && \
110 VISUAL=./editor git-commit -c HEAD^ -a"
112 test_expect_success \
113 "message from stdin" \
114 "echo 'silly new contents' >file && \
115 echo commit message from stdin | git-commit -F - -a"
117 test_expect_success \
118 "overriding author from command line" \
119 "echo 'gak' >file && \
120 git-commit -m 'author' --author 'Rubber Duck <rduck@convoy.org>' -a"
122 test_expect_success \
124 "echo 7 | git-commit --interactive | grep 'What now'"
126 test_expect_success \
127 "showing committed revisions" \
128 "git-rev-list HEAD >current"
130 # We could just check the head sha1, but checking each commit makes it
131 # easier to isolate bugs.
134 72c0dc9855b0c9dadcbfd5a31cab072e0cb774ca
135 9b88fc14ce6b32e3d9ee021531a54f18a5cf38a2
136 3536bbb352c3a1ef9a420f5b4242d48578b92aa7
137 d381ac431806e53f3dd7ac2f1ae0534f36d738b9
138 4fd44095ad6334f3ef72e4c5ec8ddf108174b54a
139 402702b49136e7587daa9280e91e4bb7cb2179f7
142 test_expect_success \
143 'validate git-rev-list output.' \
144 'diff current expected'
146 test_expect_success
'partial commit that involves removal (1)' '
148 git rm --cached file &&
151 git commit -m "Partial: add elif" elif &&
152 git diff-tree --name-status HEAD^ HEAD >current &&
153 echo "A elif" >expected &&
154 diff expected current
158 test_expect_success
'partial commit that involves removal (2)' '
160 git commit -m "Partial: remove file" file &&
161 git diff-tree --name-status HEAD^ HEAD >current &&
162 echo "D file" >expected &&
163 diff expected current
167 test_expect_success
'partial commit that involves removal (3)' '
169 git rm --cached elif &&
171 git commit -m "Partial: modify elif" elif &&
172 git diff-tree --name-status HEAD^ HEAD >current &&
173 echo "M elif" >expected &&
174 diff expected current
178 author
="The Real Author <someguy@his.email.org>"
179 test_expect_success
'amend commit to fix author' '
181 oldtick=$GIT_AUTHOR_DATE &&
184 git cat-file -p HEAD |
185 sed -e "s/author.*/author $author $oldtick/" \
186 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
188 git commit --amend --author="$author" &&
189 git cat-file -p HEAD > current &&
190 diff expected current
194 test_expect_success
'sign off (1)' '
198 git commit -s -m "thank you" &&
199 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
203 git var GIT_COMMITTER_IDENT |
204 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
206 diff -u expected actual
210 test_expect_success
'sign off (2)' '
214 existing="Signed-off-by: Watch This <watchthis@example.com>" &&
215 git commit -s -m "thank you
218 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
223 git var GIT_COMMITTER_IDENT |
224 sed -e "s/>.*/>/" -e "s/^/Signed-off-by: /"
226 diff -u expected actual
230 test_expect_success
'multiple -m' '
234 git commit -m "one" -m "two" -m "three" &&
235 git cat-file commit HEAD | sed -e "1,/^\$/d" >actual &&
243 diff -u expected actual
247 author
="The Real Author <someguy@his.email.org>"
248 test_expect_success
'amend commit to fix author' '
250 oldtick=$GIT_AUTHOR_DATE &&
253 git cat-file -p HEAD |
254 sed -e "s/author.*/author $author $oldtick/" \
255 -e "s/^\(committer.*> \).*$/\1$GIT_COMMITTER_DATE/" > \
257 git commit --amend --author="$author" &&
258 git cat-file -p HEAD > current &&
259 diff expected current
263 test_expect_success
'git commit <file> with dirty index' '
264 echo tacocat > elif &&
265 echo tehlulz > chz &&
267 git commit elif -m "tacocat is a palindrome" &&
268 git show --stat | grep elif &&
269 git diff --cached | grep chz
272 test_expect_success
'same tree (single parent)' '
276 if git commit -m empty
278 echo oops -- should have complained
286 test_expect_success
'same tree (single parent) --allow-empty' '
288 git commit --allow-empty -m "forced empty" &&
289 git cat-file commit HEAD | grep forced
293 test_expect_success
'same tree (merge and amend merge)' '
295 git checkout -b side HEAD^ &&
298 git commit -m "add zero" &&
299 git checkout master &&
301 git merge -s ours side -m "empty ok" &&
302 git diff HEAD^ HEAD >actual &&
304 diff -u expected actual &&
306 git commit --amend -m "empty really ok" &&
307 git diff HEAD^ HEAD >actual &&
309 diff -u expected actual