]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5526-fetch-submodules.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t5526-fetch-submodules.sh
CommitLineData
7dce19d3
JL
1#!/bin/sh
2# Copyright (c) 2010, Jens Lehmann
3
4test_description='Recursive "git fetch" for submodules'
5
334afbc7
JS
6GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
7export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8
7dce19d3
JL
9. ./test-lib.sh
10
11pwd=$(pwd)
12
13add_upstream_commit() {
14 (
15 cd submodule &&
16 head1=$(git rev-parse --short HEAD) &&
17 echo new >> subfile &&
18 test_tick &&
19 git add subfile &&
20 git commit -m new subfile &&
21 head2=$(git rev-parse --short HEAD) &&
fbf71645
JN
22 echo "Fetching submodule submodule" > ../expect.err &&
23 echo "From $pwd/submodule" >> ../expect.err &&
b618a2d9 24 echo " $head1..$head2 sub -> origin/sub" >> ../expect.err
7dce19d3
JL
25 ) &&
26 (
27 cd deepsubmodule &&
28 head1=$(git rev-parse --short HEAD) &&
29 echo new >> deepsubfile &&
30 test_tick &&
31 git add deepsubfile &&
32 git commit -m new deepsubfile &&
33 head2=$(git rev-parse --short HEAD) &&
fbf71645 34 echo "Fetching submodule submodule/subdir/deepsubmodule" >> ../expect.err
7dce19d3 35 echo "From $pwd/deepsubmodule" >> ../expect.err &&
b618a2d9 36 echo " $head1..$head2 deep -> origin/deep" >> ../expect.err
7dce19d3
JL
37 )
38}
39
40test_expect_success setup '
41 mkdir deepsubmodule &&
42 (
43 cd deepsubmodule &&
44 git init &&
45 echo deepsubcontent > deepsubfile &&
46 git add deepsubfile &&
b618a2d9
JS
47 git commit -m new deepsubfile &&
48 git branch -M deep
7dce19d3
JL
49 ) &&
50 mkdir submodule &&
51 (
52 cd submodule &&
53 git init &&
54 echo subcontent > subfile &&
55 git add subfile &&
ea2d325b 56 git submodule add "$pwd/deepsubmodule" subdir/deepsubmodule &&
b618a2d9
JS
57 git commit -a -m new &&
58 git branch -M sub
7dce19d3
JL
59 ) &&
60 git submodule add "$pwd/submodule" submodule &&
61 git commit -am initial &&
b618a2d9 62 git branch -M super &&
7dce19d3
JL
63 git clone . downstream &&
64 (
65 cd downstream &&
66 git submodule update --init --recursive
fbf71645 67 )
7dce19d3
JL
68'
69
71f4a935 70test_expect_success "fetch --recurse-submodules recurses into submodules" '
7dce19d3
JL
71 add_upstream_commit &&
72 (
73 cd downstream &&
74 git fetch --recurse-submodules >../actual.out 2>../actual.err
cabdee2c 75 ) &&
fbf71645 76 test_must_be_empty actual.out &&
1108cea7 77 test_cmp expect.err actual.err
7dce19d3
JL
78'
79
71f4a935 80test_expect_success "submodule.recurse option triggers recursive fetch" '
58f4203e
SB
81 add_upstream_commit &&
82 (
83 cd downstream &&
84 git -c submodule.recurse fetch >../actual.out 2>../actual.err
85 ) &&
86 test_must_be_empty actual.out &&
1108cea7 87 test_cmp expect.err actual.err
58f4203e
SB
88'
89
71f4a935 90test_expect_success "fetch --recurse-submodules -j2 has the same output behaviour" '
62104ba1
SB
91 add_upstream_commit &&
92 (
93 cd downstream &&
9b2ac68f 94 GIT_TRACE="$TRASH_DIRECTORY/trace.out" git fetch --recurse-submodules -j2 2>../actual.err
62104ba1
SB
95 ) &&
96 test_must_be_empty actual.out &&
1108cea7 97 test_cmp expect.err actual.err &&
62104ba1
SB
98 grep "2 tasks" trace.out
99'
100
7dce19d3
JL
101test_expect_success "fetch alone only fetches superproject" '
102 add_upstream_commit &&
103 (
104 cd downstream &&
105 git fetch >../actual.out 2>../actual.err
106 ) &&
ec10b018
SG
107 test_must_be_empty actual.out &&
108 test_must_be_empty actual.err
7dce19d3
JL
109'
110
c1a3c364
JL
111test_expect_success "fetch --no-recurse-submodules only fetches superproject" '
112 (
113 cd downstream &&
114 git fetch --no-recurse-submodules >../actual.out 2>../actual.err
115 ) &&
ec10b018
SG
116 test_must_be_empty actual.out &&
117 test_must_be_empty actual.err
c1a3c364
JL
118'
119
71f4a935 120test_expect_success "using fetchRecurseSubmodules=true in .gitmodules recurses into submodules" '
c1a3c364
JL
121 (
122 cd downstream &&
123 git config -f .gitmodules submodule.submodule.fetchRecurseSubmodules true &&
124 git fetch >../actual.out 2>../actual.err
cabdee2c 125 ) &&
fbf71645 126 test_must_be_empty actual.out &&
1108cea7 127 test_cmp expect.err actual.err
c1a3c364
JL
128'
129
130test_expect_success "--no-recurse-submodules overrides .gitmodules config" '
131 add_upstream_commit &&
132 (
133 cd downstream &&
134 git fetch --no-recurse-submodules >../actual.out 2>../actual.err
135 ) &&
ec10b018
SG
136 test_must_be_empty actual.out &&
137 test_must_be_empty actual.err
c1a3c364
JL
138'
139
140test_expect_success "using fetchRecurseSubmodules=false in .git/config overrides setting in .gitmodules" '
141 (
142 cd downstream &&
143 git config submodule.submodule.fetchRecurseSubmodules false &&
144 git fetch >../actual.out 2>../actual.err
145 ) &&
ec10b018
SG
146 test_must_be_empty actual.out &&
147 test_must_be_empty actual.err
c1a3c364
JL
148'
149
71f4a935 150test_expect_success "--recurse-submodules overrides fetchRecurseSubmodules setting from .git/config" '
c1a3c364
JL
151 (
152 cd downstream &&
153 git fetch --recurse-submodules >../actual.out 2>../actual.err &&
a2a56468 154 git config --unset -f .gitmodules submodule.submodule.fetchRecurseSubmodules &&
c1a3c364 155 git config --unset submodule.submodule.fetchRecurseSubmodules
cabdee2c 156 ) &&
fbf71645 157 test_must_be_empty actual.out &&
1108cea7 158 test_cmp expect.err actual.err
c1a3c364
JL
159'
160
7dce19d3
JL
161test_expect_success "--quiet propagates to submodules" '
162 (
163 cd downstream &&
164 git fetch --recurse-submodules --quiet >../actual.out 2>../actual.err
165 ) &&
ec10b018
SG
166 test_must_be_empty actual.out &&
167 test_must_be_empty actual.err
7dce19d3
JL
168'
169
62104ba1
SB
170test_expect_success "--quiet propagates to parallel submodules" '
171 (
172 cd downstream &&
173 git fetch --recurse-submodules -j 2 --quiet >../actual.out 2>../actual.err
174 ) &&
ec10b018
SG
175 test_must_be_empty actual.out &&
176 test_must_be_empty actual.err
62104ba1
SB
177'
178
71f4a935 179test_expect_success "--dry-run propagates to submodules" '
7dce19d3
JL
180 add_upstream_commit &&
181 (
182 cd downstream &&
183 git fetch --recurse-submodules --dry-run >../actual.out 2>../actual.err
cabdee2c 184 ) &&
fbf71645 185 test_must_be_empty actual.out &&
1108cea7 186 test_cmp expect.err actual.err
502681cd
ÆAB
187'
188
71f4a935 189test_expect_success "Without --dry-run propagates to submodules" '
7dce19d3
JL
190 (
191 cd downstream &&
192 git fetch --recurse-submodules >../actual.out 2>../actual.err
cabdee2c 193 ) &&
fbf71645 194 test_must_be_empty actual.out &&
1108cea7 195 test_cmp expect.err actual.err
7dce19d3
JL
196'
197
71f4a935 198test_expect_success "recurseSubmodules=true propagates into submodules" '
be254a0e
JL
199 add_upstream_commit &&
200 (
201 cd downstream &&
2aac933c 202 git config fetch.recurseSubmodules true &&
be254a0e 203 git fetch >../actual.out 2>../actual.err
cabdee2c 204 ) &&
fbf71645 205 test_must_be_empty actual.out &&
1108cea7 206 test_cmp expect.err actual.err
be254a0e
JL
207'
208
71f4a935 209test_expect_success "--recurse-submodules overrides config in submodule" '
be254a0e
JL
210 add_upstream_commit &&
211 (
212 cd downstream &&
213 (
214 cd submodule &&
215 git config fetch.recurseSubmodules false
216 ) &&
217 git fetch --recurse-submodules >../actual.out 2>../actual.err
cabdee2c 218 ) &&
fbf71645 219 test_must_be_empty actual.out &&
1108cea7 220 test_cmp expect.err actual.err
be254a0e
JL
221'
222
223test_expect_success "--no-recurse-submodules overrides config setting" '
224 add_upstream_commit &&
225 (
226 cd downstream &&
2aac933c 227 git config fetch.recurseSubmodules true &&
be254a0e
JL
228 git fetch --no-recurse-submodules >../actual.out 2>../actual.err
229 ) &&
ec10b018
SG
230 test_must_be_empty actual.out &&
231 test_must_be_empty actual.err
be254a0e
JL
232'
233
71f4a935 234test_expect_success "Recursion doesn't happen when no new commits are fetched in the superproject" '
88a21979
JL
235 (
236 cd downstream &&
237 (
238 cd submodule &&
239 git config --unset fetch.recurseSubmodules
240 ) &&
2aac933c 241 git config --unset fetch.recurseSubmodules &&
88a21979
JL
242 git fetch >../actual.out 2>../actual.err
243 ) &&
ec10b018
SG
244 test_must_be_empty actual.out &&
245 test_must_be_empty actual.err
88a21979
JL
246'
247
71f4a935 248test_expect_success "Recursion stops when no new submodule commits are fetched" '
88a21979
JL
249 head1=$(git rev-parse --short HEAD) &&
250 git add submodule &&
251 git commit -m "new submodule" &&
252 head2=$(git rev-parse --short HEAD) &&
88a21979 253 echo "From $pwd/." > expect.err.sub &&
b618a2d9 254 echo " $head1..$head2 super -> origin/super" >>expect.err.sub &&
fbf71645 255 head -3 expect.err >> expect.err.sub &&
88a21979
JL
256 (
257 cd downstream &&
258 git fetch >../actual.out 2>../actual.err
259 ) &&
1108cea7 260 test_cmp expect.err.sub actual.err &&
fbf71645 261 test_must_be_empty actual.out
88a21979
JL
262'
263
71f4a935 264test_expect_success "Recursion doesn't happen when new superproject commits don't change any submodules" '
88a21979
JL
265 add_upstream_commit &&
266 head1=$(git rev-parse --short HEAD) &&
267 echo a > file &&
268 git add file &&
269 git commit -m "new file" &&
270 head2=$(git rev-parse --short HEAD) &&
271 echo "From $pwd/." > expect.err.file &&
b618a2d9 272 echo " $head1..$head2 super -> origin/super" >> expect.err.file &&
88a21979
JL
273 (
274 cd downstream &&
275 git fetch >../actual.out 2>../actual.err
276 ) &&
ec10b018 277 test_must_be_empty actual.out &&
1108cea7 278 test_cmp expect.err.file actual.err
88a21979
JL
279'
280
71f4a935 281test_expect_success "Recursion picks up config in submodule" '
88a21979
JL
282 (
283 cd downstream &&
284 git fetch --recurse-submodules &&
285 (
286 cd submodule &&
287 git config fetch.recurseSubmodules true
288 )
289 ) &&
290 add_upstream_commit &&
291 head1=$(git rev-parse --short HEAD) &&
292 git add submodule &&
293 git commit -m "new submodule" &&
294 head2=$(git rev-parse --short HEAD) &&
295 echo "From $pwd/." > expect.err.sub &&
b618a2d9 296 echo " $head1..$head2 super -> origin/super" >> expect.err.sub &&
88a21979
JL
297 cat expect.err >> expect.err.sub &&
298 (
299 cd downstream &&
300 git fetch >../actual.out 2>../actual.err &&
301 (
302 cd submodule &&
303 git config --unset fetch.recurseSubmodules
304 )
305 ) &&
1108cea7 306 test_cmp expect.err.sub actual.err &&
fbf71645 307 test_must_be_empty actual.out
88a21979
JL
308'
309
71f4a935 310test_expect_success "Recursion picks up all submodules when necessary" '
88a21979
JL
311 add_upstream_commit &&
312 (
313 cd submodule &&
314 (
ea2d325b 315 cd subdir/deepsubmodule &&
88a21979
JL
316 git fetch &&
317 git checkout -q FETCH_HEAD
318 ) &&
319 head1=$(git rev-parse --short HEAD^) &&
ea2d325b 320 git add subdir/deepsubmodule &&
2aac933c 321 git commit -m "new deepsubmodule" &&
88a21979 322 head2=$(git rev-parse --short HEAD) &&
fbf71645
JN
323 echo "Fetching submodule submodule" > ../expect.err.sub &&
324 echo "From $pwd/submodule" >> ../expect.err.sub &&
b618a2d9 325 echo " $head1..$head2 sub -> origin/sub" >> ../expect.err.sub
88a21979
JL
326 ) &&
327 head1=$(git rev-parse --short HEAD) &&
328 git add submodule &&
329 git commit -m "new submodule" &&
330 head2=$(git rev-parse --short HEAD) &&
331 echo "From $pwd/." > expect.err.2 &&
b618a2d9 332 echo " $head1..$head2 super -> origin/super" >> expect.err.2 &&
88a21979 333 cat expect.err.sub >> expect.err.2 &&
fbf71645 334 tail -3 expect.err >> expect.err.2 &&
88a21979
JL
335 (
336 cd downstream &&
337 git fetch >../actual.out 2>../actual.err
338 ) &&
1108cea7 339 test_cmp expect.err.2 actual.err &&
fbf71645 340 test_must_be_empty actual.out
88a21979
JL
341'
342
71f4a935 343test_expect_success "'--recurse-submodules=on-demand' doesn't recurse when no new commits are fetched in the superproject (and ignores config)" '
8f0700dd
JL
344 add_upstream_commit &&
345 (
346 cd submodule &&
347 (
ea2d325b 348 cd subdir/deepsubmodule &&
8f0700dd
JL
349 git fetch &&
350 git checkout -q FETCH_HEAD
351 ) &&
352 head1=$(git rev-parse --short HEAD^) &&
ea2d325b 353 git add subdir/deepsubmodule &&
99094a7a 354 git commit -m "new deepsubmodule" &&
8f0700dd 355 head2=$(git rev-parse --short HEAD) &&
fbf71645
JN
356 echo Fetching submodule submodule > ../expect.err.sub &&
357 echo "From $pwd/submodule" >> ../expect.err.sub &&
b618a2d9 358 echo " $head1..$head2 sub -> origin/sub" >> ../expect.err.sub
8f0700dd
JL
359 ) &&
360 (
361 cd downstream &&
362 git config fetch.recurseSubmodules true &&
363 git fetch --recurse-submodules=on-demand >../actual.out 2>../actual.err &&
364 git config --unset fetch.recurseSubmodules
365 ) &&
ec10b018
SG
366 test_must_be_empty actual.out &&
367 test_must_be_empty actual.err
8f0700dd
JL
368'
369
71f4a935 370test_expect_success "'--recurse-submodules=on-demand' recurses as deep as necessary (and ignores config)" '
8f0700dd
JL
371 head1=$(git rev-parse --short HEAD) &&
372 git add submodule &&
373 git commit -m "new submodule" &&
374 head2=$(git rev-parse --short HEAD) &&
fbf71645 375 tail -3 expect.err > expect.err.deepsub &&
8f0700dd 376 echo "From $pwd/." > expect.err &&
b618a2d9 377 echo " $head1..$head2 super -> origin/super" >>expect.err &&
8f0700dd
JL
378 cat expect.err.sub >> expect.err &&
379 cat expect.err.deepsub >> expect.err &&
380 (
381 cd downstream &&
382 git config fetch.recurseSubmodules false &&
383 (
384 cd submodule &&
ea2d325b 385 git config -f .gitmodules submodule.subdir/deepsubmodule.fetchRecursive false
8f0700dd
JL
386 ) &&
387 git fetch --recurse-submodules=on-demand >../actual.out 2>../actual.err &&
51b85471 388 git config --unset fetch.recurseSubmodules &&
8f0700dd
JL
389 (
390 cd submodule &&
ea2d325b 391 git config --unset -f .gitmodules submodule.subdir/deepsubmodule.fetchRecursive
8f0700dd
JL
392 )
393 ) &&
fbf71645 394 test_must_be_empty actual.out &&
1108cea7 395 test_cmp expect.err actual.err
8f0700dd
JL
396'
397
71f4a935 398test_expect_success "'--recurse-submodules=on-demand' stops when no new submodule commits are found in the superproject (and ignores config)" '
8f0700dd
JL
399 add_upstream_commit &&
400 head1=$(git rev-parse --short HEAD) &&
401 echo a >> file &&
402 git add file &&
403 git commit -m "new file" &&
404 head2=$(git rev-parse --short HEAD) &&
405 echo "From $pwd/." > expect.err.file &&
b618a2d9 406 echo " $head1..$head2 super -> origin/super" >> expect.err.file &&
8f0700dd
JL
407 (
408 cd downstream &&
409 git fetch --recurse-submodules=on-demand >../actual.out 2>../actual.err
410 ) &&
ec10b018 411 test_must_be_empty actual.out &&
1108cea7 412 test_cmp expect.err.file actual.err
8f0700dd
JL
413'
414
71f4a935 415test_expect_success "'fetch.recurseSubmodules=on-demand' overrides global config" '
1fb25502
JL
416 (
417 cd downstream &&
418 git fetch --recurse-submodules
419 ) &&
420 add_upstream_commit &&
421 git config --global fetch.recurseSubmodules false &&
422 head1=$(git rev-parse --short HEAD) &&
423 git add submodule &&
424 git commit -m "new submodule" &&
425 head2=$(git rev-parse --short HEAD) &&
426 echo "From $pwd/." > expect.err.2 &&
b618a2d9 427 echo " $head1..$head2 super -> origin/super" >>expect.err.2 &&
fbf71645 428 head -3 expect.err >> expect.err.2 &&
1fb25502
JL
429 (
430 cd downstream &&
431 git config fetch.recurseSubmodules on-demand &&
432 git fetch >../actual.out 2>../actual.err
433 ) &&
434 git config --global --unset fetch.recurseSubmodules &&
435 (
436 cd downstream &&
437 git config --unset fetch.recurseSubmodules
438 ) &&
fbf71645 439 test_must_be_empty actual.out &&
1108cea7 440 test_cmp expect.err.2 actual.err
1fb25502
JL
441'
442
71f4a935 443test_expect_success "'submodule.<sub>.fetchRecurseSubmodules=on-demand' overrides fetch.recurseSubmodules" '
bf42b384
JL
444 (
445 cd downstream &&
446 git fetch --recurse-submodules
447 ) &&
448 add_upstream_commit &&
449 git config fetch.recurseSubmodules false &&
450 head1=$(git rev-parse --short HEAD) &&
451 git add submodule &&
452 git commit -m "new submodule" &&
453 head2=$(git rev-parse --short HEAD) &&
454 echo "From $pwd/." > expect.err.2 &&
b618a2d9 455 echo " $head1..$head2 super -> origin/super" >>expect.err.2 &&
fbf71645 456 head -3 expect.err >> expect.err.2 &&
bf42b384
JL
457 (
458 cd downstream &&
459 git config submodule.submodule.fetchRecurseSubmodules on-demand &&
460 git fetch >../actual.out 2>../actual.err
461 ) &&
462 git config --unset fetch.recurseSubmodules &&
463 (
464 cd downstream &&
465 git config --unset submodule.submodule.fetchRecurseSubmodules
466 ) &&
fbf71645 467 test_must_be_empty actual.out &&
1108cea7 468 test_cmp expect.err.2 actual.err
bf42b384
JL
469'
470
71f4a935 471test_expect_success "don't fetch submodule when newly recorded commits are already present" '
c16c3e40
JL
472 (
473 cd submodule &&
474 git checkout -q HEAD^^
475 ) &&
476 head1=$(git rev-parse --short HEAD) &&
477 git add submodule &&
478 git commit -m "submodule rewound" &&
479 head2=$(git rev-parse --short HEAD) &&
480 echo "From $pwd/." > expect.err &&
b618a2d9 481 echo " $head1..$head2 super -> origin/super" >> expect.err &&
c16c3e40
JL
482 (
483 cd downstream &&
484 git fetch >../actual.out 2>../actual.err
485 ) &&
ec10b018 486 test_must_be_empty actual.out &&
1108cea7 487 test_cmp expect.err actual.err &&
01ce1225
HV
488 (
489 cd submodule &&
b618a2d9 490 git checkout -q sub
01ce1225
HV
491 )
492'
493
71f4a935 494test_expect_success "'fetch.recurseSubmodules=on-demand' works also without .gitmodules entry" '
01ce1225
HV
495 (
496 cd downstream &&
497 git fetch --recurse-submodules
498 ) &&
499 add_upstream_commit &&
500 head1=$(git rev-parse --short HEAD) &&
501 git add submodule &&
502 git rm .gitmodules &&
503 git commit -m "new submodule without .gitmodules" &&
01ce1225
HV
504 head2=$(git rev-parse --short HEAD) &&
505 echo "From $pwd/." >expect.err.2 &&
b618a2d9 506 echo " $head1..$head2 super -> origin/super" >>expect.err.2 &&
01ce1225
HV
507 head -3 expect.err >>expect.err.2 &&
508 (
509 cd downstream &&
510 rm .gitmodules &&
511 git config fetch.recurseSubmodules on-demand &&
512 # fake submodule configuration to avoid skipping submodule handling
513 git config -f .gitmodules submodule.fake.path fake &&
514 git config -f .gitmodules submodule.fake.url fakeurl &&
515 git add .gitmodules &&
516 git config --unset submodule.submodule.url &&
517 git fetch >../actual.out 2>../actual.err &&
518 # cleanup
519 git config --unset fetch.recurseSubmodules &&
520 git reset --hard
521 ) &&
1c5e94f4 522 test_must_be_empty actual.out &&
1108cea7 523 test_cmp expect.err.2 actual.err &&
01ce1225
HV
524 git checkout HEAD^ -- .gitmodules &&
525 git add .gitmodules &&
526 git commit -m "new submodule restored .gitmodules"
c16c3e40
JL
527'
528
a028a193
SB
529test_expect_success 'fetching submodules respects parallel settings' '
530 git config fetch.recurseSubmodules true &&
531 (
532 cd downstream &&
e3a9d1ac
JH
533 GIT_TRACE=$(pwd)/trace.out git fetch &&
534 grep "1 tasks" trace.out &&
a028a193
SB
535 GIT_TRACE=$(pwd)/trace.out git fetch --jobs 7 &&
536 grep "7 tasks" trace.out &&
537 git config submodule.fetchJobs 8 &&
538 GIT_TRACE=$(pwd)/trace.out git fetch &&
539 grep "8 tasks" trace.out &&
540 GIT_TRACE=$(pwd)/trace.out git fetch --jobs 9 &&
541 grep "9 tasks" trace.out
542 )
543'
544
10f5c526
JH
545test_expect_success 'fetching submodule into a broken repository' '
546 # Prepare src and src/sub nested in it
547 git init src &&
548 (
549 cd src &&
550 git init sub &&
551 git -C sub commit --allow-empty -m "initial in sub" &&
552 git submodule add -- ./sub sub &&
553 git commit -m "initial in top"
554 ) &&
555
556 # Clone the old-fashoned way
557 git clone src dst &&
558 git -C dst clone ../src/sub sub &&
559
560 # Make sure that old-fashoned layout is still supported
561 git -C dst status &&
562
563 # "diff" would find no change
564 git -C dst diff --exit-code &&
565
566 # Recursive-fetch works fine
567 git -C dst fetch --recurse-submodules &&
568
569 # Break the receiving submodule
570 rm -f dst/sub/.git/HEAD &&
571
572 # NOTE: without the fix the following tests will recurse forever!
573 # They should terminate with an error.
574
575 test_must_fail git -C dst status &&
576 test_must_fail git -C dst diff &&
577 test_must_fail git -C dst fetch --recurse-submodules
578'
579
c68f8375
HV
580test_expect_success "fetch new commits when submodule got renamed" '
581 git clone . downstream_rename &&
582 (
583 cd downstream_rename &&
c3749f6e 584 git submodule update --init --recursive &&
c68f8375
HV
585 git checkout -b rename &&
586 git mv submodule submodule_renamed &&
587 (
588 cd submodule_renamed &&
589 git checkout -b rename_sub &&
590 echo a >a &&
591 git add a &&
592 git commit -ma &&
593 git push origin rename_sub &&
594 git rev-parse HEAD >../../expect
595 ) &&
596 git add submodule_renamed &&
597 git commit -m "update renamed submodule" &&
598 git push origin rename
599 ) &&
600 (
601 cd downstream &&
602 git fetch --recurse-submodules=on-demand &&
603 (
604 cd submodule &&
605 git rev-parse origin/rename_sub >../../actual
606 )
607 ) &&
608 test_cmp expect actual
609'
610
be76c212
SB
611test_expect_success "fetch new submodule commits on-demand outside standard refspec" '
612 # add a second submodule and ensure it is around in downstream first
613 git clone submodule sub1 &&
614 git submodule add ./sub1 &&
615 git commit -m "adding a second submodule" &&
616 git -C downstream pull &&
617 git -C downstream submodule update --init --recursive &&
618
619 git checkout --detach &&
620
621 C=$(git -C submodule commit-tree -m "new change outside refs/heads" HEAD^{tree}) &&
622 git -C submodule update-ref refs/changes/1 $C &&
623 git update-index --cacheinfo 160000 $C submodule &&
624 test_tick &&
625
626 D=$(git -C sub1 commit-tree -m "new change outside refs/heads" HEAD^{tree}) &&
627 git -C sub1 update-ref refs/changes/2 $D &&
628 git update-index --cacheinfo 160000 $D sub1 &&
629
630 git commit -m "updated submodules outside of refs/heads" &&
631 E=$(git rev-parse HEAD) &&
632 git update-ref refs/changes/3 $E &&
633 (
634 cd downstream &&
635 git fetch --recurse-submodules origin refs/changes/3:refs/heads/my_branch &&
636 git -C submodule cat-file -t $C &&
637 git -C sub1 cat-file -t $D &&
638 git checkout --recurse-submodules FETCH_HEAD
639 )
640'
641
642test_expect_success 'fetch new submodule commit on-demand in FETCH_HEAD' '
643 # depends on the previous test for setup
644
645 C=$(git -C submodule commit-tree -m "another change outside refs/heads" HEAD^{tree}) &&
646 git -C submodule update-ref refs/changes/4 $C &&
647 git update-index --cacheinfo 160000 $C submodule &&
648 test_tick &&
649
650 D=$(git -C sub1 commit-tree -m "another change outside refs/heads" HEAD^{tree}) &&
651 git -C sub1 update-ref refs/changes/5 $D &&
652 git update-index --cacheinfo 160000 $D sub1 &&
653
654 git commit -m "updated submodules outside of refs/heads" &&
655 E=$(git rev-parse HEAD) &&
656 git update-ref refs/changes/6 $E &&
657 (
658 cd downstream &&
659 git fetch --recurse-submodules origin refs/changes/6 &&
660 git -C submodule cat-file -t $C &&
661 git -C sub1 cat-file -t $D &&
662 git checkout --recurse-submodules FETCH_HEAD
663 )
664'
665
666test_expect_success 'fetch new submodule commits on-demand without .gitmodules entry' '
667 # depends on the previous test for setup
668
669 git config -f .gitmodules --remove-section submodule.sub1 &&
670 git add .gitmodules &&
671 git commit -m "delete gitmodules file" &&
b618a2d9 672 git checkout -B super &&
be76c212 673 git -C downstream fetch &&
b618a2d9 674 git -C downstream checkout origin/super &&
be76c212
SB
675
676 C=$(git -C submodule commit-tree -m "yet another change outside refs/heads" HEAD^{tree}) &&
677 git -C submodule update-ref refs/changes/7 $C &&
678 git update-index --cacheinfo 160000 $C submodule &&
679 test_tick &&
680
681 D=$(git -C sub1 commit-tree -m "yet another change outside refs/heads" HEAD^{tree}) &&
682 git -C sub1 update-ref refs/changes/8 $D &&
683 git update-index --cacheinfo 160000 $D sub1 &&
684
685 git commit -m "updated submodules outside of refs/heads" &&
686 E=$(git rev-parse HEAD) &&
687 git update-ref refs/changes/9 $E &&
688 (
689 cd downstream &&
690 git fetch --recurse-submodules origin refs/changes/9 &&
691 git -C submodule cat-file -t $C &&
692 git -C sub1 cat-file -t $D &&
693 git checkout --recurse-submodules FETCH_HEAD
694 )
695'
696
697test_expect_success 'fetch new submodule commit intermittently referenced by superproject' '
698 # depends on the previous test for setup
699
700 D=$(git -C sub1 commit-tree -m "change 10 outside refs/heads" HEAD^{tree}) &&
701 E=$(git -C sub1 commit-tree -m "change 11 outside refs/heads" HEAD^{tree}) &&
702 F=$(git -C sub1 commit-tree -m "change 12 outside refs/heads" HEAD^{tree}) &&
703
704 git -C sub1 update-ref refs/changes/10 $D &&
705 git update-index --cacheinfo 160000 $D sub1 &&
706 git commit -m "updated submodules outside of refs/heads" &&
707
708 git -C sub1 update-ref refs/changes/11 $E &&
709 git update-index --cacheinfo 160000 $E sub1 &&
710 git commit -m "updated submodules outside of refs/heads" &&
711
712 git -C sub1 update-ref refs/changes/12 $F &&
713 git update-index --cacheinfo 160000 $F sub1 &&
714 git commit -m "updated submodules outside of refs/heads" &&
715
716 G=$(git rev-parse HEAD) &&
717 git update-ref refs/changes/13 $G &&
718 (
719 cd downstream &&
720 git fetch --recurse-submodules origin refs/changes/13 &&
721
722 git -C sub1 cat-file -t $D &&
723 git -C sub1 cat-file -t $E &&
724 git -C sub1 cat-file -t $F
725 )
726'
727
505a2765
PK
728add_commit_push () {
729 dir="$1" &&
730 msg="$2" &&
731 shift 2 &&
732 git -C "$dir" add "$@" &&
733 git -C "$dir" commit -a -m "$msg" &&
734 git -C "$dir" push
735}
736
737compare_refs_in_dir () {
738 fail= &&
739 if test "x$1" = 'x!'
740 then
741 fail='!' &&
742 shift
743 fi &&
744 git -C "$1" rev-parse --verify "$2" >expect &&
745 git -C "$3" rev-parse --verify "$4" >actual &&
746 eval $fail test_cmp expect actual
747}
748
749
750test_expect_success 'setup nested submodule fetch test' '
751 # does not depend on any previous test setups
752
753 for repo in outer middle inner
754 do
755 git init --bare $repo &&
756 git clone $repo ${repo}_content &&
757 echo "$repo" >"${repo}_content/file" &&
758 add_commit_push ${repo}_content "initial" file ||
759 return 1
760 done &&
761
762 git clone outer A &&
763 git -C A submodule add "$pwd/middle" &&
764 git -C A/middle/ submodule add "$pwd/inner" &&
765 add_commit_push A/middle/ "adding inner sub" .gitmodules inner &&
766 add_commit_push A/ "adding middle sub" .gitmodules middle &&
767
768 git clone outer B &&
769 git -C B/ submodule update --init middle &&
770
771 compare_refs_in_dir A HEAD B HEAD &&
772 compare_refs_in_dir A/middle HEAD B/middle HEAD &&
773 test_path_is_file B/file &&
774 test_path_is_file B/middle/file &&
775 test_path_is_missing B/middle/inner/file &&
776
777 echo "change on inner repo of A" >"A/middle/inner/file" &&
778 add_commit_push A/middle/inner "change on inner" file &&
779 add_commit_push A/middle "change on inner" inner &&
780 add_commit_push A "change on inner" middle
781'
782
783test_expect_success 'fetching a superproject containing an uninitialized sub/sub project' '
784 # depends on previous test for setup
785
786 git -C B/ fetch &&
787 compare_refs_in_dir A origin/HEAD B origin/HEAD
788'
789
790fetch_with_recursion_abort () {
791 # In a regression the following git call will run into infinite recursion.
792 # To handle that, we connect the sed command to the git call by a pipe
793 # so that sed can kill the infinite recursion when detected.
794 # The recursion creates git output like:
795 # Fetching submodule sub
796 # Fetching submodule sub/sub <-- [1]
797 # Fetching submodule sub/sub/sub
798 # ...
799 # [1] sed will stop reading and cause git to eventually stop and die
800
801 git -C "$1" fetch --recurse-submodules 2>&1 |
802 sed "/Fetching submodule $2[^$]/q" >out &&
803 ! grep "Fetching submodule $2[^$]" out
804}
805
806test_expect_success 'setup recursive fetch with uninit submodule' '
807 # does not depend on any previous test setups
808
809 test_create_repo super &&
810 test_commit -C super initial &&
811 test_create_repo sub &&
812 test_commit -C sub initial &&
813 git -C sub rev-parse HEAD >expect &&
814
815 git -C super submodule add ../sub &&
816 git -C super commit -m "add sub" &&
817
818 git clone super superclone &&
819 git -C superclone submodule status >out &&
820 sed -e "s/^-//" -e "s/ sub.*$//" out >actual &&
821 test_cmp expect actual
822'
823
824test_expect_success 'recursive fetch with uninit submodule' '
825 # depends on previous test for setup
826
827 fetch_with_recursion_abort superclone sub &&
828 git -C superclone submodule status >out &&
829 sed -e "s/^-//" -e "s/ sub$//" out >actual &&
830 test_cmp expect actual
831'
832
833test_expect_success 'recursive fetch after deinit a submodule' '
834 # depends on previous test for setup
835
836 git -C superclone submodule update --init sub &&
837 git -C superclone submodule deinit -f sub &&
838
839 fetch_with_recursion_abort superclone sub &&
840 git -C superclone submodule status >out &&
841 sed -e "s/^-//" -e "s/ sub$//" out >actual &&
842 test_cmp expect actual
843'
844
7dce19d3 845test_done