]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7502-commit.sh
Merge branch 'jc/merge-saner-messages'
[thirdparty/git.git] / t / t7502-commit.sh
CommitLineData
b468f0ce
JH
1#!/bin/sh
2
3test_description='git commit porcelain-ish'
4
5. ./test-lib.sh
6
7test_expect_success 'the basics' '
8
9 echo doing partial >"commit is" &&
10 mkdir not &&
11 echo very much encouraged but we should >not/forbid &&
12 git add "commit is" not &&
13 echo update added "commit is" file >"commit is" &&
14 echo also update another >not/forbid &&
15 test_tick &&
16 git commit -a -m "initial with -a" &&
17
18 git cat-file blob HEAD:"commit is" >current.1 &&
19 git cat-file blob HEAD:not/forbid >current.2 &&
20
21 cmp current.1 "commit is" &&
22 cmp current.2 not/forbid
23
24'
25
26test_expect_success 'partial' '
27
28 echo another >"commit is" &&
29 echo another >not/forbid &&
30 test_tick &&
31 git commit -m "partial commit to handle a file" "commit is" &&
32
33 changed=$(git diff-tree --name-only HEAD^ HEAD) &&
34 test "$changed" = "commit is"
35
36'
37
38test_expect_success 'partial modification in a subdirecotry' '
39
40 test_tick &&
41 git commit -m "partial commit to subdirectory" not &&
42
43 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
44 test "$changed" = "not/forbid"
45
46'
47
48test_expect_success 'partial removal' '
49
50 git rm not/forbid &&
51 git commit -m "partial commit to remove not/forbid" not &&
52
53 changed=$(git diff-tree -r --name-only HEAD^ HEAD) &&
54 test "$changed" = "not/forbid" &&
55 remain=$(git ls-tree -r --name-only HEAD) &&
56 test "$remain" = "commit is"
57
58'
59
60test_expect_success 'sign off' '
61
62 >positive &&
63 git add positive &&
64 git commit -s -m "thank you" &&
65 actual=$(git cat-file commit HEAD | sed -ne "s/Signed-off-by: //p") &&
66 expected=$(git var GIT_COMMITTER_IDENT | sed -e "s/>.*/>/") &&
67 test "z$actual" = "z$expected"
68
69'
70
71test_expect_success 'multiple -m' '
72
73 >negative &&
74 git add negative &&
75 git commit -m "one" -m "two" -m "three" &&
76 actual=$(git cat-file commit HEAD | sed -e "1,/^\$/d") &&
77 expected=$(echo one; echo; echo two; echo; echo three) &&
78 test "z$actual" = "z$expected"
79
80'
81
82test_expect_success 'verbose' '
83
84 echo minus >negative &&
85 git add negative &&
86 git status -v | sed -ne "/^diff --git /p" >actual &&
87 echo "diff --git a/negative b/negative" >expect &&
82ebb0b6 88 test_cmp expect actual
b468f0ce
JH
89
90'
91
4f672ad6
JK
92test_expect_success 'verbose respects diff config' '
93
94 git config color.diff always &&
95 git status -v >actual &&
96 grep "\[1mdiff --git" actual &&
97 git config --unset color.diff
98'
99
5f065737
AR
100test_expect_success 'cleanup commit messages (verbatim,-t)' '
101
102 echo >>negative &&
103 { echo;echo "# text";echo; } >expect &&
104 git commit --cleanup=verbatim -t expect -a &&
105 git cat-file -p HEAD |sed -e "1,/^\$/d" |head -n 3 >actual &&
82ebb0b6 106 test_cmp expect actual
5f065737
AR
107
108'
109
110test_expect_success 'cleanup commit messages (verbatim,-F)' '
111
112 echo >>negative &&
113 git commit --cleanup=verbatim -F expect -a &&
114 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
82ebb0b6 115 test_cmp expect actual
5f065737
AR
116
117'
118
119test_expect_success 'cleanup commit messages (verbatim,-m)' '
120
121 echo >>negative &&
122 git commit --cleanup=verbatim -m "$(cat expect)" -a &&
123 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
82ebb0b6 124 test_cmp expect actual
5f065737
AR
125
126'
127
128test_expect_success 'cleanup commit messages (whitespace,-F)' '
129
130 echo >>negative &&
131 { echo;echo "# text";echo; } >text &&
132 echo "# text" >expect &&
133 git commit --cleanup=whitespace -F text -a &&
134 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
82ebb0b6 135 test_cmp expect actual
5f065737
AR
136
137'
138
139test_expect_success 'cleanup commit messages (strip,-F)' '
140
141 echo >>negative &&
142 { echo;echo "# text";echo sample;echo; } >text &&
143 echo sample >expect &&
144 git commit --cleanup=strip -F text -a &&
145 git cat-file -p HEAD |sed -e "1,/^\$/d">actual &&
82ebb0b6 146 test_cmp expect actual
5f065737
AR
147
148'
149
150echo "sample
151
fdc7c811
JK
152# Please enter the commit message for your changes. Lines starting
153# with '#' will be ignored, and an empty message aborts the commit." >expect
5f065737
AR
154
155test_expect_success 'cleanup commit messages (strip,-F,-e)' '
156
157 echo >>negative &&
158 { echo;echo sample;echo; } >text &&
159 git commit -e -F text -a &&
fdc7c811 160 head -n 4 .git/COMMIT_EDITMSG >actual &&
82ebb0b6 161 test_cmp expect actual
5f065737
AR
162
163'
164
e83dbe80
SB
165echo "#
166# Author: $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>
167#" >> expect
168
169test_expect_success 'author different from committer' '
170
171 echo >>negative &&
172 git commit -e -m "sample"
fdc7c811 173 head -n 7 .git/COMMIT_EDITMSG >actual &&
e83dbe80
SB
174 test_cmp expect actual
175'
176
d16d5cdf
MK
177mv expect expect.tmp
178sed '$d' < expect.tmp > expect
179rm -f expect.tmp
bb1ae3f6
SB
180echo "# Committer:
181#" >> expect
bb1ae3f6
SB
182
183test_expect_success 'committer is automatic' '
184
185 echo >>negative &&
7845944c
JH
186 (
187 unset GIT_COMMITTER_EMAIL
188 unset GIT_COMMITTER_NAME
189 # must fail because there is no change
190 test_must_fail git commit -e -m "sample"
191 ) &&
fdc7c811 192 head -n 8 .git/COMMIT_EDITMSG | \
bb1ae3f6
SB
193 sed "s/^# Committer: .*/# Committer:/" >actual &&
194 test_cmp expect actual
195'
196
ec84bd00
PB
197pwd=`pwd`
198cat >> .git/FAKE_EDITOR << EOF
199#! /bin/sh
200echo editor started > "$pwd/.git/result"
201exit 0
202EOF
203chmod +x .git/FAKE_EDITOR
204
205test_expect_success 'do not fire editor in the presence of conflicts' '
206
a3c91e08
JH
207 git clean -f &&
208 echo f >g &&
209 git add g &&
210 git commit -m "add g" &&
211 git branch second &&
212 echo master >g &&
213 echo g >h &&
214 git add g h &&
215 git commit -m "modify g and add h" &&
216 git checkout second &&
217 echo second >g &&
218 git add g &&
219 git commit -m second &&
220 # Must fail due to conflict
221 test_must_fail git cherry-pick -n master &&
222 echo "editor not started" >.git/result &&
e2007832
BC
223 (
224 GIT_EDITOR="$(pwd)/.git/FAKE_EDITOR" &&
225 export GIT_EDITOR &&
226 test_must_fail git commit
227 ) &&
a3c91e08 228 test "$(cat .git/result)" = "editor not started"
ec84bd00
PB
229'
230
ad5fa3cc 231pwd=`pwd`
de5825cc
JH
232cat >.git/FAKE_EDITOR <<EOF
233#! $SHELL_PATH
ad5fa3cc
PB
234# kill -TERM command added below.
235EOF
236
fb9a2bea 237test_expect_success EXECKEEPSPID 'a SIGTERM should break locks' '
ad5fa3cc 238 echo >>negative &&
09b78bc1 239 ! "$SHELL_PATH" -c '\''
ad5fa3cc 240 echo kill -TERM $$ >> .git/FAKE_EDITOR
09b78bc1
BC
241 GIT_EDITOR=.git/FAKE_EDITOR
242 export GIT_EDITOR
243 exec git commit -a'\'' &&
244 test ! -f .git/index.lock
ad5fa3cc
PB
245'
246
67bfc030
JH
247rm -f .git/MERGE_MSG .git/COMMIT_EDITMSG
248git reset -q --hard
249
250test_expect_success 'Hand committing of a redundant merge removes dups' '
251
252 git rev-parse second master >expect &&
253 test_must_fail git merge second master &&
254 git checkout master g &&
255 EDITOR=: git commit -a &&
256 git cat-file commit HEAD | sed -n -e "s/^parent //p" -e "/^$/q" >actual &&
257 test_cmp expect actual
258
259'
260
b468f0ce 261test_done