Git 2.18.3
[git] / t / t7406-submodule-update.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2009 Red Hat, Inc.
4 #
5
6 test_description='Test updating submodules
7
8 This test verifies that "git submodule update" detaches the HEAD of the
9 submodule and "git submodule update --rebase/--merge" does not detach the HEAD.
10 '
11
12 . ./test-lib.sh
13
14
15 compare_head()
16 {
17     sha_master=$(git rev-list --max-count=1 master)
18     sha_head=$(git rev-list --max-count=1 HEAD)
19
20     test "$sha_master" = "$sha_head"
21 }
22
23
24 test_expect_success 'setup a submodule tree' '
25         echo file > file &&
26         git add file &&
27         test_tick &&
28         git commit -m upstream &&
29         git clone . super &&
30         git clone super submodule &&
31         git clone super rebasing &&
32         git clone super merging &&
33         git clone super none &&
34         (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"
51         ) &&
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"
61         ) &&
62         (cd super &&
63          git submodule add ../none none &&
64          test_tick &&
65          git commit -m "none"
66         ) &&
67         git clone . recursivesuper &&
68         ( cd recursivesuper &&
69          git submodule add ../super super
70         )
71 '
72
73 test_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
87 test_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
102 supersha1=$(git -C super rev-parse HEAD)
103 mergingsha1=$(git -C super/merging rev-parse HEAD)
104 nonesha1=$(git -C super/none rev-parse HEAD)
105 rebasingsha1=$(git -C super/rebasing rev-parse HEAD)
106 submodulesha1=$(git -C super/submodule rev-parse HEAD)
107 pwd=$(pwd)
108
109 cat <<EOF >expect
110 Submodule path '../super': checked out '$supersha1'
111 Submodule path '../super/merging': checked out '$mergingsha1'
112 Submodule path '../super/none': checked out '$nonesha1'
113 Submodule path '../super/rebasing': checked out '$rebasingsha1'
114 Submodule path '../super/submodule': checked out '$submodulesha1'
115 EOF
116
117 cat <<EOF >expect2
118 Submodule 'merging' ($pwd/merging) registered for path '../super/merging'
119 Submodule 'none' ($pwd/none) registered for path '../super/none'
120 Submodule 'rebasing' ($pwd/rebasing) registered for path '../super/rebasing'
121 Submodule 'submodule' ($pwd/submodule) registered for path '../super/submodule'
122 Cloning into '$pwd/recursivesuper/super/merging'...
123 done.
124 Cloning into '$pwd/recursivesuper/super/none'...
125 done.
126 Cloning into '$pwd/recursivesuper/super/rebasing'...
127 done.
128 Cloning into '$pwd/recursivesuper/super/submodule'...
129 done.
130 EOF
131
132 test_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 &&
137          git submodule update --init --recursive ../super >../../actual 2>../../actual2
138         ) &&
139         test_i18ncmp expect actual &&
140         test_i18ncmp expect2 actual2
141 '
142
143 cat <<EOF >expect2
144 Submodule 'foo/sub' ($pwd/withsubs/../rebasing) registered for path 'sub'
145 EOF
146
147 test_expect_success 'submodule update --init from and of subdirectory' '
148         git init withsubs &&
149         (cd withsubs &&
150          mkdir foo &&
151          git submodule add "$(pwd)/../rebasing" foo/sub &&
152          (cd foo &&
153           git submodule deinit -f sub &&
154           git submodule update --init sub 2>../../actual2
155          )
156         ) &&
157         test_i18ncmp expect2 actual2
158 '
159
160 apos="'";
161 test_expect_success 'submodule update does not fetch already present commits' '
162         (cd submodule &&
163           echo line3 >> file &&
164           git add file &&
165           test_tick &&
166           git commit -m "upstream line3"
167         ) &&
168         (cd super/submodule &&
169           head=$(git rev-parse --verify HEAD) &&
170           echo "Submodule path ${apos}submodule$apos: checked out $apos$head$apos" > ../../expected &&
171           git reset --hard HEAD~1
172         ) &&
173         (cd super &&
174           git submodule update > ../actual 2> ../actual.err
175         ) &&
176         test_i18ncmp expected actual &&
177         ! test -s actual.err
178 '
179
180 test_expect_success 'submodule update should fail due to local changes' '
181         (cd super/submodule &&
182          git reset --hard HEAD~1 &&
183          echo "local change" > file
184         ) &&
185         (cd super &&
186          (cd submodule &&
187           compare_head
188          ) &&
189          test_must_fail git submodule update submodule
190         )
191 '
192 test_expect_success 'submodule update should throw away changes with --force ' '
193         (cd super &&
194          (cd submodule &&
195           compare_head
196          ) &&
197          git submodule update --force submodule &&
198          cd submodule &&
199          ! compare_head
200         )
201 '
202
203 test_expect_success 'submodule update --force forcibly checks out submodules' '
204         (cd super &&
205          (cd submodule &&
206           rm -f file
207          ) &&
208          git submodule update --force submodule &&
209          (cd submodule &&
210           test "$(git status -s file)" = ""
211          )
212         )
213 '
214
215 test_expect_success 'submodule update --remote should fetch upstream changes' '
216         (cd submodule &&
217          echo line4 >> file &&
218          git add file &&
219          test_tick &&
220          git commit -m "upstream line4"
221         ) &&
222         (cd super &&
223          git submodule update --remote --force submodule &&
224          cd submodule &&
225          test "$(git log -1 --oneline)" = "$(GIT_DIR=../../submodule/.git git log -1 --oneline)"
226         )
227 '
228
229 test_expect_success 'submodule update --remote should fetch upstream changes with .' '
230         (
231                 cd super &&
232                 git config -f .gitmodules submodule."submodule".branch "." &&
233                 git add .gitmodules &&
234                 git commit -m "submodules: update from the respective superproject branch"
235         ) &&
236         (
237                 cd submodule &&
238                 echo line4a >> file &&
239                 git add file &&
240                 test_tick &&
241                 git commit -m "upstream line4a" &&
242                 git checkout -b test-branch &&
243                 test_commit on-test-branch
244         ) &&
245         (
246                 cd super &&
247                 git submodule update --remote --force submodule &&
248                 git -C submodule log -1 --oneline >actual &&
249                 git -C ../submodule log -1 --oneline master >expect &&
250                 test_cmp expect actual &&
251                 git checkout -b test-branch &&
252                 git submodule update --remote --force submodule &&
253                 git -C submodule log -1 --oneline >actual &&
254                 git -C ../submodule log -1 --oneline test-branch >expect &&
255                 test_cmp expect actual &&
256                 git checkout master &&
257                 git branch -d test-branch &&
258                 git reset --hard HEAD^
259         )
260 '
261
262 test_expect_success 'local config should override .gitmodules branch' '
263         (cd submodule &&
264          git checkout test-branch &&
265          echo line5 >> file &&
266          git add file &&
267          test_tick &&
268          git commit -m "upstream line5" &&
269          git checkout master
270         ) &&
271         (cd super &&
272          git config submodule.submodule.branch test-branch &&
273          git submodule update --remote --force submodule &&
274          cd submodule &&
275          test "$(git log -1 --oneline)" = "$(GIT_DIR=../../submodule/.git git log -1 --oneline test-branch)"
276         )
277 '
278
279 test_expect_success 'submodule update --rebase staying on master' '
280         (cd super/submodule &&
281           git checkout master
282         ) &&
283         (cd super &&
284          (cd submodule &&
285           compare_head
286          ) &&
287          git submodule update --rebase submodule &&
288          cd submodule &&
289          compare_head
290         )
291 '
292
293 test_expect_success 'submodule update --merge staying on master' '
294         (cd super/submodule &&
295           git reset --hard HEAD~1
296         ) &&
297         (cd super &&
298          (cd submodule &&
299           compare_head
300          ) &&
301          git submodule update --merge submodule &&
302          cd submodule &&
303          compare_head
304         )
305 '
306
307 test_expect_success 'submodule update - rebase in .git/config' '
308         (cd super &&
309          git config submodule.submodule.update rebase
310         ) &&
311         (cd super/submodule &&
312           git reset --hard HEAD~1
313         ) &&
314         (cd super &&
315          (cd submodule &&
316           compare_head
317          ) &&
318          git submodule update submodule &&
319          cd submodule &&
320          compare_head
321         )
322 '
323
324 test_expect_success 'submodule update - checkout in .git/config but --rebase given' '
325         (cd super &&
326          git config submodule.submodule.update checkout
327         ) &&
328         (cd super/submodule &&
329           git reset --hard HEAD~1
330         ) &&
331         (cd super &&
332          (cd submodule &&
333           compare_head
334          ) &&
335          git submodule update --rebase submodule &&
336          cd submodule &&
337          compare_head
338         )
339 '
340
341 test_expect_success 'submodule update - merge in .git/config' '
342         (cd super &&
343          git config submodule.submodule.update merge
344         ) &&
345         (cd super/submodule &&
346           git reset --hard HEAD~1
347         ) &&
348         (cd super &&
349          (cd submodule &&
350           compare_head
351          ) &&
352          git submodule update submodule &&
353          cd submodule &&
354          compare_head
355         )
356 '
357
358 test_expect_success 'submodule update - checkout in .git/config but --merge given' '
359         (cd super &&
360          git config submodule.submodule.update checkout
361         ) &&
362         (cd super/submodule &&
363           git reset --hard HEAD~1
364         ) &&
365         (cd super &&
366          (cd submodule &&
367           compare_head
368          ) &&
369          git submodule update --merge submodule &&
370          cd submodule &&
371          compare_head
372         )
373 '
374
375 test_expect_success 'submodule update - checkout in .git/config' '
376         (cd super &&
377          git config submodule.submodule.update checkout
378         ) &&
379         (cd super/submodule &&
380           git reset --hard HEAD^
381         ) &&
382         (cd super &&
383          (cd submodule &&
384           compare_head
385          ) &&
386          git submodule update submodule &&
387          cd submodule &&
388          ! compare_head
389         )
390 '
391
392 test_expect_success 'submodule update - command in .git/config' '
393         (cd super &&
394          git config submodule.submodule.update "!git checkout"
395         ) &&
396         (cd super/submodule &&
397           git reset --hard HEAD^
398         ) &&
399         (cd super &&
400          (cd submodule &&
401           compare_head
402          ) &&
403          git submodule update submodule &&
404          cd submodule &&
405          ! compare_head
406         )
407 '
408
409 test_expect_success 'submodule update - command in .gitmodules is rejected' '
410         test_when_finished "git -C super reset --hard HEAD^" &&
411         git -C super config -f .gitmodules submodule.submodule.update "!false" &&
412         git -C super commit -a -m "add command to .gitmodules file" &&
413         git -C super/submodule reset --hard $submodulesha1^ &&
414         test_must_fail git -C super submodule update submodule
415 '
416
417 test_expect_success 'fsck detects command in .gitmodules' '
418         git init command-in-gitmodules &&
419         (
420                 cd command-in-gitmodules &&
421                 git submodule add ../submodule submodule &&
422                 test_commit adding-submodule &&
423
424                 git config -f .gitmodules submodule.submodule.update "!false" &&
425                 git add .gitmodules &&
426                 test_commit configuring-update &&
427                 test_must_fail git fsck
428         )
429 '
430
431 cat << EOF >expect
432 Execution of 'false $submodulesha1' failed in submodule path 'submodule'
433 EOF
434
435 test_expect_success 'submodule update - command in .git/config catches failure' '
436         (cd super &&
437          git config submodule.submodule.update "!false"
438         ) &&
439         (cd super/submodule &&
440           git reset --hard $submodulesha1^
441         ) &&
442         (cd super &&
443          test_must_fail git submodule update submodule 2>../actual
444         ) &&
445         test_i18ncmp actual expect
446 '
447
448 cat << EOF >expect
449 Execution of 'false $submodulesha1' failed in submodule path '../submodule'
450 EOF
451
452 test_expect_success 'submodule update - command in .git/config catches failure -- subdirectory' '
453         (cd super &&
454          git config submodule.submodule.update "!false"
455         ) &&
456         (cd super/submodule &&
457           git reset --hard $submodulesha1^
458         ) &&
459         (cd super &&
460          mkdir tmp && cd tmp &&
461          test_must_fail git submodule update ../submodule 2>../../actual
462         ) &&
463         test_i18ncmp actual expect
464 '
465
466 test_expect_success 'submodule update - command run for initial population of submodule' '
467         cat >expect <<-EOF &&
468         Execution of '\''false $submodulesha1'\'' failed in submodule path '\''submodule'\''
469         EOF
470         rm -rf super/submodule &&
471         test_must_fail git -C super submodule update 2>actual &&
472         test_i18ncmp expect actual &&
473         git -C super submodule update --checkout
474 '
475
476 cat << EOF >expect
477 Execution of 'false $submodulesha1' failed in submodule path '../super/submodule'
478 Failed to recurse into submodule path '../super'
479 EOF
480
481 test_expect_success 'recursive submodule update - command in .git/config catches failure -- subdirectory' '
482         (cd recursivesuper &&
483          git submodule update --remote super &&
484          git add super &&
485          git commit -m "update to latest to have more than one commit in submodules"
486         ) &&
487         git -C recursivesuper/super config submodule.submodule.update "!false" &&
488         git -C recursivesuper/super/submodule reset --hard $submodulesha1^ &&
489         (cd recursivesuper &&
490          mkdir -p tmp && cd tmp &&
491          test_must_fail git submodule update --recursive ../super 2>../../actual
492         ) &&
493         test_i18ncmp actual expect
494 '
495
496 test_expect_success 'submodule init does not copy command into .git/config' '
497         test_when_finished "git -C super update-index --force-remove submodule1" &&
498         test_when_finished git config -f super/.gitmodules \
499                 --remove-section submodule.submodule1 &&
500         (cd super &&
501          H=$(git ls-files -s submodule | cut -d" " -f2) &&
502          mkdir submodule1 &&
503          git update-index --add --cacheinfo 160000 $H submodule1 &&
504          git config -f .gitmodules submodule.submodule1.path submodule1 &&
505          git config -f .gitmodules submodule.submodule1.url ../submodule &&
506          git config -f .gitmodules submodule.submodule1.update !false &&
507          test_must_fail git submodule init submodule1 &&
508          test_expect_code 1 git config submodule.submodule1.update >actual &&
509          test_must_be_empty actual
510         )
511 '
512
513 test_expect_success 'submodule init picks up rebase' '
514         (cd super &&
515          git config -f .gitmodules submodule.rebasing.update rebase &&
516          git submodule init rebasing &&
517          test "rebase" = "$(git config submodule.rebasing.update)"
518         )
519 '
520
521 test_expect_success 'submodule init picks up merge' '
522         (cd super &&
523          git config -f .gitmodules submodule.merging.update merge &&
524          git submodule init merging &&
525          test "merge" = "$(git config submodule.merging.update)"
526         )
527 '
528
529 test_expect_success 'submodule update --merge  - ignores --merge  for new submodules' '
530         test_config -C super submodule.submodule.update checkout &&
531         (cd super &&
532          rm -rf submodule &&
533          git submodule update submodule &&
534          git status -s submodule >expect &&
535          rm -rf submodule &&
536          git submodule update --merge submodule &&
537          git status -s submodule >actual &&
538          test_cmp expect actual
539         )
540 '
541
542 test_expect_success 'submodule update --rebase - ignores --rebase for new submodules' '
543         test_config -C super submodule.submodule.update checkout &&
544         (cd super &&
545          rm -rf submodule &&
546          git submodule update submodule &&
547          git status -s submodule >expect &&
548          rm -rf submodule &&
549          git submodule update --rebase submodule &&
550          git status -s submodule >actual &&
551          test_cmp expect actual
552         )
553 '
554
555 test_expect_success 'submodule update ignores update=merge 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 merge &&
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
569 test_expect_success 'submodule update ignores update=rebase config for new submodules' '
570         (cd super &&
571          rm -rf submodule &&
572          git submodule update submodule &&
573          git status -s submodule >expect &&
574          rm -rf submodule &&
575          git config submodule.submodule.update rebase &&
576          git submodule update submodule &&
577          git status -s submodule >actual &&
578          git config --unset submodule.submodule.update &&
579          test_cmp expect actual
580         )
581 '
582
583 test_expect_success 'submodule init picks up update=none' '
584         (cd super &&
585          git config -f .gitmodules submodule.none.update none &&
586          git submodule init none &&
587          test "none" = "$(git config submodule.none.update)"
588         )
589 '
590
591 test_expect_success 'submodule update - update=none in .git/config' '
592         (cd super &&
593          git config submodule.submodule.update none &&
594          (cd submodule &&
595           git checkout master &&
596           compare_head
597          ) &&
598          git diff --raw | grep "        submodule" &&
599          git submodule update &&
600          git diff --raw | grep "        submodule" &&
601          (cd submodule &&
602           compare_head
603          ) &&
604          git config --unset submodule.submodule.update &&
605          git submodule update submodule
606         )
607 '
608
609 test_expect_success 'submodule update - update=none in .git/config but --checkout given' '
610         (cd super &&
611          git config submodule.submodule.update none &&
612          (cd submodule &&
613           git checkout master &&
614           compare_head
615          ) &&
616          git diff --raw | grep "        submodule" &&
617          git submodule update --checkout &&
618          test_must_fail git diff --raw \| grep "        submodule" &&
619          (cd submodule &&
620           test_must_fail compare_head
621          ) &&
622          git config --unset submodule.submodule.update
623         )
624 '
625
626 test_expect_success 'submodule update --init skips submodule with update=none' '
627         (cd super &&
628          git add .gitmodules &&
629          git commit -m ".gitmodules"
630         ) &&
631         git clone super cloned &&
632         (cd cloned &&
633          git submodule update --init &&
634          test -e submodule/.git &&
635          test_must_fail test -e none/.git
636         )
637 '
638
639 test_expect_success 'submodule update continues after checkout error' '
640         (cd super &&
641          git reset --hard HEAD &&
642          git submodule add ../submodule submodule2 &&
643          git submodule init &&
644          git commit -am "new_submodule" &&
645          (cd submodule2 &&
646           git rev-parse --verify HEAD >../expect
647          ) &&
648          (cd submodule &&
649           test_commit "update_submodule" file
650          ) &&
651          (cd submodule2 &&
652           test_commit "update_submodule2" file
653          ) &&
654          git add submodule &&
655          git add submodule2 &&
656          git commit -m "two_new_submodule_commits" &&
657          (cd submodule &&
658           echo "" > file
659          ) &&
660          git checkout HEAD^ &&
661          test_must_fail git submodule update &&
662          (cd submodule2 &&
663           git rev-parse --verify HEAD >../actual
664          ) &&
665          test_cmp expect actual
666         )
667 '
668 test_expect_success 'submodule update continues after recursive checkout error' '
669         (cd super &&
670          git reset --hard HEAD &&
671          git checkout master &&
672          git submodule update &&
673          (cd submodule &&
674           git submodule add ../submodule subsubmodule &&
675           git submodule init &&
676           git commit -m "new_subsubmodule"
677          ) &&
678          git add submodule &&
679          git commit -m "update_submodule" &&
680          (cd submodule &&
681           (cd subsubmodule &&
682            test_commit "update_subsubmodule" file
683           ) &&
684           git add subsubmodule &&
685           test_commit "update_submodule_again" file &&
686           (cd subsubmodule &&
687            test_commit "update_subsubmodule_again" file
688           ) &&
689           test_commit "update_submodule_again_again" file
690          ) &&
691          (cd submodule2 &&
692           git rev-parse --verify HEAD >../expect &&
693           test_commit "update_submodule2_again" file
694          ) &&
695          git add submodule &&
696          git add submodule2 &&
697          git commit -m "new_commits" &&
698          git checkout HEAD^ &&
699          (cd submodule &&
700           git checkout HEAD^ &&
701           (cd subsubmodule &&
702            echo "" > file
703           )
704          ) &&
705          test_must_fail git submodule update --recursive &&
706          (cd submodule2 &&
707           git rev-parse --verify HEAD >../actual
708          ) &&
709          test_cmp expect actual
710         )
711 '
712
713 test_expect_success 'submodule update exit immediately in case of merge conflict' '
714         (cd super &&
715          git checkout master &&
716          git reset --hard HEAD &&
717          (cd submodule &&
718           (cd subsubmodule &&
719            git reset --hard HEAD
720           )
721          ) &&
722          git submodule update --recursive &&
723          (cd submodule &&
724           test_commit "update_submodule_2" file
725          ) &&
726          (cd submodule2 &&
727           test_commit "update_submodule2_2" file
728          ) &&
729          git add submodule &&
730          git add submodule2 &&
731          git commit -m "two_new_submodule_commits" &&
732          (cd submodule &&
733           git checkout master &&
734           test_commit "conflict" file &&
735           echo "conflict" > file
736          ) &&
737          git checkout HEAD^ &&
738          (cd submodule2 &&
739           git rev-parse --verify HEAD >../expect
740          ) &&
741          git config submodule.submodule.update merge &&
742          test_must_fail git submodule update &&
743          (cd submodule2 &&
744           git rev-parse --verify HEAD >../actual
745          ) &&
746          test_cmp expect actual
747         )
748 '
749
750 test_expect_success 'submodule update exit immediately after recursive rebase error' '
751         (cd super &&
752          git checkout master &&
753          git reset --hard HEAD &&
754          (cd submodule &&
755           git reset --hard HEAD &&
756           git submodule update --recursive
757          ) &&
758          (cd submodule &&
759           test_commit "update_submodule_3" file
760          ) &&
761          (cd submodule2 &&
762           test_commit "update_submodule2_3" file
763          ) &&
764          git add submodule &&
765          git add submodule2 &&
766          git commit -m "two_new_submodule_commits" &&
767          (cd submodule &&
768           git checkout master &&
769           test_commit "conflict2" file &&
770           echo "conflict" > file
771          ) &&
772          git checkout HEAD^ &&
773          (cd submodule2 &&
774           git rev-parse --verify HEAD >../expect
775          ) &&
776          git config submodule.submodule.update rebase &&
777          test_must_fail git submodule update &&
778          (cd submodule2 &&
779           git rev-parse --verify HEAD >../actual
780          ) &&
781          test_cmp expect actual
782         )
783 '
784
785 test_expect_success 'add different submodules to the same path' '
786         (cd super &&
787          git submodule add ../submodule s1 &&
788          test_must_fail git submodule add ../merging s1
789         )
790 '
791
792 test_expect_success 'submodule add places git-dir in superprojects git-dir' '
793         (cd super &&
794          mkdir deeper &&
795          git submodule add ../submodule deeper/submodule &&
796          (cd deeper/submodule &&
797           git log > ../../expected
798          ) &&
799          (cd .git/modules/deeper/submodule &&
800           git log > ../../../../actual
801          ) &&
802          test_cmp actual expected
803         )
804 '
805
806 test_expect_success 'submodule update places git-dir in superprojects git-dir' '
807         (cd super &&
808          git commit -m "added submodule"
809         ) &&
810         git clone super super2 &&
811         (cd super2 &&
812          git submodule init deeper/submodule &&
813          git submodule update &&
814          (cd deeper/submodule &&
815           git log > ../../expected
816          ) &&
817          (cd .git/modules/deeper/submodule &&
818           git log > ../../../../actual
819          ) &&
820          test_cmp actual expected
821         )
822 '
823
824 test_expect_success 'submodule add places git-dir in superprojects git-dir recursive' '
825         (cd super2 &&
826          (cd deeper/submodule &&
827           git submodule add ../submodule subsubmodule &&
828           (cd subsubmodule &&
829            git log > ../../../expected
830           ) &&
831           git commit -m "added subsubmodule" &&
832           git push origin :
833          ) &&
834          (cd .git/modules/deeper/submodule/modules/subsubmodule &&
835           git log > ../../../../../actual
836          ) &&
837          git add deeper/submodule &&
838          git commit -m "update submodule" &&
839          git push origin : &&
840          test_cmp actual expected
841         )
842 '
843
844 test_expect_success 'submodule update places git-dir in superprojects git-dir recursive' '
845         mkdir super_update_r &&
846         (cd super_update_r &&
847          git init --bare
848         ) &&
849         mkdir subsuper_update_r &&
850         (cd subsuper_update_r &&
851          git init --bare
852         ) &&
853         mkdir subsubsuper_update_r &&
854         (cd subsubsuper_update_r &&
855          git init --bare
856         ) &&
857         git clone subsubsuper_update_r subsubsuper_update_r2 &&
858         (cd subsubsuper_update_r2 &&
859          test_commit "update_subsubsuper" file &&
860          git push origin master
861         ) &&
862         git clone subsuper_update_r subsuper_update_r2 &&
863         (cd subsuper_update_r2 &&
864          test_commit "update_subsuper" file &&
865          git submodule add ../subsubsuper_update_r subsubmodule &&
866          git commit -am "subsubmodule" &&
867          git push origin master
868         ) &&
869         git clone super_update_r super_update_r2 &&
870         (cd super_update_r2 &&
871          test_commit "update_super" file &&
872          git submodule add ../subsuper_update_r submodule &&
873          git commit -am "submodule" &&
874          git push origin master
875         ) &&
876         rm -rf super_update_r2 &&
877         git clone super_update_r super_update_r2 &&
878         (cd super_update_r2 &&
879          git submodule update --init --recursive >actual &&
880          test_i18ngrep "Submodule path .submodule/subsubmodule.: checked out" actual &&
881          (cd submodule/subsubmodule &&
882           git log > ../../expected
883          ) &&
884          (cd .git/modules/submodule/modules/subsubmodule
885           git log > ../../../../../actual
886          )
887          test_cmp actual expected
888         )
889 '
890
891 test_expect_success 'submodule add properly re-creates deeper level submodules' '
892         (cd super &&
893          git reset --hard master &&
894          rm -rf deeper/ &&
895          git submodule add --force ../submodule deeper/submodule
896         )
897 '
898
899 test_expect_success 'submodule update properly revives a moved submodule' '
900         (cd super &&
901          H=$(git rev-parse --short HEAD) &&
902          git commit -am "pre move" &&
903          H2=$(git rev-parse --short HEAD) &&
904          git status | sed "s/$H/XXX/" >expect &&
905          H=$(cd submodule2; git rev-parse HEAD) &&
906          git rm --cached submodule2 &&
907          rm -rf submodule2 &&
908          mkdir -p "moved/sub module" &&
909          git update-index --add --cacheinfo 160000 $H "moved/sub module" &&
910          git config -f .gitmodules submodule.submodule2.path "moved/sub module" &&
911          git commit -am "post move" &&
912          git submodule update &&
913          git status | sed "s/$H2/XXX/" >actual &&
914          test_cmp expect actual
915         )
916 '
917
918 test_expect_success SYMLINKS 'submodule update can handle symbolic links in pwd' '
919         mkdir -p linked/dir &&
920         ln -s linked/dir linkto &&
921         (cd linkto &&
922          git clone "$TRASH_DIRECTORY"/super_update_r2 super &&
923          (cd super &&
924           git submodule update --init --recursive
925          )
926         )
927 '
928
929 test_expect_success 'submodule update clone shallow submodule' '
930         test_when_finished "rm -rf super3" &&
931         first=$(git -C cloned submodule status submodule |cut -c2-41) &&
932         second=$(git -C submodule rev-parse HEAD) &&
933         commit_count=$(git -C submodule rev-list --count $first^..$second) &&
934         git clone cloned super3 &&
935         pwd=$(pwd) &&
936         (
937                 cd super3 &&
938                 sed -e "s#url = ../#url = file://$pwd/#" <.gitmodules >.gitmodules.tmp &&
939                 mv -f .gitmodules.tmp .gitmodules &&
940                 git submodule update --init --depth=$commit_count &&
941                 test 1 = $(git -C submodule log --oneline | wc -l)
942         )
943 '
944
945 test_expect_success 'submodule update clone shallow submodule outside of depth' '
946         test_when_finished "rm -rf super3" &&
947         git clone cloned super3 &&
948         pwd=$(pwd) &&
949         (
950                 cd super3 &&
951                 sed -e "s#url = ../#url = file://$pwd/#" <.gitmodules >.gitmodules.tmp &&
952                 mv -f .gitmodules.tmp .gitmodules &&
953                 test_must_fail git submodule update --init --depth=1 2>actual &&
954                 test_i18ngrep "Direct fetching of that commit failed." actual &&
955                 git -C ../submodule config uploadpack.allowReachableSHA1InWant true &&
956                 git submodule update --init --depth=1 >actual &&
957                 test 1 = $(git -C submodule log --oneline | wc -l)
958         )
959 '
960
961 test_expect_success 'submodule update --recursive drops module name before recursing' '
962         (cd super2 &&
963          (cd deeper/submodule/subsubmodule &&
964           git checkout HEAD^
965          ) &&
966          git submodule update --recursive deeper/submodule >actual &&
967          test_i18ngrep "Submodule path .deeper/submodule/subsubmodule.: checked out" actual
968         )
969 '
970
971 test_expect_success 'submodule update can be run in parallel' '
972         (cd super2 &&
973          GIT_TRACE=$(pwd)/trace.out git submodule update --jobs 7 &&
974          grep "7 tasks" trace.out &&
975          git config submodule.fetchJobs 8 &&
976          GIT_TRACE=$(pwd)/trace.out git submodule update &&
977          grep "8 tasks" trace.out &&
978          GIT_TRACE=$(pwd)/trace.out git submodule update --jobs 9 &&
979          grep "9 tasks" trace.out
980         )
981 '
982
983 test_expect_success 'git clone passes the parallel jobs config on to submodules' '
984         test_when_finished "rm -rf super4" &&
985         GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules --jobs 7 . super4 &&
986         grep "7 tasks" trace.out &&
987         rm -rf super4 &&
988         git config --global submodule.fetchJobs 8 &&
989         GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules . super4 &&
990         grep "8 tasks" trace.out &&
991         rm -rf super4 &&
992         GIT_TRACE=$(pwd)/trace.out git clone --recurse-submodules --jobs 9 . super4 &&
993         grep "9 tasks" trace.out &&
994         rm -rf super4
995 '
996
997 test_done