blob: c973278300a5c911845016ef1e23144f51ebcd7d [file] [log] [blame]
Peter Huttererca2cedb2009-04-24 09:06:38 +10001#!/bin/sh
2#
3# Copyright (c) 2009 Red Hat, Inc.
4#
5
6test_description='Test updating submodules
7
8This test verifies that "git submodule update" detaches the HEAD of the
Johan Herland42b49172009-06-03 00:59:12 +02009submodule and "git submodule update --rebase/--merge" does not detach the HEAD.
Peter Huttererca2cedb2009-04-24 09:06:38 +100010'
11
12. ./test-lib.sh
13
14
15compare_head()
16{
Elia Pinto848351b2016-01-08 12:06:20 +010017 sha_master=$(git rev-list --max-count=1 master)
18 sha_head=$(git rev-list --max-count=1 HEAD)
Peter Huttererca2cedb2009-04-24 09:06:38 +100019
20 test "$sha_master" = "$sha_head"
21}
22
23
24test_expect_success 'setup a submodule tree' '
25 echo file > file &&
26 git add file &&
27 test_tick &&
Jens Lehmann4bf9dd92010-09-01 23:28:27 +020028 git commit -m upstream &&
Peter Huttererca2cedb2009-04-24 09:06:38 +100029 git clone . super &&
30 git clone super submodule &&
Stephen Boydc9c8c562010-03-05 00:20:38 -080031 git clone super rebasing &&
32 git clone super merging &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +020033 git clone super none &&
Peter Huttererca2cedb2009-04-24 09:06:38 +100034 (cd super &&
35 git submodule add ../submodule submodule &&
36 test_tick &&
37 git commit -m "submodule" &&
38 git submodule init submodule
39 ) &&
40 (cd submodule &&
41 echo "line2" > file &&
42 git add file &&
43 git commit -m "Commit 2"
44 ) &&
45 (cd super &&
46 (cd submodule &&
47 git pull --rebase origin
48 ) &&
49 git add submodule &&
50 git commit -m "submodule update"
Stephen Boydc9c8c562010-03-05 00:20:38 -080051 ) &&
52 (cd super &&
53 git submodule add ../rebasing rebasing &&
54 test_tick &&
55 git commit -m "rebasing"
56 ) &&
57 (cd super &&
58 git submodule add ../merging merging &&
59 test_tick &&
60 git commit -m "rebasing"
Tay Ray Chuand5b99f32013-09-16 01:38:21 +080061 ) &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +020062 (cd super &&
63 git submodule add ../none none &&
64 test_tick &&
65 git commit -m "none"
Stefan Bellerc1ab00f2016-03-29 18:27:42 -070066 ) &&
67 git clone . recursivesuper &&
SZEDER Gábor8de19d62018-06-16 22:33:19 +020068 ( cd recursivesuper &&
Stefan Bellerc1ab00f2016-03-29 18:27:42 -070069 git submodule add ../super super
Heiko Voigt322bb6e2011-08-11 19:51:46 +020070 )
Peter Huttererca2cedb2009-04-24 09:06:38 +100071'
72
73test_expect_success 'submodule update detaching the HEAD ' '
74 (cd super/submodule &&
75 git reset --hard HEAD~1
76 ) &&
77 (cd super &&
78 (cd submodule &&
79 compare_head
80 ) &&
81 git submodule update submodule &&
82 cd submodule &&
83 ! compare_head
84 )
85'
86
John Keeping091a6eb2013-06-16 15:18:18 +010087test_expect_success 'submodule update from subdirectory' '
88 (cd super/submodule &&
89 git reset --hard HEAD~1
90 ) &&
91 mkdir super/sub &&
92 (cd super/sub &&
93 (cd ../submodule &&
94 compare_head
95 ) &&
96 git submodule update ../submodule &&
97 cd ../submodule &&
98 ! compare_head
99 )
100'
101
Stefan Bellerc1ab00f2016-03-29 18:27:42 -0700102supersha1=$(git -C super rev-parse HEAD)
103mergingsha1=$(git -C super/merging rev-parse HEAD)
104nonesha1=$(git -C super/none rev-parse HEAD)
105rebasingsha1=$(git -C super/rebasing rev-parse HEAD)
106submodulesha1=$(git -C super/submodule rev-parse HEAD)
107pwd=$(pwd)
108
109cat <<EOF >expect
110Submodule path '../super': checked out '$supersha1'
Stefan Bellerc1ab00f2016-03-29 18:27:42 -0700111Submodule path '../super/merging': checked out '$mergingsha1'
112Submodule path '../super/none': checked out '$nonesha1'
113Submodule path '../super/rebasing': checked out '$rebasingsha1'
114Submodule path '../super/submodule': checked out '$submodulesha1'
115EOF
116
Stefan Bellerc66410e2016-05-02 15:24:04 -0700117cat <<EOF >expect2
Johannes Schindelin0b7d3242018-07-23 06:39:42 -0700118Cloning into '$pwd/recursivesuper/super/merging'...
119Cloning into '$pwd/recursivesuper/super/none'...
120Cloning into '$pwd/recursivesuper/super/rebasing'...
121Cloning into '$pwd/recursivesuper/super/submodule'...
Stefan Bellerc66410e2016-05-02 15:24:04 -0700122Submodule 'merging' ($pwd/merging) registered for path '../super/merging'
123Submodule 'none' ($pwd/none) registered for path '../super/none'
124Submodule 'rebasing' ($pwd/rebasing) registered for path '../super/rebasing'
125Submodule 'submodule' ($pwd/submodule) registered for path '../super/submodule'
Stefan Bellerc66410e2016-05-02 15:24:04 -0700126done.
Stefan Bellerc66410e2016-05-02 15:24:04 -0700127done.
Stefan Bellerc66410e2016-05-02 15:24:04 -0700128done.
Stefan Bellerc66410e2016-05-02 15:24:04 -0700129done.
130EOF
131
Stefan Bellerc1ab00f2016-03-29 18:27:42 -0700132test_expect_success 'submodule update --init --recursive from subdirectory' '
133 git -C recursivesuper/super reset --hard HEAD^ &&
134 (cd recursivesuper &&
135 mkdir tmp &&
136 cd tmp &&
Stefan Bellerc66410e2016-05-02 15:24:04 -0700137 git submodule update --init --recursive ../super >../../actual 2>../../actual2
Stefan Bellerc1ab00f2016-03-29 18:27:42 -0700138 ) &&
Vasco Almeida1edbaac2016-06-17 20:21:07 +0000139 test_i18ncmp expect actual &&
Johannes Schindelin0b7d3242018-07-23 06:39:42 -0700140 sort actual2 >actual2.sorted &&
141 test_i18ncmp expect2 actual2.sorted
Stefan Bellerc1ab00f2016-03-29 18:27:42 -0700142'
143
Stefan Beller6e7c14e2017-01-06 16:19:53 -0800144cat <<EOF >expect2
145Submodule 'foo/sub' ($pwd/withsubs/../rebasing) registered for path 'sub'
146EOF
147
148test_expect_success 'submodule update --init from and of subdirectory' '
149 git init withsubs &&
150 (cd withsubs &&
151 mkdir foo &&
152 git submodule add "$(pwd)/../rebasing" foo/sub &&
153 (cd foo &&
154 git submodule deinit -f sub &&
155 git submodule update --init sub 2>../../actual2
156 )
157 ) &&
158 test_i18ncmp expect2 actual2
159'
160
Jens Lehmanne5f522d2011-03-06 23:13:36 +0100161apos="'";
162test_expect_success 'submodule update does not fetch already present commits' '
163 (cd submodule &&
164 echo line3 >> file &&
165 git add file &&
166 test_tick &&
167 git commit -m "upstream line3"
168 ) &&
169 (cd super/submodule &&
170 head=$(git rev-parse --verify HEAD) &&
171 echo "Submodule path ${apos}submodule$apos: checked out $apos$head$apos" > ../../expected &&
172 git reset --hard HEAD~1
173 ) &&
174 (cd super &&
175 git submodule update > ../actual 2> ../actual.err
176 ) &&
Ævar Arnfjörð Bjarmasonee653c82011-05-21 18:44:02 +0000177 test_i18ncmp expected actual &&
Elijah Newren7e9055b2018-08-08 09:31:06 -0700178 test_must_be_empty actual.err
Jens Lehmanne5f522d2011-03-06 23:13:36 +0100179'
180
Nicolas Morey-Chaisemartin9db31bd2011-04-01 11:42:03 +0200181test_expect_success 'submodule update should fail due to local changes' '
182 (cd super/submodule &&
183 git reset --hard HEAD~1 &&
184 echo "local change" > file
185 ) &&
186 (cd super &&
187 (cd submodule &&
188 compare_head
189 ) &&
190 test_must_fail git submodule update submodule
191 )
192'
193test_expect_success 'submodule update should throw away changes with --force ' '
194 (cd super &&
195 (cd submodule &&
196 compare_head
197 ) &&
198 git submodule update --force submodule &&
199 cd submodule &&
200 ! compare_head
201 )
202'
203
Stefan Zager01d47212012-07-25 10:41:54 -0700204test_expect_success 'submodule update --force forcibly checks out submodules' '
205 (cd super &&
206 (cd submodule &&
207 rm -f file
208 ) &&
209 git submodule update --force submodule &&
210 (cd submodule &&
211 test "$(git status -s file)" = ""
212 )
213 )
214'
215
W. Trevor King06b1abb2012-12-19 11:03:32 -0500216test_expect_success 'submodule update --remote should fetch upstream changes' '
217 (cd submodule &&
218 echo line4 >> file &&
219 git add file &&
220 test_tick &&
221 git commit -m "upstream line4"
222 ) &&
223 (cd super &&
224 git submodule update --remote --force submodule &&
225 cd submodule &&
226 test "$(git log -1 --oneline)" = "$(GIT_DIR=../../submodule/.git git log -1 --oneline)"
227 )
228'
229
Stefan Beller4d7bc522016-08-03 13:44:04 -0700230test_expect_success 'submodule update --remote should fetch upstream changes with .' '
231 (
232 cd super &&
233 git config -f .gitmodules submodule."submodule".branch "." &&
234 git add .gitmodules &&
235 git commit -m "submodules: update from the respective superproject branch"
236 ) &&
237 (
238 cd submodule &&
239 echo line4a >> file &&
240 git add file &&
241 test_tick &&
242 git commit -m "upstream line4a" &&
243 git checkout -b test-branch &&
244 test_commit on-test-branch
245 ) &&
246 (
247 cd super &&
248 git submodule update --remote --force submodule &&
SZEDER Gábor8de19d62018-06-16 22:33:19 +0200249 git -C submodule log -1 --oneline >actual &&
250 git -C ../submodule log -1 --oneline master >expect &&
Stefan Beller4d7bc522016-08-03 13:44:04 -0700251 test_cmp expect actual &&
252 git checkout -b test-branch &&
253 git submodule update --remote --force submodule &&
SZEDER Gábor8de19d62018-06-16 22:33:19 +0200254 git -C submodule log -1 --oneline >actual &&
255 git -C ../submodule log -1 --oneline test-branch >expect &&
Stefan Beller4d7bc522016-08-03 13:44:04 -0700256 test_cmp expect actual &&
257 git checkout master &&
258 git branch -d test-branch &&
259 git reset --hard HEAD^
260 )
261'
262
W. Trevor King06b1abb2012-12-19 11:03:32 -0500263test_expect_success 'local config should override .gitmodules branch' '
264 (cd submodule &&
Stefan Beller4d7bc522016-08-03 13:44:04 -0700265 git checkout test-branch &&
W. Trevor King06b1abb2012-12-19 11:03:32 -0500266 echo line5 >> file &&
267 git add file &&
268 test_tick &&
269 git commit -m "upstream line5" &&
270 git checkout master
271 ) &&
272 (cd super &&
273 git config submodule.submodule.branch test-branch &&
274 git submodule update --remote --force submodule &&
275 cd submodule &&
276 test "$(git log -1 --oneline)" = "$(GIT_DIR=../../submodule/.git git log -1 --oneline test-branch)"
277 )
278'
279
Peter Huttererca2cedb2009-04-24 09:06:38 +1000280test_expect_success 'submodule update --rebase staying on master' '
281 (cd super/submodule &&
282 git checkout master
283 ) &&
284 (cd super &&
285 (cd submodule &&
286 compare_head
287 ) &&
288 git submodule update --rebase submodule &&
289 cd submodule &&
290 compare_head
291 )
292'
293
Johan Herland42b49172009-06-03 00:59:12 +0200294test_expect_success 'submodule update --merge staying on master' '
295 (cd super/submodule &&
296 git reset --hard HEAD~1
297 ) &&
298 (cd super &&
299 (cd submodule &&
300 compare_head
301 ) &&
302 git submodule update --merge submodule &&
303 cd submodule &&
304 compare_head
305 )
306'
307
Johan Herland32948422009-06-03 08:27:06 +0200308test_expect_success 'submodule update - rebase in .git/config' '
Peter Huttererca2cedb2009-04-24 09:06:38 +1000309 (cd super &&
Johan Herland32948422009-06-03 08:27:06 +0200310 git config submodule.submodule.update rebase
Peter Huttererca2cedb2009-04-24 09:06:38 +1000311 ) &&
312 (cd super/submodule &&
313 git reset --hard HEAD~1
314 ) &&
315 (cd super &&
316 (cd submodule &&
317 compare_head
318 ) &&
319 git submodule update submodule &&
320 cd submodule &&
321 compare_head
322 )
323'
324
Johan Herland32948422009-06-03 08:27:06 +0200325test_expect_success 'submodule update - checkout in .git/config but --rebase given' '
Peter Huttererca2cedb2009-04-24 09:06:38 +1000326 (cd super &&
Johan Herland32948422009-06-03 08:27:06 +0200327 git config submodule.submodule.update checkout
Peter Huttererca2cedb2009-04-24 09:06:38 +1000328 ) &&
329 (cd super/submodule &&
330 git reset --hard HEAD~1
331 ) &&
332 (cd super &&
333 (cd submodule &&
334 compare_head
335 ) &&
336 git submodule update --rebase submodule &&
337 cd submodule &&
338 compare_head
339 )
340'
341
Johan Herland42b49172009-06-03 00:59:12 +0200342test_expect_success 'submodule update - merge in .git/config' '
343 (cd super &&
344 git config submodule.submodule.update merge
345 ) &&
346 (cd super/submodule &&
347 git reset --hard HEAD~1
348 ) &&
349 (cd super &&
350 (cd submodule &&
351 compare_head
352 ) &&
353 git submodule update submodule &&
354 cd submodule &&
355 compare_head
356 )
357'
358
359test_expect_success 'submodule update - checkout in .git/config but --merge given' '
360 (cd super &&
361 git config submodule.submodule.update checkout
362 ) &&
363 (cd super/submodule &&
364 git reset --hard HEAD~1
365 ) &&
366 (cd super &&
367 (cd submodule &&
368 compare_head
369 ) &&
370 git submodule update --merge submodule &&
371 cd submodule &&
372 compare_head
373 )
374'
375
Johan Herland32948422009-06-03 08:27:06 +0200376test_expect_success 'submodule update - checkout in .git/config' '
Peter Huttererca2cedb2009-04-24 09:06:38 +1000377 (cd super &&
Johan Herland32948422009-06-03 08:27:06 +0200378 git config submodule.submodule.update checkout
Peter Huttererca2cedb2009-04-24 09:06:38 +1000379 ) &&
380 (cd super/submodule &&
381 git reset --hard HEAD^
382 ) &&
383 (cd super &&
384 (cd submodule &&
385 compare_head
386 ) &&
387 git submodule update submodule &&
388 cd submodule &&
389 ! compare_head
390 )
391'
392
Chris Packham6cb57282013-07-03 21:02:02 +1200393test_expect_success 'submodule update - command in .git/config' '
394 (cd super &&
395 git config submodule.submodule.update "!git checkout"
396 ) &&
397 (cd super/submodule &&
398 git reset --hard HEAD^
399 ) &&
400 (cd super &&
401 (cd submodule &&
402 compare_head
403 ) &&
404 git submodule update submodule &&
405 cd submodule &&
406 ! compare_head
407 )
408'
409
Stefan Beller83a17fa2017-09-26 12:54:13 -0700410test_expect_success 'submodule update - command in .gitmodules is ignored' '
411 test_when_finished "git -C super reset --hard HEAD^" &&
412 git -C super config -f .gitmodules submodule.submodule.update "!false" &&
413 git -C super commit -a -m "add command to .gitmodules file" &&
414 git -C super/submodule reset --hard $submodulesha1^ &&
415 git -C super submodule update submodule
416'
417
Stefan Bellerb08238a2016-03-29 18:27:44 -0700418cat << EOF >expect
419Execution of 'false $submodulesha1' failed in submodule path 'submodule'
420EOF
421
Chris Packham6cb57282013-07-03 21:02:02 +1200422test_expect_success 'submodule update - command in .git/config catches failure' '
423 (cd super &&
424 git config submodule.submodule.update "!false"
425 ) &&
426 (cd super/submodule &&
Stefan Bellerb08238a2016-03-29 18:27:44 -0700427 git reset --hard $submodulesha1^
Chris Packham6cb57282013-07-03 21:02:02 +1200428 ) &&
429 (cd super &&
Stefan Bellerb08238a2016-03-29 18:27:44 -0700430 test_must_fail git submodule update submodule 2>../actual
431 ) &&
Vasco Almeida1edbaac2016-06-17 20:21:07 +0000432 test_i18ncmp actual expect
Stefan Bellerb08238a2016-03-29 18:27:44 -0700433'
434
435cat << EOF >expect
436Execution of 'false $submodulesha1' failed in submodule path '../submodule'
437EOF
438
439test_expect_success 'submodule update - command in .git/config catches failure -- subdirectory' '
440 (cd super &&
441 git config submodule.submodule.update "!false"
442 ) &&
443 (cd super/submodule &&
444 git reset --hard $submodulesha1^
445 ) &&
446 (cd super &&
447 mkdir tmp && cd tmp &&
448 test_must_fail git submodule update ../submodule 2>../../actual
449 ) &&
Vasco Almeida1edbaac2016-06-17 20:21:07 +0000450 test_i18ncmp actual expect
Chris Packham6cb57282013-07-03 21:02:02 +1200451'
452
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800453test_expect_success 'submodule update - command run for initial population of submodule' '
Junio C Hamanoa4dded02017-03-22 15:12:07 -0700454 cat >expect <<-EOF &&
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800455 Execution of '\''false $submodulesha1'\'' failed in submodule path '\''submodule'\''
Junio C Hamanoa4dded02017-03-22 15:12:07 -0700456 EOF
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800457 rm -rf super/submodule &&
Junio C Hamanoa4dded02017-03-22 15:12:07 -0700458 test_must_fail git -C super submodule update 2>actual &&
Ævar Arnfjörð Bjarmason0d75bfe2017-05-05 18:19:32 +0000459 test_i18ncmp expect actual &&
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800460 git -C super submodule update --checkout
461'
462
Stefan Bellerc1e06d12016-03-29 18:27:45 -0700463cat << EOF >expect
464Execution of 'false $submodulesha1' failed in submodule path '../super/submodule'
465Failed to recurse into submodule path '../super'
466EOF
467
468test_expect_success 'recursive submodule update - command in .git/config catches failure -- subdirectory' '
469 (cd recursivesuper &&
470 git submodule update --remote super &&
471 git add super &&
472 git commit -m "update to latest to have more than one commit in submodules"
473 ) &&
474 git -C recursivesuper/super config submodule.submodule.update "!false" &&
475 git -C recursivesuper/super/submodule reset --hard $submodulesha1^ &&
476 (cd recursivesuper &&
477 mkdir -p tmp && cd tmp &&
478 test_must_fail git submodule update --recursive ../super 2>../../actual
479 ) &&
Vasco Almeida1edbaac2016-06-17 20:21:07 +0000480 test_i18ncmp actual expect
Spencer E. Olsonb2000212011-02-17 09:18:46 -0700481'
482
Junio C Hamanoac1fbbd2013-12-02 13:31:55 -0800483test_expect_success 'submodule init does not copy command into .git/config' '
484 (cd super &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700485 git ls-files -s submodule >out &&
486 H=$(cut -d" " -f2 out) &&
Junio C Hamanoac1fbbd2013-12-02 13:31:55 -0800487 mkdir submodule1 &&
488 git update-index --add --cacheinfo 160000 $H submodule1 &&
489 git config -f .gitmodules submodule.submodule1.path submodule1 &&
490 git config -f .gitmodules submodule.submodule1.url ../submodule &&
491 git config -f .gitmodules submodule.submodule1.update !false &&
492 git submodule init submodule1 &&
493 echo "none" >expect &&
494 git config submodule.submodule1.update >actual &&
495 test_cmp expect actual
496 )
497'
498
Peter Huttererca2cedb2009-04-24 09:06:38 +1000499test_expect_success 'submodule init picks up rebase' '
500 (cd super &&
Stephen Boydc9c8c562010-03-05 00:20:38 -0800501 git config -f .gitmodules submodule.rebasing.update rebase &&
Peter Huttererca2cedb2009-04-24 09:06:38 +1000502 git submodule init rebasing &&
Stephen Boydc9c8c562010-03-05 00:20:38 -0800503 test "rebase" = "$(git config submodule.rebasing.update)"
Peter Huttererca2cedb2009-04-24 09:06:38 +1000504 )
505'
506
Johan Herland42b49172009-06-03 00:59:12 +0200507test_expect_success 'submodule init picks up merge' '
508 (cd super &&
Stephen Boydc9c8c562010-03-05 00:20:38 -0800509 git config -f .gitmodules submodule.merging.update merge &&
Johan Herland42b49172009-06-03 00:59:12 +0200510 git submodule init merging &&
Stephen Boydc9c8c562010-03-05 00:20:38 -0800511 test "merge" = "$(git config submodule.merging.update)"
Johan Herland42b49172009-06-03 00:59:12 +0200512 )
513'
514
Spencer E. Olsonb2000212011-02-17 09:18:46 -0700515test_expect_success 'submodule update --merge - ignores --merge for new submodules' '
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800516 test_config -C super submodule.submodule.update checkout &&
Spencer E. Olsonb2000212011-02-17 09:18:46 -0700517 (cd super &&
518 rm -rf submodule &&
519 git submodule update submodule &&
520 git status -s submodule >expect &&
521 rm -rf submodule &&
522 git submodule update --merge submodule &&
523 git status -s submodule >actual &&
524 test_cmp expect actual
525 )
526'
527
528test_expect_success 'submodule update --rebase - ignores --rebase for new submodules' '
Stefan Bellere7b37ca2017-01-25 15:48:51 -0800529 test_config -C super submodule.submodule.update checkout &&
Spencer E. Olsonb2000212011-02-17 09:18:46 -0700530 (cd super &&
531 rm -rf submodule &&
532 git submodule update submodule &&
533 git status -s submodule >expect &&
534 rm -rf submodule &&
535 git submodule update --rebase submodule &&
536 git status -s submodule >actual &&
537 test_cmp expect actual
538 )
539'
540
541test_expect_success 'submodule update ignores update=merge config for new submodules' '
542 (cd super &&
543 rm -rf submodule &&
544 git submodule update submodule &&
545 git status -s submodule >expect &&
546 rm -rf submodule &&
547 git config submodule.submodule.update merge &&
548 git submodule update submodule &&
549 git status -s submodule >actual &&
550 git config --unset submodule.submodule.update &&
551 test_cmp expect actual
552 )
553'
554
555test_expect_success 'submodule update ignores update=rebase config for new submodules' '
556 (cd super &&
557 rm -rf submodule &&
558 git submodule update submodule &&
559 git status -s submodule >expect &&
560 rm -rf submodule &&
561 git config submodule.submodule.update rebase &&
562 git submodule update submodule &&
563 git status -s submodule >actual &&
564 git config --unset submodule.submodule.update &&
565 test_cmp expect actual
566 )
567'
568
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200569test_expect_success 'submodule init picks up update=none' '
570 (cd super &&
571 git config -f .gitmodules submodule.none.update none &&
572 git submodule init none &&
573 test "none" = "$(git config submodule.none.update)"
574 )
575'
576
577test_expect_success 'submodule update - update=none in .git/config' '
578 (cd super &&
579 git config submodule.submodule.update none &&
580 (cd submodule &&
581 git checkout master &&
582 compare_head
583 ) &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700584 git diff --name-only >out &&
585 grep ^submodule$ out &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200586 git submodule update &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700587 git diff --name-only >out &&
588 grep ^submodule$ out &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200589 (cd submodule &&
590 compare_head
591 ) &&
592 git config --unset submodule.submodule.update &&
593 git submodule update submodule
594 )
595'
596
597test_expect_success 'submodule update - update=none in .git/config but --checkout given' '
598 (cd super &&
599 git config submodule.submodule.update none &&
600 (cd submodule &&
601 git checkout master &&
602 compare_head
603 ) &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700604 git diff --name-only >out &&
605 grep ^submodule$ out &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200606 git submodule update --checkout &&
Elijah Newren602813c2018-08-08 09:31:04 -0700607 git diff --name-only >out &&
608 ! grep ^submodule$ out &&
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200609 (cd submodule &&
Elijah Newren9fd10802018-08-08 09:31:07 -0700610 ! compare_head
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200611 ) &&
612 git config --unset submodule.submodule.update
613 )
614'
615
616test_expect_success 'submodule update --init skips submodule with update=none' '
617 (cd super &&
618 git add .gitmodules &&
619 git commit -m ".gitmodules"
620 ) &&
621 git clone super cloned &&
622 (cd cloned &&
623 git submodule update --init &&
Elijah Newren7e9055b2018-08-08 09:31:06 -0700624 test_path_exists submodule/.git &&
625 test_path_is_missing none/.git
Heiko Voigt322bb6e2011-08-11 19:51:46 +0200626 )
627'
628
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200629test_expect_success 'submodule update continues after checkout error' '
630 (cd super &&
631 git reset --hard HEAD &&
632 git submodule add ../submodule submodule2 &&
633 git submodule init &&
634 git commit -am "new_submodule" &&
635 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700636 git rev-parse --verify HEAD >../expect
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200637 ) &&
638 (cd submodule &&
639 test_commit "update_submodule" file
640 ) &&
641 (cd submodule2 &&
642 test_commit "update_submodule2" file
643 ) &&
644 git add submodule &&
645 git add submodule2 &&
646 git commit -m "two_new_submodule_commits" &&
647 (cd submodule &&
648 echo "" > file
649 ) &&
650 git checkout HEAD^ &&
651 test_must_fail git submodule update &&
652 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700653 git rev-parse --verify HEAD >../actual
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200654 ) &&
655 test_cmp expect actual
656 )
657'
658test_expect_success 'submodule update continues after recursive checkout error' '
659 (cd super &&
660 git reset --hard HEAD &&
661 git checkout master &&
662 git submodule update &&
663 (cd submodule &&
664 git submodule add ../submodule subsubmodule &&
665 git submodule init &&
666 git commit -m "new_subsubmodule"
667 ) &&
668 git add submodule &&
669 git commit -m "update_submodule" &&
670 (cd submodule &&
671 (cd subsubmodule &&
672 test_commit "update_subsubmodule" file
673 ) &&
674 git add subsubmodule &&
675 test_commit "update_submodule_again" file &&
676 (cd subsubmodule &&
677 test_commit "update_subsubmodule_again" file
678 ) &&
679 test_commit "update_submodule_again_again" file
680 ) &&
681 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700682 git rev-parse --verify HEAD >../expect &&
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200683 test_commit "update_submodule2_again" file
684 ) &&
685 git add submodule &&
686 git add submodule2 &&
687 git commit -m "new_commits" &&
688 git checkout HEAD^ &&
689 (cd submodule &&
690 git checkout HEAD^ &&
691 (cd subsubmodule &&
692 echo "" > file
693 )
694 ) &&
695 test_must_fail git submodule update --recursive &&
696 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700697 git rev-parse --verify HEAD >../actual
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200698 ) &&
699 test_cmp expect actual
700 )
701'
702
703test_expect_success 'submodule update exit immediately in case of merge conflict' '
704 (cd super &&
705 git checkout master &&
706 git reset --hard HEAD &&
707 (cd submodule &&
708 (cd subsubmodule &&
709 git reset --hard HEAD
710 )
711 ) &&
712 git submodule update --recursive &&
713 (cd submodule &&
714 test_commit "update_submodule_2" file
715 ) &&
716 (cd submodule2 &&
717 test_commit "update_submodule2_2" file
718 ) &&
719 git add submodule &&
720 git add submodule2 &&
721 git commit -m "two_new_submodule_commits" &&
722 (cd submodule &&
723 git checkout master &&
724 test_commit "conflict" file &&
725 echo "conflict" > file
726 ) &&
727 git checkout HEAD^ &&
728 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700729 git rev-parse --verify HEAD >../expect
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200730 ) &&
731 git config submodule.submodule.update merge &&
732 test_must_fail git submodule update &&
733 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700734 git rev-parse --verify HEAD >../actual
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200735 ) &&
736 test_cmp expect actual
737 )
738'
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200739
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200740test_expect_success 'submodule update exit immediately after recursive rebase error' '
741 (cd super &&
742 git checkout master &&
743 git reset --hard HEAD &&
744 (cd submodule &&
745 git reset --hard HEAD &&
746 git submodule update --recursive
747 ) &&
748 (cd submodule &&
749 test_commit "update_submodule_3" file
750 ) &&
751 (cd submodule2 &&
752 test_commit "update_submodule2_3" file
753 ) &&
754 git add submodule &&
755 git add submodule2 &&
756 git commit -m "two_new_submodule_commits" &&
757 (cd submodule &&
758 git checkout master &&
759 test_commit "conflict2" file &&
760 echo "conflict" > file
761 ) &&
762 git checkout HEAD^ &&
763 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700764 git rev-parse --verify HEAD >../expect
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200765 ) &&
766 git config submodule.submodule.update rebase &&
767 test_must_fail git submodule update &&
768 (cd submodule2 &&
Junio C Hamanoad6a5992012-07-30 10:51:52 -0700769 git rev-parse --verify HEAD >../actual
Fredrik Gustafsson15ffb7c2011-06-13 19:15:26 +0200770 ) &&
771 test_cmp expect actual
772 )
773'
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200774
775test_expect_success 'add different submodules to the same path' '
776 (cd super &&
777 git submodule add ../submodule s1 &&
778 test_must_fail git submodule add ../merging s1
779 )
780'
781
782test_expect_success 'submodule add places git-dir in superprojects git-dir' '
783 (cd super &&
784 mkdir deeper &&
785 git submodule add ../submodule deeper/submodule &&
786 (cd deeper/submodule &&
787 git log > ../../expected
788 ) &&
789 (cd .git/modules/deeper/submodule &&
790 git log > ../../../../actual
791 ) &&
Matthew DeVoredcbaa0b2018-10-05 14:54:04 -0700792 test_cmp expected actual
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200793 )
794'
795
796test_expect_success 'submodule update places git-dir in superprojects git-dir' '
797 (cd super &&
798 git commit -m "added submodule"
799 ) &&
800 git clone super super2 &&
801 (cd super2 &&
802 git submodule init deeper/submodule &&
803 git submodule update &&
804 (cd deeper/submodule &&
805 git log > ../../expected
806 ) &&
807 (cd .git/modules/deeper/submodule &&
808 git log > ../../../../actual
809 ) &&
Matthew DeVoredcbaa0b2018-10-05 14:54:04 -0700810 test_cmp expected actual
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200811 )
812'
813
814test_expect_success 'submodule add places git-dir in superprojects git-dir recursive' '
815 (cd super2 &&
816 (cd deeper/submodule &&
817 git submodule add ../submodule subsubmodule &&
818 (cd subsubmodule &&
819 git log > ../../../expected
820 ) &&
821 git commit -m "added subsubmodule" &&
Junio C Hamanoae74f7d2013-01-04 16:19:19 -0800822 git push origin :
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200823 ) &&
824 (cd .git/modules/deeper/submodule/modules/subsubmodule &&
825 git log > ../../../../../actual
826 ) &&
827 git add deeper/submodule &&
828 git commit -m "update submodule" &&
Junio C Hamanoae74f7d2013-01-04 16:19:19 -0800829 git push origin : &&
Matthew DeVoredcbaa0b2018-10-05 14:54:04 -0700830 test_cmp expected actual
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200831 )
832'
833
834test_expect_success 'submodule update places git-dir in superprojects git-dir recursive' '
835 mkdir super_update_r &&
836 (cd super_update_r &&
837 git init --bare
838 ) &&
839 mkdir subsuper_update_r &&
840 (cd subsuper_update_r &&
841 git init --bare
842 ) &&
843 mkdir subsubsuper_update_r &&
844 (cd subsubsuper_update_r &&
845 git init --bare
846 ) &&
847 git clone subsubsuper_update_r subsubsuper_update_r2 &&
848 (cd subsubsuper_update_r2 &&
849 test_commit "update_subsubsuper" file &&
850 git push origin master
851 ) &&
852 git clone subsuper_update_r subsuper_update_r2 &&
853 (cd subsuper_update_r2 &&
854 test_commit "update_subsuper" file &&
855 git submodule add ../subsubsuper_update_r subsubmodule &&
856 git commit -am "subsubmodule" &&
857 git push origin master
858 ) &&
859 git clone super_update_r super_update_r2 &&
860 (cd super_update_r2 &&
861 test_commit "update_super" file &&
862 git submodule add ../subsuper_update_r submodule &&
863 git commit -am "submodule" &&
864 git push origin master
865 ) &&
866 rm -rf super_update_r2 &&
867 git clone super_update_r super_update_r2 &&
868 (cd super_update_r2 &&
William Entriken75bf5e62013-03-02 14:44:59 -0500869 git submodule update --init --recursive >actual &&
Junio C Hamanod851ffb2014-04-02 14:15:36 -0700870 test_i18ngrep "Submodule path .submodule/subsubmodule.: checked out" actual &&
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200871 (cd submodule/subsubmodule &&
872 git log > ../../expected
873 ) &&
Eric Sunshinee974e062018-07-01 20:24:03 -0400874 (cd .git/modules/submodule/modules/subsubmodule &&
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200875 git log > ../../../../../actual
Eric Sunshinee974e062018-07-01 20:24:03 -0400876 ) &&
Matthew DeVoredcbaa0b2018-10-05 14:54:04 -0700877 test_cmp expected actual
Fredrik Gustafsson501770e2011-08-15 23:17:47 +0200878 )
879'
880
Jens Lehmann1017c1a2012-01-24 22:49:56 +0100881test_expect_success 'submodule add properly re-creates deeper level submodules' '
882 (cd super &&
883 git reset --hard master &&
884 rm -rf deeper/ &&
Jens Lehmann4b7c2862012-09-30 23:01:29 +0200885 git submodule add --force ../submodule deeper/submodule
Jens Lehmann1017c1a2012-01-24 22:49:56 +0100886 )
887'
888
Jens Lehmann69c30512012-03-04 22:15:36 +0100889test_expect_success 'submodule update properly revives a moved submodule' '
890 (cd super &&
Nguyễn Thái Ngọc Duyb397ea42013-03-13 18:42:52 +0700891 H=$(git rev-parse --short HEAD) &&
Jens Lehmann69c30512012-03-04 22:15:36 +0100892 git commit -am "pre move" &&
Nguyễn Thái Ngọc Duyb397ea42013-03-13 18:42:52 +0700893 H2=$(git rev-parse --short HEAD) &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700894 git status >out &&
895 sed "s/$H/XXX/" out >expect &&
Eric Sunshinee974e062018-07-01 20:24:03 -0400896 H=$(cd submodule2 && git rev-parse HEAD) &&
Jens Lehmann69c30512012-03-04 22:15:36 +0100897 git rm --cached submodule2 &&
898 rm -rf submodule2 &&
899 mkdir -p "moved/sub module" &&
900 git update-index --add --cacheinfo 160000 $H "moved/sub module" &&
SZEDER Gábor8de19d62018-06-16 22:33:19 +0200901 git config -f .gitmodules submodule.submodule2.path "moved/sub module" &&
Jens Lehmann69c30512012-03-04 22:15:36 +0100902 git commit -am "post move" &&
903 git submodule update &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700904 git status > out &&
905 sed "s/$H2/XXX/" out >actual &&
Jens Lehmann69c30512012-03-04 22:15:36 +0100906 test_cmp expect actual
907 )
908'
909
Jens Lehmann6eafa6d2012-07-12 19:45:32 +0200910test_expect_success SYMLINKS 'submodule update can handle symbolic links in pwd' '
911 mkdir -p linked/dir &&
912 ln -s linked/dir linkto &&
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200913 (cd linkto &&
914 git clone "$TRASH_DIRECTORY"/super_update_r2 super &&
915 (cd super &&
916 git submodule update --init --recursive
917 )
Jens Lehmann6eafa6d2012-07-12 19:45:32 +0200918 )
919'
920
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200921test_expect_success 'submodule update clone shallow submodule' '
Stefan Bellerd4470c52016-07-28 17:44:03 -0700922 test_when_finished "rm -rf super3" &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700923 first=$(git -C cloned rev-parse HEAD:submodule) &&
Stefan Bellerd4470c52016-07-28 17:44:03 -0700924 second=$(git -C submodule rev-parse HEAD) &&
Stefan Beller967d7f82016-08-10 10:56:07 -0700925 commit_count=$(git -C submodule rev-list --count $first^..$second) &&
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200926 git clone cloned super3 &&
Jeff King99094a72015-03-20 06:07:15 -0400927 pwd=$(pwd) &&
Stefan Bellerd4470c52016-07-28 17:44:03 -0700928 (
929 cd super3 &&
930 sed -e "s#url = ../#url = file://$pwd/#" <.gitmodules >.gitmodules.tmp &&
931 mv -f .gitmodules.tmp .gitmodules &&
932 git submodule update --init --depth=$commit_count &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700933 git -C submodule log --oneline >out &&
934 test_line_count = 1 out
Stefan Bellerd4470c52016-07-28 17:44:03 -0700935 )
Jens Lehmann36141282013-11-11 21:55:52 +0100936'
937
Stefan Beller6cbf4542016-07-28 17:44:04 -0700938test_expect_success 'submodule update clone shallow submodule outside of depth' '
939 test_when_finished "rm -rf super3" &&
940 git clone cloned super3 &&
941 pwd=$(pwd) &&
942 (
943 cd super3 &&
944 sed -e "s#url = ../#url = file://$pwd/#" <.gitmodules >.gitmodules.tmp &&
945 mv -f .gitmodules.tmp .gitmodules &&
Jonathan Tanab0c5f52019-02-25 13:54:08 -0800946 # Some protocol versions (e.g. 2) support fetching
947 # unadvertised objects, so restrict this test to v0.
948 test_must_fail env GIT_TEST_PROTOCOL_VERSION= \
949 git submodule update --init --depth=1 2>actual &&
Stefan Beller6cbf4542016-07-28 17:44:04 -0700950 test_i18ngrep "Direct fetching of that commit failed." actual &&
951 git -C ../submodule config uploadpack.allowReachableSHA1InWant true &&
952 git submodule update --init --depth=1 >actual &&
Elijah Newren65799fb2018-08-08 09:31:05 -0700953 git -C submodule log --oneline >out &&
954 test_line_count = 1 out
Stefan Beller6cbf4542016-07-28 17:44:04 -0700955 )
956'
957
Jens Lehmann36141282013-11-11 21:55:52 +0100958test_expect_success 'submodule update --recursive drops module name before recursing' '
959 (cd super2 &&
960 (cd deeper/submodule/subsubmodule &&
961 git checkout HEAD^
962 ) &&
963 git submodule update --recursive deeper/submodule >actual &&
964 test_i18ngrep "Submodule path .deeper/submodule/subsubmodule.: checked out" actual
Fredrik Gustafsson275cd182013-07-02 23:42:56 +0200965 )
966'
Stefan Beller2335b872016-02-29 18:07:19 -0800967
968test_expect_success 'submodule update can be run in parallel' '
969 (cd super2 &&
970 GIT_TRACE=$(pwd)/trace.out git submodule update --jobs 7 &&
971 grep "7 tasks" trace.out &&
972 git config submodule.fetchJobs 8 &&
973 GIT_TRACE=$(pwd)/trace.out git submodule update &&
974 grep "8 tasks" trace.out &&
975 GIT_TRACE=$(pwd)/trace.out git submodule update --jobs 9 &&
976 grep "9 tasks" trace.out
977 )
978'
Stefan Beller72290d62016-02-29 18:07:20 -0800979
980test_expect_success 'git clone passes the parallel jobs config on to submodules' '
981 test_when_finished "rm -rf super4" &&
982 GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules --jobs 7 . super4 &&
983 grep "7 tasks" trace.out &&
984 rm -rf super4 &&
985 git config --global submodule.fetchJobs 8 &&
986 GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules . super4 &&
987 grep "8 tasks" trace.out &&
988 rm -rf super4 &&
989 GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules --jobs 9 . super4 &&
990 grep "9 tasks" trace.out &&
991 rm -rf super4
992'
993
Peter Huttererca2cedb2009-04-24 09:06:38 +1000994test_done