Blame


1 c4296144 2019-05-09 stsp #!/bin/sh
2 c4296144 2019-05-09 stsp #
3 c4296144 2019-05-09 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 c4296144 2019-05-09 stsp #
5 c4296144 2019-05-09 stsp # Permission to use, copy, modify, and distribute this software for any
6 c4296144 2019-05-09 stsp # purpose with or without fee is hereby granted, provided that the above
7 c4296144 2019-05-09 stsp # copyright notice and this permission notice appear in all copies.
8 c4296144 2019-05-09 stsp #
9 c4296144 2019-05-09 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 c4296144 2019-05-09 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 c4296144 2019-05-09 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 c4296144 2019-05-09 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 c4296144 2019-05-09 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 c4296144 2019-05-09 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 c4296144 2019-05-09 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 c4296144 2019-05-09 stsp
17 c4296144 2019-05-09 stsp . ./common.sh
18 c4296144 2019-05-09 stsp
19 c4296144 2019-05-09 stsp function test_commit_basic {
20 c4296144 2019-05-09 stsp local testroot=`test_init commit_basic`
21 c4296144 2019-05-09 stsp
22 c4296144 2019-05-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 c4296144 2019-05-09 stsp ret="$?"
24 c4296144 2019-05-09 stsp if [ "$ret" != "0" ]; then
25 c4296144 2019-05-09 stsp test_done "$testroot" "$ret"
26 c4296144 2019-05-09 stsp return 1
27 c4296144 2019-05-09 stsp fi
28 c4296144 2019-05-09 stsp
29 c4296144 2019-05-09 stsp echo "modified alpha" > $testroot/wt/alpha
30 c4296144 2019-05-09 stsp (cd $testroot/wt && got rm beta >/dev/null)
31 c4296144 2019-05-09 stsp echo "new file" > $testroot/wt/new
32 c4296144 2019-05-09 stsp (cd $testroot/wt && got add new >/dev/null)
33 c4296144 2019-05-09 stsp
34 83a7ae6d 2019-05-10 stsp (cd $testroot/wt && got commit -m 'test commit_basic' > $testroot/stdout)
35 c4296144 2019-05-09 stsp
36 c4296144 2019-05-09 stsp local head_rev=`git_show_head $testroot/repo`
37 afa376bf 2019-05-09 stsp echo "A new" > $testroot/stdout.expected
38 afa376bf 2019-05-09 stsp echo "M alpha" >> $testroot/stdout.expected
39 afa376bf 2019-05-09 stsp echo "D beta" >> $testroot/stdout.expected
40 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
41 c4296144 2019-05-09 stsp
42 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
43 c4296144 2019-05-09 stsp ret="$?"
44 c4296144 2019-05-09 stsp if [ "$ret" != "0" ]; then
45 c4296144 2019-05-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
46 c4296144 2019-05-09 stsp fi
47 c4296144 2019-05-09 stsp test_done "$testroot" "$ret"
48 c4296144 2019-05-09 stsp }
49 c4296144 2019-05-09 stsp
50 baa7dcfa 2019-05-09 stsp function test_commit_new_subdir {
51 baa7dcfa 2019-05-09 stsp local testroot=`test_init commit_new_subdir`
52 baa7dcfa 2019-05-09 stsp
53 baa7dcfa 2019-05-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
54 baa7dcfa 2019-05-09 stsp ret="$?"
55 baa7dcfa 2019-05-09 stsp if [ "$ret" != "0" ]; then
56 baa7dcfa 2019-05-09 stsp test_done "$testroot" "$ret"
57 baa7dcfa 2019-05-09 stsp return 1
58 baa7dcfa 2019-05-09 stsp fi
59 baa7dcfa 2019-05-09 stsp
60 baa7dcfa 2019-05-09 stsp mkdir -p $testroot/wt/d
61 baa7dcfa 2019-05-09 stsp echo "new file" > $testroot/wt/d/new
62 baa7dcfa 2019-05-09 stsp echo "another new file" > $testroot/wt/d/new2
63 baa7dcfa 2019-05-09 stsp (cd $testroot/wt && got add d/new >/dev/null)
64 baa7dcfa 2019-05-09 stsp (cd $testroot/wt && got add d/new2 >/dev/null)
65 baa7dcfa 2019-05-09 stsp
66 baa7dcfa 2019-05-09 stsp (cd $testroot/wt && \
67 baa7dcfa 2019-05-09 stsp got commit -m 'test commit_new_subdir' > $testroot/stdout)
68 baa7dcfa 2019-05-09 stsp
69 baa7dcfa 2019-05-09 stsp local head_rev=`git_show_head $testroot/repo`
70 baa7dcfa 2019-05-09 stsp echo "A d/new" > $testroot/stdout.expected
71 baa7dcfa 2019-05-09 stsp echo "A d/new2" >> $testroot/stdout.expected
72 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
73 baa7dcfa 2019-05-09 stsp
74 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
75 baa7dcfa 2019-05-09 stsp ret="$?"
76 baa7dcfa 2019-05-09 stsp if [ "$ret" != "0" ]; then
77 baa7dcfa 2019-05-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
78 baa7dcfa 2019-05-09 stsp fi
79 baa7dcfa 2019-05-09 stsp test_done "$testroot" "$ret"
80 baa7dcfa 2019-05-09 stsp }
81 baa7dcfa 2019-05-09 stsp
82 bc70eb79 2019-05-09 stsp function test_commit_subdir {
83 bc70eb79 2019-05-09 stsp local testroot=`test_init commit_subdir`
84 bc70eb79 2019-05-09 stsp
85 bc70eb79 2019-05-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
86 bc70eb79 2019-05-09 stsp ret="$?"
87 bc70eb79 2019-05-09 stsp if [ "$ret" != "0" ]; then
88 bc70eb79 2019-05-09 stsp test_done "$testroot" "$ret"
89 bc70eb79 2019-05-09 stsp return 1
90 bc70eb79 2019-05-09 stsp fi
91 bc70eb79 2019-05-09 stsp
92 bc70eb79 2019-05-09 stsp echo "modified alpha" > $testroot/wt/alpha
93 bc70eb79 2019-05-09 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
94 bc70eb79 2019-05-09 stsp
95 bc70eb79 2019-05-09 stsp (cd $testroot/wt && \
96 bc70eb79 2019-05-09 stsp got commit -m 'test commit_subdir' epsilon > $testroot/stdout)
97 bc70eb79 2019-05-09 stsp
98 bc70eb79 2019-05-09 stsp local head_rev=`git_show_head $testroot/repo`
99 bc70eb79 2019-05-09 stsp echo "M epsilon/zeta" >> $testroot/stdout.expected
100 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
101 bc70eb79 2019-05-09 stsp
102 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
103 bc70eb79 2019-05-09 stsp ret="$?"
104 bc70eb79 2019-05-09 stsp if [ "$ret" != "0" ]; then
105 bc70eb79 2019-05-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
106 bc70eb79 2019-05-09 stsp fi
107 bc70eb79 2019-05-09 stsp test_done "$testroot" "$ret"
108 bc70eb79 2019-05-09 stsp }
109 bc70eb79 2019-05-09 stsp
110 5bbcb68b 2019-05-09 stsp function test_commit_single_file {
111 5bbcb68b 2019-05-09 stsp local testroot=`test_init commit_single_file`
112 5bbcb68b 2019-05-09 stsp
113 5bbcb68b 2019-05-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
114 5bbcb68b 2019-05-09 stsp ret="$?"
115 5bbcb68b 2019-05-09 stsp if [ "$ret" != "0" ]; then
116 5bbcb68b 2019-05-09 stsp test_done "$testroot" "$ret"
117 5bbcb68b 2019-05-09 stsp return 1
118 5bbcb68b 2019-05-09 stsp fi
119 5bbcb68b 2019-05-09 stsp
120 5bbcb68b 2019-05-09 stsp echo "modified alpha" > $testroot/wt/alpha
121 5bbcb68b 2019-05-09 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
122 5bbcb68b 2019-05-09 stsp
123 1a36436d 2019-06-10 stsp (cd $testroot/wt && got commit -m 'changed zeta' epsilon/zeta \
124 5bbcb68b 2019-05-09 stsp > $testroot/stdout)
125 5bbcb68b 2019-05-09 stsp
126 5bbcb68b 2019-05-09 stsp local head_rev=`git_show_head $testroot/repo`
127 5bbcb68b 2019-05-09 stsp echo "M epsilon/zeta" >> $testroot/stdout.expected
128 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
129 5bbcb68b 2019-05-09 stsp
130 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
131 5bbcb68b 2019-05-09 stsp ret="$?"
132 5bbcb68b 2019-05-09 stsp if [ "$ret" != "0" ]; then
133 5bbcb68b 2019-05-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
134 5bbcb68b 2019-05-09 stsp fi
135 5bbcb68b 2019-05-09 stsp test_done "$testroot" "$ret"
136 5bbcb68b 2019-05-09 stsp }
137 5bbcb68b 2019-05-09 stsp
138 819f385b 2019-05-10 stsp function test_commit_out_of_date {
139 819f385b 2019-05-10 stsp local testroot=`test_init commit_out_of_date`
140 f0b75401 2019-08-03 stsp local first_commit=`git_show_head $testroot/repo`
141 819f385b 2019-05-10 stsp
142 819f385b 2019-05-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
143 819f385b 2019-05-10 stsp ret="$?"
144 819f385b 2019-05-10 stsp if [ "$ret" != "0" ]; then
145 819f385b 2019-05-10 stsp test_done "$testroot" "$ret"
146 819f385b 2019-05-10 stsp return 1
147 819f385b 2019-05-10 stsp fi
148 819f385b 2019-05-10 stsp
149 819f385b 2019-05-10 stsp echo "modified alpha" > $testroot/repo/alpha
150 819f385b 2019-05-10 stsp git_commit $testroot/repo -m "modified alpha"
151 819f385b 2019-05-10 stsp
152 819f385b 2019-05-10 stsp echo "modified alpha" > $testroot/wt/alpha
153 819f385b 2019-05-10 stsp
154 819f385b 2019-05-10 stsp (cd $testroot/wt && got commit -m 'test commit_out_of_date' \
155 819f385b 2019-05-10 stsp > $testroot/stdout 2> $testroot/stderr)
156 819f385b 2019-05-10 stsp
157 819f385b 2019-05-10 stsp echo -n > $testroot/stdout.expected
158 819f385b 2019-05-10 stsp echo "got: work tree must be updated before these" \
159 819f385b 2019-05-10 stsp "changes can be committed" > $testroot/stderr.expected
160 819f385b 2019-05-10 stsp
161 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
162 819f385b 2019-05-10 stsp ret="$?"
163 819f385b 2019-05-10 stsp if [ "$ret" != "0" ]; then
164 819f385b 2019-05-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
165 819f385b 2019-05-10 stsp test_done "$testroot" "$ret"
166 819f385b 2019-05-10 stsp return 1
167 819f385b 2019-05-10 stsp fi
168 819f385b 2019-05-10 stsp
169 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
170 819f385b 2019-05-10 stsp ret="$?"
171 819f385b 2019-05-10 stsp if [ "$ret" != "0" ]; then
172 819f385b 2019-05-10 stsp diff -u $testroot/stderr.expected $testroot/stderr
173 f0b75401 2019-08-03 stsp test_done "$testroot" "$ret"
174 f0b75401 2019-08-03 stsp return 1
175 819f385b 2019-05-10 stsp fi
176 f0b75401 2019-08-03 stsp
177 f0b75401 2019-08-03 stsp echo "alpha" > $testroot/repo/alpha
178 f0b75401 2019-08-03 stsp git_commit $testroot/repo -m "reset alpha contents"
179 f0b75401 2019-08-03 stsp (cd $testroot/wt && got update -c $first_commit > /dev/null)
180 f0b75401 2019-08-03 stsp
181 f0b75401 2019-08-03 stsp echo "modified alpha" > $testroot/wt/alpha
182 f0b75401 2019-08-03 stsp
183 f0b75401 2019-08-03 stsp (cd $testroot/wt && got commit -m 'changed alpha ' > $testroot/stdout)
184 f0b75401 2019-08-03 stsp ret="$?"
185 f0b75401 2019-08-03 stsp if [ "$ret" != "0" ]; then
186 f0b75401 2019-08-03 stsp echo "commit failed unexpectedly" >&2
187 f0b75401 2019-08-03 stsp test_done "$testroot" "1"
188 f0b75401 2019-08-03 stsp return 1
189 f0b75401 2019-08-03 stsp fi
190 f0b75401 2019-08-03 stsp
191 f0b75401 2019-08-03 stsp local head_rev=`git_show_head $testroot/repo`
192 f0b75401 2019-08-03 stsp echo "M alpha" > $testroot/stdout.expected
193 f0b75401 2019-08-03 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
194 f0b75401 2019-08-03 stsp cmp -s $testroot/stdout.expected $testroot/stdout
195 f0b75401 2019-08-03 stsp ret="$?"
196 f0b75401 2019-08-03 stsp if [ "$ret" != "0" ]; then
197 f0b75401 2019-08-03 stsp diff -u $testroot/stdout.expected $testroot/stdout
198 f0b75401 2019-08-03 stsp fi
199 819f385b 2019-05-10 stsp test_done "$testroot" "$ret"
200 819f385b 2019-05-10 stsp }
201 819f385b 2019-05-10 stsp
202 8ba6ba2d 2019-05-14 stsp function test_commit_added_subdirs {
203 8ba6ba2d 2019-05-14 stsp local testroot=`test_init commit_added_subdirs`
204 8ba6ba2d 2019-05-14 stsp
205 8ba6ba2d 2019-05-14 stsp got checkout $testroot/repo $testroot/wt > /dev/null
206 8ba6ba2d 2019-05-14 stsp ret="$?"
207 8ba6ba2d 2019-05-14 stsp if [ "$ret" != "0" ]; then
208 8ba6ba2d 2019-05-14 stsp test_done "$testroot" "$ret"
209 8ba6ba2d 2019-05-14 stsp return 1
210 8ba6ba2d 2019-05-14 stsp fi
211 8ba6ba2d 2019-05-14 stsp
212 8ba6ba2d 2019-05-14 stsp mkdir -p $testroot/wt/d
213 8ba6ba2d 2019-05-14 stsp echo "new file" > $testroot/wt/d/new
214 8ba6ba2d 2019-05-14 stsp echo "new file 2" > $testroot/wt/d/new2
215 8ba6ba2d 2019-05-14 stsp mkdir -p $testroot/wt/d/f
216 8ba6ba2d 2019-05-14 stsp echo "new file 3" > $testroot/wt/d/f/new3
217 8ba6ba2d 2019-05-14 stsp mkdir -p $testroot/wt/d/f/g
218 8ba6ba2d 2019-05-14 stsp echo "new file 4" > $testroot/wt/d/f/g/new4
219 8ba6ba2d 2019-05-14 stsp
220 8ba6ba2d 2019-05-14 stsp (cd $testroot/wt && got add $testroot/wt/*/new* \
221 8ba6ba2d 2019-05-14 stsp $testroot/wt/*/*/new* $testroot/wt/*/*/*/new* > /dev/null)
222 8ba6ba2d 2019-05-14 stsp
223 8ba6ba2d 2019-05-14 stsp (cd $testroot/wt && got commit -m 'test commit_added_subdirs' \
224 8ba6ba2d 2019-05-14 stsp > $testroot/stdout 2> $testroot/stderr)
225 8ba6ba2d 2019-05-14 stsp
226 8ba6ba2d 2019-05-14 stsp local head_rev=`git_show_head $testroot/repo`
227 a3df2849 2019-05-20 stsp echo "A d/f/g/new4" > $testroot/stdout.expected
228 a3df2849 2019-05-20 stsp echo "A d/f/new3" >> $testroot/stdout.expected
229 8ba6ba2d 2019-05-14 stsp echo "A d/new" >> $testroot/stdout.expected
230 8ba6ba2d 2019-05-14 stsp echo "A d/new2" >> $testroot/stdout.expected
231 ba580f68 2020-03-22 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
232 ba580f68 2020-03-22 stsp
233 ba580f68 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
234 ba580f68 2020-03-22 stsp ret="$?"
235 ba580f68 2020-03-22 stsp if [ "$ret" != "0" ]; then
236 ba580f68 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
237 ba580f68 2020-03-22 stsp fi
238 ba580f68 2020-03-22 stsp test_done "$testroot" "$ret"
239 ba580f68 2020-03-22 stsp }
240 ba580f68 2020-03-22 stsp
241 ba580f68 2020-03-22 stsp function test_commit_deleted_subdirs {
242 ba580f68 2020-03-22 stsp local testroot=`test_init commit_deleted_subdirs`
243 ba580f68 2020-03-22 stsp
244 ba580f68 2020-03-22 stsp got checkout $testroot/repo $testroot/wt > /dev/null
245 ba580f68 2020-03-22 stsp ret="$?"
246 ba580f68 2020-03-22 stsp if [ "$ret" != "0" ]; then
247 ba580f68 2020-03-22 stsp test_done "$testroot" "$ret"
248 ba580f68 2020-03-22 stsp return 1
249 ba580f68 2020-03-22 stsp fi
250 ba580f68 2020-03-22 stsp
251 ba580f68 2020-03-22 stsp (cd $testroot/wt && got rm -R $testroot/wt/{epsilon,gamma} >/dev/null)
252 ba580f68 2020-03-22 stsp
253 ba580f68 2020-03-22 stsp (cd $testroot/wt && got commit -m 'test commit_deleted_subdirs' \
254 ba580f68 2020-03-22 stsp > $testroot/stdout 2> $testroot/stderr)
255 ba580f68 2020-03-22 stsp
256 ba580f68 2020-03-22 stsp local head_rev=`git_show_head $testroot/repo`
257 ba580f68 2020-03-22 stsp echo "D epsilon/zeta" > $testroot/stdout.expected
258 ba580f68 2020-03-22 stsp echo "D gamma/delta" >> $testroot/stdout.expected
259 a7648d7a 2019-06-02 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
260 ba580f68 2020-03-22 stsp
261 ba580f68 2020-03-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
262 ba580f68 2020-03-22 stsp ret="$?"
263 ba580f68 2020-03-22 stsp if [ "$ret" != "0" ]; then
264 ba580f68 2020-03-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
265 ba580f68 2020-03-22 stsp test_done "$testroot" "$ret"
266 ba580f68 2020-03-22 stsp return 1
267 ba580f68 2020-03-22 stsp fi
268 8ba6ba2d 2019-05-14 stsp
269 ba580f68 2020-03-22 stsp got tree -r $testroot/repo > $testroot/stdout
270 ba580f68 2020-03-22 stsp
271 ba580f68 2020-03-22 stsp echo "alpha" > $testroot/stdout.expected
272 ba580f68 2020-03-22 stsp echo "beta" >> $testroot/stdout.expected
273 ba580f68 2020-03-22 stsp
274 8ba6ba2d 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
275 8ba6ba2d 2019-05-14 stsp ret="$?"
276 8ba6ba2d 2019-05-14 stsp if [ "$ret" != "0" ]; then
277 a3df2849 2019-05-20 stsp diff -u $testroot/stdout.expected $testroot/stdout
278 8ba6ba2d 2019-05-14 stsp fi
279 8ba6ba2d 2019-05-14 stsp test_done "$testroot" "$ret"
280 8ba6ba2d 2019-05-14 stsp }
281 8ba6ba2d 2019-05-14 stsp
282 f363d663 2019-05-23 stsp function test_commit_rejects_conflicted_file {
283 461aee03 2019-06-29 stsp local testroot=`test_init commit_rejects_conflicted_file`
284 f363d663 2019-05-23 stsp
285 f363d663 2019-05-23 stsp local initial_rev=`git_show_head $testroot/repo`
286 f363d663 2019-05-23 stsp
287 f363d663 2019-05-23 stsp got checkout $testroot/repo $testroot/wt > /dev/null
288 f363d663 2019-05-23 stsp ret="$?"
289 f363d663 2019-05-23 stsp if [ "$ret" != "0" ]; then
290 f363d663 2019-05-23 stsp test_done "$testroot" "$ret"
291 f363d663 2019-05-23 stsp return 1
292 f363d663 2019-05-23 stsp fi
293 f363d663 2019-05-23 stsp
294 f363d663 2019-05-23 stsp echo "modified alpha" > $testroot/wt/alpha
295 f363d663 2019-05-23 stsp (cd $testroot/wt && got commit -m "modified alpha" >/dev/null)
296 f363d663 2019-05-23 stsp
297 f363d663 2019-05-23 stsp (cd $testroot/wt && got update -c $initial_rev > /dev/null)
298 f363d663 2019-05-23 stsp
299 f363d663 2019-05-23 stsp echo "modified alpha, too" > $testroot/wt/alpha
300 f363d663 2019-05-23 stsp
301 f363d663 2019-05-23 stsp echo "C alpha" > $testroot/stdout.expected
302 f363d663 2019-05-23 stsp echo -n "Updated to commit " >> $testroot/stdout.expected
303 f363d663 2019-05-23 stsp git_show_head $testroot/repo >> $testroot/stdout.expected
304 f363d663 2019-05-23 stsp echo >> $testroot/stdout.expected
305 f363d663 2019-05-23 stsp
306 f363d663 2019-05-23 stsp (cd $testroot/wt && got update > $testroot/stdout)
307 f363d663 2019-05-23 stsp
308 f363d663 2019-05-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
309 f363d663 2019-05-23 stsp ret="$?"
310 f363d663 2019-05-23 stsp if [ "$ret" != "0" ]; then
311 f363d663 2019-05-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
312 f363d663 2019-05-23 stsp test_done "$testroot" "$ret"
313 f363d663 2019-05-23 stsp return 1
314 f363d663 2019-05-23 stsp fi
315 f363d663 2019-05-23 stsp
316 f363d663 2019-05-23 stsp (cd $testroot/wt && got commit -m 'commit it' > $testroot/stdout \
317 f363d663 2019-05-23 stsp 2> $testroot/stderr)
318 f363d663 2019-05-23 stsp
319 f363d663 2019-05-23 stsp echo -n > $testroot/stdout.expected
320 f363d663 2019-05-23 stsp echo "got: cannot commit file in conflicted status" \
321 f363d663 2019-05-23 stsp > $testroot/stderr.expected
322 f363d663 2019-05-23 stsp
323 f363d663 2019-05-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
324 f363d663 2019-05-23 stsp ret="$?"
325 f363d663 2019-05-23 stsp if [ "$ret" != "0" ]; then
326 f363d663 2019-05-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
327 f363d663 2019-05-23 stsp test_done "$testroot" "$ret"
328 f363d663 2019-05-23 stsp return 1
329 f363d663 2019-05-23 stsp fi
330 f363d663 2019-05-23 stsp cmp -s $testroot/stderr.expected $testroot/stderr
331 f363d663 2019-05-23 stsp ret="$?"
332 f363d663 2019-05-23 stsp if [ "$ret" != "0" ]; then
333 f363d663 2019-05-23 stsp diff -u $testroot/stderr.expected $testroot/stderr
334 f363d663 2019-05-23 stsp fi
335 f363d663 2019-05-23 stsp test_done "$testroot" "$ret"
336 f363d663 2019-05-23 stsp }
337 1a36436d 2019-06-10 stsp
338 1a36436d 2019-06-10 stsp function test_commit_single_file_multiple {
339 1a36436d 2019-06-10 stsp local testroot=`test_init commit_single_file_multiple`
340 f363d663 2019-05-23 stsp
341 1a36436d 2019-06-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
342 1a36436d 2019-06-10 stsp ret="$?"
343 1a36436d 2019-06-10 stsp if [ "$ret" != "0" ]; then
344 1a36436d 2019-06-10 stsp test_done "$testroot" "$ret"
345 1a36436d 2019-06-10 stsp return 1
346 1a36436d 2019-06-10 stsp fi
347 1a36436d 2019-06-10 stsp
348 1a36436d 2019-06-10 stsp for i in 1 2 3 4; do
349 1a36436d 2019-06-10 stsp echo "modified alpha" >> $testroot/wt/alpha
350 1a36436d 2019-06-10 stsp
351 1a36436d 2019-06-10 stsp (cd $testroot/wt && \
352 1a36436d 2019-06-10 stsp got commit -m "changed alpha" > $testroot/stdout)
353 1a36436d 2019-06-10 stsp
354 1a36436d 2019-06-10 stsp local head_rev=`git_show_head $testroot/repo`
355 1a36436d 2019-06-10 stsp echo "M alpha" > $testroot/stdout.expected
356 1a36436d 2019-06-10 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
357 1a36436d 2019-06-10 stsp
358 1a36436d 2019-06-10 stsp cmp -s $testroot/stdout.expected $testroot/stdout
359 1a36436d 2019-06-10 stsp ret="$?"
360 1a36436d 2019-06-10 stsp if [ "$ret" != "0" ]; then
361 1a36436d 2019-06-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
362 1a36436d 2019-06-10 stsp test_done "$testroot" "$ret"
363 1a36436d 2019-06-10 stsp return 1
364 1a36436d 2019-06-10 stsp fi
365 1a36436d 2019-06-10 stsp done
366 1a36436d 2019-06-10 stsp
367 1a36436d 2019-06-10 stsp test_done "$testroot" "0"
368 1a36436d 2019-06-10 stsp }
369 4866d084 2019-07-10 stsp
370 4866d084 2019-07-10 stsp function test_commit_added_and_modified_in_same_dir {
371 4866d084 2019-07-10 stsp local testroot=`test_init commit_added_and_modified_in_same_dir`
372 1a36436d 2019-06-10 stsp
373 4866d084 2019-07-10 stsp got checkout $testroot/repo $testroot/wt > /dev/null
374 4866d084 2019-07-10 stsp ret="$?"
375 4866d084 2019-07-10 stsp if [ "$ret" != "0" ]; then
376 4866d084 2019-07-10 stsp test_done "$testroot" "$ret"
377 4866d084 2019-07-10 stsp return 1
378 4866d084 2019-07-10 stsp fi
379 4866d084 2019-07-10 stsp
380 4866d084 2019-07-10 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
381 4866d084 2019-07-10 stsp echo "new file" > $testroot/wt/epsilon/new
382 4866d084 2019-07-10 stsp (cd $testroot/wt && got add epsilon/new >/dev/null)
383 4866d084 2019-07-10 stsp
384 4866d084 2019-07-10 stsp (cd $testroot/wt && got commit \
385 4866d084 2019-07-10 stsp -m 'added and modified in same dir' > $testroot/stdout \
386 4866d084 2019-07-10 stsp 2> $testroot/stderr)
387 4866d084 2019-07-10 stsp
388 4866d084 2019-07-10 stsp local head_rev=`git_show_head $testroot/repo`
389 4866d084 2019-07-10 stsp echo "A epsilon/new" > $testroot/stdout.expected
390 4866d084 2019-07-10 stsp echo "M epsilon/zeta" >> $testroot/stdout.expected
391 4866d084 2019-07-10 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
392 e0233cea 2019-07-25 stsp
393 e0233cea 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
394 e0233cea 2019-07-25 stsp ret="$?"
395 e0233cea 2019-07-25 stsp if [ "$ret" != "0" ]; then
396 e0233cea 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
397 e0233cea 2019-07-25 stsp fi
398 e0233cea 2019-07-25 stsp test_done "$testroot" "$ret"
399 e0233cea 2019-07-25 stsp }
400 e0233cea 2019-07-25 stsp
401 e0233cea 2019-07-25 stsp function test_commit_path_prefix {
402 e0233cea 2019-07-25 stsp local testroot=`test_init commit_path_prefix`
403 e0233cea 2019-07-25 stsp local commit1=`git_show_head $testroot/repo`
404 e0233cea 2019-07-25 stsp
405 e0233cea 2019-07-25 stsp got checkout -p gamma $testroot/repo $testroot/wt > /dev/null
406 e0233cea 2019-07-25 stsp ret="$?"
407 e0233cea 2019-07-25 stsp if [ "$ret" != "0" ]; then
408 e0233cea 2019-07-25 stsp test_done "$testroot" "$ret"
409 e0233cea 2019-07-25 stsp return 1
410 e0233cea 2019-07-25 stsp fi
411 e0233cea 2019-07-25 stsp
412 e0233cea 2019-07-25 stsp echo "modified delta" > $testroot/wt/delta
413 e0233cea 2019-07-25 stsp
414 e0233cea 2019-07-25 stsp (cd $testroot/wt && got commit -m 'changed gamma/delta' > $testroot/stdout)
415 e0233cea 2019-07-25 stsp
416 e0233cea 2019-07-25 stsp local commit2=`git_show_head $testroot/repo`
417 e0233cea 2019-07-25 stsp echo "M delta" > $testroot/stdout.expected
418 e0233cea 2019-07-25 stsp echo "Created commit $commit2" >> $testroot/stdout.expected
419 4866d084 2019-07-10 stsp
420 4866d084 2019-07-10 stsp cmp -s $testroot/stdout.expected $testroot/stdout
421 4866d084 2019-07-10 stsp ret="$?"
422 4866d084 2019-07-10 stsp if [ "$ret" != "0" ]; then
423 2b496619 2019-07-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
424 e0233cea 2019-07-25 stsp test_done "$testroot" "$ret"
425 e0233cea 2019-07-25 stsp return 1
426 4866d084 2019-07-10 stsp fi
427 e0233cea 2019-07-25 stsp
428 e0233cea 2019-07-25 stsp echo "diff $commit1 $commit2" > $testroot/stdout.expected
429 e0233cea 2019-07-25 stsp echo -n 'blob - ' >> $testroot/stdout.expected
430 e0233cea 2019-07-25 stsp got tree -r $testroot/repo -c $commit1 -i gamma | grep 'delta$' \
431 e0233cea 2019-07-25 stsp | cut -d' ' -f 1 >> $testroot/stdout.expected
432 e0233cea 2019-07-25 stsp echo -n 'blob + ' >> $testroot/stdout.expected
433 e0233cea 2019-07-25 stsp got tree -r $testroot/repo -c $commit2 -i gamma | grep 'delta$' | \
434 e0233cea 2019-07-25 stsp cut -d' ' -f 1 >> $testroot/stdout.expected
435 e0233cea 2019-07-25 stsp echo '--- gamma/delta' >> $testroot/stdout.expected
436 e0233cea 2019-07-25 stsp echo '+++ gamma/delta' >> $testroot/stdout.expected
437 e0233cea 2019-07-25 stsp echo '@@ -1 +1 @@' >> $testroot/stdout.expected
438 e0233cea 2019-07-25 stsp echo '-delta' >> $testroot/stdout.expected
439 e0233cea 2019-07-25 stsp echo '+modified delta' >> $testroot/stdout.expected
440 e0233cea 2019-07-25 stsp
441 e0233cea 2019-07-25 stsp got diff -r $testroot/repo $commit1 $commit2 > $testroot/stdout
442 e0233cea 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
443 e0233cea 2019-07-25 stsp ret="$?"
444 e0233cea 2019-07-25 stsp if [ "$ret" != "0" ]; then
445 e0233cea 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
446 e0233cea 2019-07-25 stsp fi
447 4866d084 2019-07-10 stsp test_done "$testroot" "$ret"
448 4866d084 2019-07-10 stsp }
449 90e8619e 2019-07-25 stsp
450 90e8619e 2019-07-25 stsp function test_commit_dir_path {
451 90e8619e 2019-07-25 stsp local testroot=`test_init commit_dir_path`
452 4866d084 2019-07-10 stsp
453 90e8619e 2019-07-25 stsp got checkout $testroot/repo $testroot/wt > /dev/null
454 90e8619e 2019-07-25 stsp ret="$?"
455 90e8619e 2019-07-25 stsp if [ "$ret" != "0" ]; then
456 90e8619e 2019-07-25 stsp test_done "$testroot" "$ret"
457 90e8619e 2019-07-25 stsp return 1
458 90e8619e 2019-07-25 stsp fi
459 90e8619e 2019-07-25 stsp
460 90e8619e 2019-07-25 stsp echo "modified alpha" > $testroot/wt/alpha
461 90e8619e 2019-07-25 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
462 90e8619e 2019-07-25 stsp
463 90e8619e 2019-07-25 stsp (cd $testroot/wt && got commit -m 'changed zeta' epsilon \
464 90e8619e 2019-07-25 stsp > $testroot/stdout)
465 90e8619e 2019-07-25 stsp
466 90e8619e 2019-07-25 stsp local head_rev=`git_show_head $testroot/repo`
467 90e8619e 2019-07-25 stsp echo "M epsilon/zeta" >> $testroot/stdout.expected
468 90e8619e 2019-07-25 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
469 90e8619e 2019-07-25 stsp
470 90e8619e 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
471 90e8619e 2019-07-25 stsp ret="$?"
472 90e8619e 2019-07-25 stsp if [ "$ret" != "0" ]; then
473 90e8619e 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
474 90e8619e 2019-07-25 stsp test_done "$testroot" "$ret"
475 90e8619e 2019-07-25 stsp return 1
476 90e8619e 2019-07-25 stsp fi
477 90e8619e 2019-07-25 stsp
478 90e8619e 2019-07-25 stsp echo "M alpha" > $testroot/stdout.expected
479 90e8619e 2019-07-25 stsp (cd $testroot/wt && got status > $testroot/stdout)
480 90e8619e 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
481 90e8619e 2019-07-25 stsp ret="$?"
482 90e8619e 2019-07-25 stsp if [ "$ret" != "0" ]; then
483 90e8619e 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
484 90e8619e 2019-07-25 stsp fi
485 90e8619e 2019-07-25 stsp test_done "$testroot" "$ret"
486 90e8619e 2019-07-25 stsp }
487 5c1e53bc 2019-07-28 stsp
488 5c1e53bc 2019-07-28 stsp function test_commit_selected_paths {
489 5c1e53bc 2019-07-28 stsp local testroot=`test_init commit_selected_paths`
490 5c1e53bc 2019-07-28 stsp
491 5c1e53bc 2019-07-28 stsp got checkout $testroot/repo $testroot/wt > /dev/null
492 5c1e53bc 2019-07-28 stsp ret="$?"
493 5c1e53bc 2019-07-28 stsp if [ "$ret" != "0" ]; then
494 5c1e53bc 2019-07-28 stsp test_done "$testroot" "$ret"
495 5c1e53bc 2019-07-28 stsp return 1
496 5c1e53bc 2019-07-28 stsp fi
497 5c1e53bc 2019-07-28 stsp
498 5c1e53bc 2019-07-28 stsp echo "modified alpha" > $testroot/wt/alpha
499 5c1e53bc 2019-07-28 stsp echo "modified delta" > $testroot/wt/gamma/delta
500 5c1e53bc 2019-07-28 stsp echo "modified zeta" > $testroot/wt/epsilon/zeta
501 5c1e53bc 2019-07-28 stsp (cd $testroot/wt && got rm beta >/dev/null)
502 5c1e53bc 2019-07-28 stsp echo "new file" > $testroot/wt/new
503 5c1e53bc 2019-07-28 stsp (cd $testroot/wt && got add new >/dev/null)
504 90e8619e 2019-07-25 stsp
505 5c1e53bc 2019-07-28 stsp (cd $testroot/wt && got commit -m 'many paths' nonexistent alpha \
506 5c1e53bc 2019-07-28 stsp > $testroot/stdout 2> $testroot/stderr)
507 5c1e53bc 2019-07-28 stsp ret="$?"
508 5c1e53bc 2019-07-28 stsp if [ "$ret" == "0" ]; then
509 5c1e53bc 2019-07-28 stsp echo "commit succeeded unexpectedly" >&2
510 5c1e53bc 2019-07-28 stsp test_done "$testroot" "1"
511 5c1e53bc 2019-07-28 stsp return 1
512 5c1e53bc 2019-07-28 stsp fi
513 5c1e53bc 2019-07-28 stsp echo "got: nonexistent: bad path" > $testroot/stderr.expected
514 5c1e53bc 2019-07-28 stsp
515 5c1e53bc 2019-07-28 stsp cmp -s $testroot/stderr.expected $testroot/stderr
516 5c1e53bc 2019-07-28 stsp ret="$?"
517 5c1e53bc 2019-07-28 stsp if [ "$ret" != "0" ]; then
518 5c1e53bc 2019-07-28 stsp diff -u $testroot/stderr.expected $testroot/stderr
519 5c1e53bc 2019-07-28 stsp test_done "$testroot" "$ret"
520 5c1e53bc 2019-07-28 stsp return 1
521 5c1e53bc 2019-07-28 stsp fi
522 5c1e53bc 2019-07-28 stsp
523 5c1e53bc 2019-07-28 stsp (cd $testroot/wt && got commit -m 'many paths' \
524 5c1e53bc 2019-07-28 stsp beta new gamma > $testroot/stdout)
525 5c1e53bc 2019-07-28 stsp
526 5c1e53bc 2019-07-28 stsp local head_rev=`git_show_head $testroot/repo`
527 5c1e53bc 2019-07-28 stsp echo "A new" > $testroot/stdout.expected
528 5c1e53bc 2019-07-28 stsp echo "D beta" >> $testroot/stdout.expected
529 5c1e53bc 2019-07-28 stsp echo "M gamma/delta" >> $testroot/stdout.expected
530 5c1e53bc 2019-07-28 stsp echo "Created commit $head_rev" >> $testroot/stdout.expected
531 5c1e53bc 2019-07-28 stsp
532 5c1e53bc 2019-07-28 stsp cmp -s $testroot/stdout.expected $testroot/stdout
533 5c1e53bc 2019-07-28 stsp ret="$?"
534 5c1e53bc 2019-07-28 stsp if [ "$ret" != "0" ]; then
535 5c1e53bc 2019-07-28 stsp diff -u $testroot/stdout.expected $testroot/stdout
536 5c1e53bc 2019-07-28 stsp fi
537 5c1e53bc 2019-07-28 stsp test_done "$testroot" "$ret"
538 5c1e53bc 2019-07-28 stsp }
539 5c1e53bc 2019-07-28 stsp
540 916f288c 2019-07-30 stsp function test_commit_outside_refs_heads {
541 916f288c 2019-07-30 stsp local testroot=`test_init commit_outside_refs_heads`
542 916f288c 2019-07-30 stsp
543 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c master refs/remotes/origin/master
544 916f288c 2019-07-30 stsp
545 916f288c 2019-07-30 stsp got checkout -b refs/remotes/origin/master \
546 916f288c 2019-07-30 stsp $testroot/repo $testroot/wt > /dev/null
547 916f288c 2019-07-30 stsp ret="$?"
548 916f288c 2019-07-30 stsp if [ "$ret" != "0" ]; then
549 916f288c 2019-07-30 stsp test_done "$testroot" "$ret"
550 916f288c 2019-07-30 stsp return 1
551 916f288c 2019-07-30 stsp fi
552 916f288c 2019-07-30 stsp
553 916f288c 2019-07-30 stsp echo "modified alpha" > $testroot/wt/alpha
554 916f288c 2019-07-30 stsp
555 916f288c 2019-07-30 stsp (cd $testroot/wt && got commit -m 'change alpha' \
556 916f288c 2019-07-30 stsp > $testroot/stdout 2> $testroot/stderr)
557 916f288c 2019-07-30 stsp ret="$?"
558 916f288c 2019-07-30 stsp if [ "$ret" == "0" ]; then
559 916f288c 2019-07-30 stsp echo "commit succeeded unexpectedly" >&2
560 916f288c 2019-07-30 stsp test_done "$testroot" "1"
561 916f288c 2019-07-30 stsp return 1
562 916f288c 2019-07-30 stsp fi
563 916f288c 2019-07-30 stsp
564 916f288c 2019-07-30 stsp echo -n > $testroot/stdout.expected
565 916f288c 2019-07-30 stsp cmp -s $testroot/stdout.expected $testroot/stdout
566 916f288c 2019-07-30 stsp ret="$?"
567 916f288c 2019-07-30 stsp if [ "$ret" != "0" ]; then
568 916f288c 2019-07-30 stsp diff -u $testroot/stdout.expected $testroot/stdout
569 916f288c 2019-07-30 stsp test_done "$testroot" "$ret"
570 916f288c 2019-07-30 stsp return 1
571 916f288c 2019-07-30 stsp fi
572 916f288c 2019-07-30 stsp
573 916f288c 2019-07-30 stsp echo -n "got: will not commit to a branch outside the " \
574 916f288c 2019-07-30 stsp > $testroot/stderr.expected
575 916f288c 2019-07-30 stsp echo '"refs/heads/" reference namespace' \
576 916f288c 2019-07-30 stsp >> $testroot/stderr.expected
577 916f288c 2019-07-30 stsp cmp -s $testroot/stderr.expected $testroot/stderr
578 916f288c 2019-07-30 stsp ret="$?"
579 916f288c 2019-07-30 stsp if [ "$ret" != "0" ]; then
580 916f288c 2019-07-30 stsp diff -u $testroot/stderr.expected $testroot/stderr
581 916f288c 2019-07-30 stsp fi
582 916f288c 2019-07-30 stsp test_done "$testroot" "$ret"
583 916f288c 2019-07-30 stsp }
584 916f288c 2019-07-30 stsp
585 84792843 2019-08-09 stsp function test_commit_no_email {
586 84792843 2019-08-09 stsp local testroot=`test_init commit_no_email`
587 916f288c 2019-07-30 stsp
588 84792843 2019-08-09 stsp got checkout $testroot/repo $testroot/wt > /dev/null
589 84792843 2019-08-09 stsp ret="$?"
590 84792843 2019-08-09 stsp if [ "$ret" != "0" ]; then
591 84792843 2019-08-09 stsp test_done "$testroot" "$ret"
592 84792843 2019-08-09 stsp return 1
593 84792843 2019-08-09 stsp fi
594 84792843 2019-08-09 stsp
595 84792843 2019-08-09 stsp echo "modified alpha" > $testroot/wt/alpha
596 84792843 2019-08-09 stsp (cd $testroot/wt && env GOT_AUTHOR=":flan_hacker:" \
597 84792843 2019-08-09 stsp got commit -m 'test no email' > $testroot/stdout \
598 84792843 2019-08-09 stsp 2> $testroot/stderr)
599 84792843 2019-08-09 stsp
600 84792843 2019-08-09 stsp echo -n "got: GOT_AUTHOR environment variable contains no email " \
601 84792843 2019-08-09 stsp > $testroot/stderr.expected
602 84792843 2019-08-09 stsp echo -n "address; an email address is required for compatibility "\
603 84792843 2019-08-09 stsp >> $testroot/stderr.expected
604 84792843 2019-08-09 stsp echo "with Git" >> $testroot/stderr.expected
605 84792843 2019-08-09 stsp cmp -s $testroot/stderr.expected $testroot/stderr
606 84792843 2019-08-09 stsp ret="$?"
607 84792843 2019-08-09 stsp if [ "$ret" != "0" ]; then
608 84792843 2019-08-09 stsp diff -u $testroot/stderr.expected $testroot/stderr
609 84792843 2019-08-09 stsp test_done "$testroot" "$ret"
610 84792843 2019-08-09 stsp return 1
611 84792843 2019-08-09 stsp fi
612 84792843 2019-08-09 stsp
613 84792843 2019-08-09 stsp echo -n > $testroot/stdout.expected
614 84792843 2019-08-09 stsp cmp -s $testroot/stdout.expected $testroot/stdout
615 84792843 2019-08-09 stsp ret="$?"
616 84792843 2019-08-09 stsp if [ "$ret" != "0" ]; then
617 84792843 2019-08-09 stsp diff -u $testroot/stdout.expected $testroot/stdout
618 84792843 2019-08-09 stsp fi
619 84792843 2019-08-09 stsp test_done "$testroot" "$ret"
620 84792843 2019-08-09 stsp }
621 6af1ccbd 2019-08-16 stsp
622 6af1ccbd 2019-08-16 stsp function test_commit_tree_entry_sorting {
623 6af1ccbd 2019-08-16 stsp local testroot=`test_init commit_tree_entry_sorting`
624 6af1ccbd 2019-08-16 stsp
625 6af1ccbd 2019-08-16 stsp got checkout $testroot/repo $testroot/wt > /dev/null
626 6af1ccbd 2019-08-16 stsp ret="$?"
627 6af1ccbd 2019-08-16 stsp if [ "$ret" != "0" ]; then
628 6af1ccbd 2019-08-16 stsp test_done "$testroot" "$ret"
629 6af1ccbd 2019-08-16 stsp return 1
630 6af1ccbd 2019-08-16 stsp fi
631 6af1ccbd 2019-08-16 stsp
632 6af1ccbd 2019-08-16 stsp # Git's index gets corrupted when tree entries are written in the
633 6af1ccbd 2019-08-16 stsp # order defined by got_path_cmp() rather than Git's own ordering.
634 6af1ccbd 2019-08-16 stsp # Create a new tree where a directory "got" and a file "got-version"
635 6af1ccbd 2019-08-16 stsp # would sort in the wrong order according to Git's opinion.
636 6af1ccbd 2019-08-16 stsp mkdir $testroot/wt/got
637 6af1ccbd 2019-08-16 stsp touch $testroot/wt/got/foo
638 6af1ccbd 2019-08-16 stsp echo foo > $testroot/wt/got-version
639 6af1ccbd 2019-08-16 stsp echo zzz > $testroot/wt/zzz
640 6af1ccbd 2019-08-16 stsp (cd $testroot/wt && got add got-version got/foo zzz > /dev/null)
641 84792843 2019-08-09 stsp
642 6af1ccbd 2019-08-16 stsp (cd $testroot/wt && got commit -m 'test' > /dev/null)
643 84792843 2019-08-09 stsp
644 6af1ccbd 2019-08-16 stsp # Let git-fsck verify the newly written tree to make sure Git is happy
645 6af1ccbd 2019-08-16 stsp (cd $testroot/repo && git fsck --strict \
646 6af1ccbd 2019-08-16 stsp > $testroot/fsck.stdout 2> $testroot/fsck.stderr)
647 6af1ccbd 2019-08-16 stsp ret="$?"
648 6af1ccbd 2019-08-16 stsp test_done "$testroot" "$ret"
649 6af1ccbd 2019-08-16 stsp }
650 aba9c984 2019-09-08 stsp
651 aba9c984 2019-09-08 stsp function test_commit_gitconfig_author {
652 aba9c984 2019-09-08 stsp local testroot=`test_init commit_gitconfig_author`
653 84792843 2019-08-09 stsp
654 aba9c984 2019-09-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
655 aba9c984 2019-09-08 stsp ret="$?"
656 aba9c984 2019-09-08 stsp if [ "$ret" != "0" ]; then
657 aba9c984 2019-09-08 stsp test_done "$testroot" "$ret"
658 aba9c984 2019-09-08 stsp return 1
659 aba9c984 2019-09-08 stsp fi
660 aba9c984 2019-09-08 stsp
661 aba9c984 2019-09-08 stsp (cd $testroot/repo && git config user.name 'Flan Luck')
662 aba9c984 2019-09-08 stsp (cd $testroot/repo && git config user.email 'flan_luck@openbsd.org')
663 aba9c984 2019-09-08 stsp
664 aba9c984 2019-09-08 stsp echo "modified alpha" > $testroot/wt/alpha
665 aba9c984 2019-09-08 stsp (cd $testroot/wt && got commit -m 'test gitconfig author' > /dev/null)
666 aba9c984 2019-09-08 stsp ret="$?"
667 aba9c984 2019-09-08 stsp if [ "$ret" != "0" ]; then
668 aba9c984 2019-09-08 stsp test_done "$testroot" "$ret"
669 aba9c984 2019-09-08 stsp return 1
670 aba9c984 2019-09-08 stsp fi
671 aba9c984 2019-09-08 stsp
672 aba9c984 2019-09-08 stsp (cd $testroot/repo && got log -l1 | grep ^from: > $testroot/stdout)
673 aba9c984 2019-09-08 stsp ret="$?"
674 aba9c984 2019-09-08 stsp if [ "$ret" != "0" ]; then
675 aba9c984 2019-09-08 stsp test_done "$testroot" "$ret"
676 aba9c984 2019-09-08 stsp return 1
677 aba9c984 2019-09-08 stsp fi
678 aba9c984 2019-09-08 stsp
679 aba9c984 2019-09-08 stsp echo "from: Flan Luck <flan_luck@openbsd.org>" \
680 aba9c984 2019-09-08 stsp > $testroot/stdout.expected
681 aba9c984 2019-09-08 stsp cmp -s $testroot/stdout.expected $testroot/stdout
682 aba9c984 2019-09-08 stsp ret="$?"
683 aba9c984 2019-09-08 stsp if [ "$ret" != "0" ]; then
684 aba9c984 2019-09-08 stsp diff -u $testroot/stdout.expected $testroot/stdout
685 aba9c984 2019-09-08 stsp fi
686 aba9c984 2019-09-08 stsp test_done "$testroot" "$ret"
687 aba9c984 2019-09-08 stsp }
688 1ebedb77 2019-10-19 stsp
689 1ebedb77 2019-10-19 stsp function test_commit_xbit_change {
690 1ebedb77 2019-10-19 stsp local testroot=`test_init commit_xbit_change`
691 1ebedb77 2019-10-19 stsp
692 1ebedb77 2019-10-19 stsp got checkout $testroot/repo $testroot/wt > /dev/null
693 1ebedb77 2019-10-19 stsp ret="$?"
694 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
695 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
696 1ebedb77 2019-10-19 stsp return 1
697 1ebedb77 2019-10-19 stsp fi
698 1ebedb77 2019-10-19 stsp
699 1ebedb77 2019-10-19 stsp chmod +x $testroot/wt/alpha
700 1ebedb77 2019-10-19 stsp
701 1ebedb77 2019-10-19 stsp echo 'm alpha' > $testroot/stdout.expected
702 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
703 aba9c984 2019-09-08 stsp
704 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
705 1ebedb77 2019-10-19 stsp ret="$?"
706 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
707 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
708 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
709 1ebedb77 2019-10-19 stsp return 1
710 1ebedb77 2019-10-19 stsp fi
711 1ebedb77 2019-10-19 stsp
712 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got commit -mx > $testroot/stdout)
713 1ebedb77 2019-10-19 stsp ret="$?"
714 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
715 1ebedb77 2019-10-19 stsp echo "got commit failed unexpectedly"
716 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
717 1ebedb77 2019-10-19 stsp return 1
718 1ebedb77 2019-10-19 stsp fi
719 1ebedb77 2019-10-19 stsp
720 1ebedb77 2019-10-19 stsp local commit_id=`git_show_head $testroot/repo`
721 1ebedb77 2019-10-19 stsp echo 'm alpha' > $testroot/stdout.expected
722 1ebedb77 2019-10-19 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
723 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
724 1ebedb77 2019-10-19 stsp ret="$?"
725 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
726 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
727 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
728 1ebedb77 2019-10-19 stsp return 1
729 1ebedb77 2019-10-19 stsp fi
730 1ebedb77 2019-10-19 stsp
731 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
732 1ebedb77 2019-10-19 stsp
733 1ebedb77 2019-10-19 stsp echo -n > $testroot/stdout.expected
734 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
735 1ebedb77 2019-10-19 stsp ret="$?"
736 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
737 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
738 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
739 1ebedb77 2019-10-19 stsp return 1
740 1ebedb77 2019-10-19 stsp fi
741 1ebedb77 2019-10-19 stsp
742 1ebedb77 2019-10-19 stsp chmod -x $testroot/wt/alpha
743 1ebedb77 2019-10-19 stsp
744 1ebedb77 2019-10-19 stsp echo 'm alpha' > $testroot/stdout.expected
745 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
746 1ebedb77 2019-10-19 stsp
747 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
748 1ebedb77 2019-10-19 stsp ret="$?"
749 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
750 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
751 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
752 1ebedb77 2019-10-19 stsp return 1
753 1ebedb77 2019-10-19 stsp fi
754 1ebedb77 2019-10-19 stsp
755 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got commit -mx > $testroot/stdout)
756 1ebedb77 2019-10-19 stsp ret="$?"
757 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
758 1ebedb77 2019-10-19 stsp echo "got commit failed unexpectedly"
759 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
760 1ebedb77 2019-10-19 stsp return 1
761 1ebedb77 2019-10-19 stsp fi
762 1ebedb77 2019-10-19 stsp
763 1ebedb77 2019-10-19 stsp local commit_id=`git_show_head $testroot/repo`
764 1ebedb77 2019-10-19 stsp echo 'm alpha' > $testroot/stdout.expected
765 1ebedb77 2019-10-19 stsp echo "Created commit $commit_id" >> $testroot/stdout.expected
766 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
767 1ebedb77 2019-10-19 stsp ret="$?"
768 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
769 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
770 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
771 1ebedb77 2019-10-19 stsp return 1
772 1ebedb77 2019-10-19 stsp fi
773 1ebedb77 2019-10-19 stsp
774 1ebedb77 2019-10-19 stsp chmod +x $testroot/wt/alpha
775 1ebedb77 2019-10-19 stsp
776 1ebedb77 2019-10-19 stsp echo 'm alpha' > $testroot/stdout.expected
777 1ebedb77 2019-10-19 stsp (cd $testroot/wt && got status > $testroot/stdout)
778 1ebedb77 2019-10-19 stsp
779 1ebedb77 2019-10-19 stsp cmp -s $testroot/stdout.expected $testroot/stdout
780 1ebedb77 2019-10-19 stsp ret="$?"
781 1ebedb77 2019-10-19 stsp if [ "$ret" != "0" ]; then
782 1ebedb77 2019-10-19 stsp diff -u $testroot/stdout.expected $testroot/stdout
783 1ebedb77 2019-10-19 stsp fi
784 1ebedb77 2019-10-19 stsp test_done "$testroot" "$ret"
785 1ebedb77 2019-10-19 stsp }
786 1ebedb77 2019-10-19 stsp
787 c4296144 2019-05-09 stsp run_test test_commit_basic
788 83a7ae6d 2019-05-10 stsp run_test test_commit_new_subdir
789 83a7ae6d 2019-05-10 stsp run_test test_commit_subdir
790 83a7ae6d 2019-05-10 stsp run_test test_commit_single_file
791 83a7ae6d 2019-05-10 stsp run_test test_commit_out_of_date
792 8ba6ba2d 2019-05-14 stsp run_test test_commit_added_subdirs
793 ba580f68 2020-03-22 stsp run_test test_commit_deleted_subdirs
794 f363d663 2019-05-23 stsp run_test test_commit_rejects_conflicted_file
795 1a36436d 2019-06-10 stsp run_test test_commit_single_file_multiple
796 4866d084 2019-07-10 stsp run_test test_commit_added_and_modified_in_same_dir
797 e0233cea 2019-07-25 stsp run_test test_commit_path_prefix
798 90e8619e 2019-07-25 stsp run_test test_commit_dir_path
799 5c1e53bc 2019-07-28 stsp run_test test_commit_selected_paths
800 916f288c 2019-07-30 stsp run_test test_commit_outside_refs_heads
801 84792843 2019-08-09 stsp run_test test_commit_no_email
802 6af1ccbd 2019-08-16 stsp run_test test_commit_tree_entry_sorting
803 aba9c984 2019-09-08 stsp run_test test_commit_gitconfig_author
804 1ebedb77 2019-10-19 stsp run_test test_commit_xbit_change