]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7400-submodule-basic.sh
submodule: port init from shell to C
[thirdparty/git.git] / t / t7400-submodule-basic.sh
CommitLineData
88961ef2
LH
1#!/bin/sh
2#
3# Copyright (c) 2007 Lars Hjemli
4#
5
6test_description='Basic porcelain support for submodules
7
8This test tries to verify basic sanity of the init, update and status
47a528ad 9subcommands of git submodule.
88961ef2
LH
10'
11
12. ./test-lib.sh
13
fe454b13
JN
14test_expect_success 'setup - initial commit' '
15 >t &&
47a528ad
NS
16 git add t &&
17 git commit -m "initial commit" &&
fe454b13
JN
18 git branch initial
19'
20
4b054402
JL
21test_expect_success 'configuration parsing' '
22 test_when_finished "rm -f .gitmodules" &&
23 cat >.gitmodules <<-\EOF &&
24 [submodule "s"]
25 path
26 ignore
27 EOF
28 test_must_fail git status
29'
30
fe454b13 31test_expect_success 'setup - repository in init subdirectory' '
a2d93aea 32 mkdir init &&
fe454b13
JN
33 (
34 cd init &&
35 git init &&
36 echo a >a &&
37 git add a &&
38 git commit -m "submodule commit 1" &&
39 git tag -a -m "rev-1" rev-1
40 )
fe454b13
JN
41'
42
43test_expect_success 'setup - commit with gitlink' '
88961ef2
LH
44 echo a >a &&
45 echo z >z &&
a2d93aea 46 git add a init z &&
fe454b13
JN
47 git commit -m "super commit 1"
48'
49
50test_expect_success 'setup - hide init subdirectory' '
51 mv init .subrepo
52'
53
a76c944b 54test_expect_success 'setup - repository to add submodules to' '
31991b02
ÆAB
55 git init addtest &&
56 git init addtest-ignore
a76c944b
JN
57'
58
59# The 'submodule add' tests need some repository to add as a submodule.
dd008b3b
JK
60# The trash directory is a good one as any. We need to canonicalize
61# the name, though, as some tests compare it to the absolute path git
62# generates, which will expand symbolic links.
63submodurl=$(pwd -P)
a76c944b
JN
64
65listbranches() {
66 git for-each-ref --format='%(refname)' 'refs/heads/*'
67}
68
69inspect() {
70 dir=$1 &&
71 dotdot="${2:-..}" &&
72
ac8463d2 73 (
a76c944b
JN
74 cd "$dir" &&
75 listbranches >"$dotdot/heads" &&
76 { git symbolic-ref HEAD || :; } >"$dotdot/head" &&
ce8b54d6 77 git rev-parse HEAD >"$dotdot/head-sha1" &&
a76c944b
JN
78 git update-index --refresh &&
79 git diff-files --exit-code &&
80 git clean -n -d -x >"$dotdot/untracked"
ac8463d2 81 )
a76c944b 82}
ac8463d2
MG
83
84test_expect_success 'submodule add' '
a76c944b
JN
85 echo "refs/heads/master" >expect &&
86 >empty &&
87
ac8463d2
MG
88 (
89 cd addtest &&
7e60407f 90 git submodule add -q "$submodurl" submod >actual &&
ca8d148d 91 test_must_be_empty actual &&
ea115a0d
JL
92 echo "gitdir: ../.git/modules/submod" >expect &&
93 test_cmp expect submod/.git &&
d75219b4
JL
94 (
95 cd submod &&
96 git config core.worktree >actual &&
97 echo "../../../submod" >expect &&
98 test_cmp expect actual &&
99 rm -f actual expect
100 ) &&
ac8463d2 101 git submodule init
a76c944b
JN
102 ) &&
103
104 rm -f heads head untracked &&
105 inspect addtest/submod ../.. &&
106 test_cmp expect heads &&
107 test_cmp expect head &&
108 test_cmp empty untracked
ac8463d2
MG
109'
110
d27b876b 111test_expect_success 'submodule add to .gitignored path fails' '
31991b02
ÆAB
112 (
113 cd addtest-ignore &&
d27b876b
JL
114 cat <<-\EOF >expect &&
115 The following path is ignored by one of your .gitignore files:
116 submod
117 Use -f if you really want to add it.
118 EOF
31991b02
ÆAB
119 # Does not use test_commit due to the ignore
120 echo "*" > .gitignore &&
121 git add --force .gitignore &&
122 git commit -m"Ignore everything" &&
d27b876b 123 ! git submodule add "$submodurl" submod >actual 2>&1 &&
3a4c3ed7 124 test_i18ncmp expect actual
d27b876b
JL
125 )
126'
31991b02 127
d27b876b
JL
128test_expect_success 'submodule add to .gitignored path with --force' '
129 (
130 cd addtest-ignore &&
131 git submodule add --force "$submodurl" submod
132 )
31991b02
ÆAB
133'
134
ea10b60c 135test_expect_success 'submodule add --branch' '
a76c944b
JN
136 echo "refs/heads/initial" >expect-head &&
137 cat <<-\EOF >expect-heads &&
138 refs/heads/initial
139 refs/heads/master
140 EOF
141 >empty &&
142
ea10b60c
BJ
143 (
144 cd addtest &&
145 git submodule add -b initial "$submodurl" submod-branch &&
b9289227 146 test "initial" = "$(git config -f .gitmodules submodule.submod-branch.branch)" &&
a76c944b
JN
147 git submodule init
148 ) &&
149
150 rm -f heads head untracked &&
151 inspect addtest/submod-branch ../.. &&
152 test_cmp expect-heads heads &&
153 test_cmp expect-head head &&
154 test_cmp empty untracked
ea10b60c
BJ
155'
156
db75ada5 157test_expect_success 'submodule add with ./ in path' '
a76c944b
JN
158 echo "refs/heads/master" >expect &&
159 >empty &&
160
ac8463d2
MG
161 (
162 cd addtest &&
163 git submodule add "$submodurl" ././dotsubmod/./frotz/./ &&
164 git submodule init
a76c944b
JN
165 ) &&
166
167 rm -f heads head untracked &&
168 inspect addtest/dotsubmod/frotz ../../.. &&
169 test_cmp expect heads &&
170 test_cmp expect head &&
171 test_cmp empty untracked
ac8463d2
MG
172'
173
8196e728
PS
174test_expect_success 'submodule add with /././ in path' '
175 echo "refs/heads/master" >expect &&
176 >empty &&
177
178 (
179 cd addtest &&
180 git submodule add "$submodurl" dotslashdotsubmod/././frotz/./ &&
181 git submodule init
182 ) &&
183
184 rm -f heads head untracked &&
185 inspect addtest/dotslashdotsubmod/frotz ../../.. &&
186 test_cmp expect heads &&
187 test_cmp expect head &&
188 test_cmp empty untracked
189'
ac8463d2 190
db75ada5 191test_expect_success 'submodule add with // in path' '
a76c944b
JN
192 echo "refs/heads/master" >expect &&
193 >empty &&
194
ac8463d2
MG
195 (
196 cd addtest &&
197 git submodule add "$submodurl" slashslashsubmod///frotz// &&
198 git submodule init
a76c944b
JN
199 ) &&
200
201 rm -f heads head untracked &&
202 inspect addtest/slashslashsubmod/frotz ../../.. &&
203 test_cmp expect heads &&
204 test_cmp expect head &&
205 test_cmp empty untracked
ac8463d2
MG
206'
207
db75ada5 208test_expect_success 'submodule add with /.. in path' '
a76c944b
JN
209 echo "refs/heads/master" >expect &&
210 >empty &&
211
ac8463d2
MG
212 (
213 cd addtest &&
214 git submodule add "$submodurl" dotdotsubmod/../realsubmod/frotz/.. &&
215 git submodule init
a76c944b
JN
216 ) &&
217
218 rm -f heads head untracked &&
219 inspect addtest/realsubmod ../.. &&
220 test_cmp expect heads &&
221 test_cmp expect head &&
222 test_cmp empty untracked
ac8463d2
MG
223'
224
db75ada5 225test_expect_success 'submodule add with ./, /.. and // in path' '
a76c944b
JN
226 echo "refs/heads/master" >expect &&
227 >empty &&
228
ac8463d2
MG
229 (
230 cd addtest &&
231 git submodule add "$submodurl" dot/dotslashsubmod/./../..////realsubmod2/a/b/c/d/../../../../frotz//.. &&
232 git submodule init
a76c944b
JN
233 ) &&
234
235 rm -f heads head untracked &&
236 inspect addtest/realsubmod2 ../.. &&
237 test_cmp expect heads &&
238 test_cmp expect head &&
239 test_cmp empty untracked
ac8463d2
MG
240'
241
091a6eb0
JK
242test_expect_success 'submodule add in subdirectory' '
243 echo "refs/heads/master" >expect &&
244 >empty &&
245
246 mkdir addtest/sub &&
247 (
248 cd addtest/sub &&
249 git submodule add "$submodurl" ../realsubmod3 &&
250 git submodule init
251 ) &&
252
253 rm -f heads head untracked &&
254 inspect addtest/realsubmod3 ../.. &&
255 test_cmp expect heads &&
256 test_cmp expect head &&
257 test_cmp empty untracked
258'
259
260test_expect_success 'submodule add in subdirectory with relative path should fail' '
261 (
262 cd addtest/sub &&
263 test_must_fail git submodule add ../../ submod3 2>../../output.err
264 ) &&
265 test_i18ngrep toplevel output.err
266'
267
ce8b54d6 268test_expect_success 'setup - add an example entry to .gitmodules' '
f7e87141 269 git config --file=.gitmodules submodule.example.url git://example.com/init.git
ce8b54d6
JN
270'
271
941987a5 272test_expect_success 'status should fail for unmapped paths' '
ce8b54d6
JN
273 test_must_fail git submodule status
274'
275
276test_expect_success 'setup - map path in .gitmodules' '
277 cat <<\EOF >expect &&
278[submodule "example"]
279 url = git://example.com/init.git
280 path = init
281EOF
282
f7e87141 283 git config --file=.gitmodules submodule.example.path init &&
ce8b54d6
JN
284
285 test_cmp expect .gitmodules
88961ef2
LH
286'
287
288test_expect_success 'status should only print one line' '
ce8b54d6 289 git submodule status >lines &&
3fb0459b 290 test_line_count = 1 lines
ce8b54d6
JN
291'
292
293test_expect_success 'setup - fetch commit name from submodule' '
294 rev1=$(cd .subrepo && git rev-parse HEAD) &&
295 printf "rev1: %s\n" "$rev1" &&
296 test -n "$rev1"
88961ef2
LH
297'
298
299test_expect_success 'status should initially be "missing"' '
ce8b54d6
JN
300 git submodule status >lines &&
301 grep "^-$rev1" lines
88961ef2
LH
302'
303
211b7f19 304test_expect_success 'init should register submodule url in .git/config' '
ce8b54d6
JN
305 echo git://example.com/init.git >expect &&
306
47a528ad 307 git submodule init &&
ce8b54d6
JN
308 git config submodule.example.url >url &&
309 git config submodule.example.url ./.subrepo &&
310
311 test_cmp expect url
211b7f19
LH
312'
313
be9d0a3a
HV
314test_failure_with_unknown_submodule () {
315 test_must_fail git submodule $1 no-such-submodule 2>output.err &&
316 grep "^error: .*no-such-submodule" output.err
317}
318
319test_expect_success 'init should fail with unknown submodule' '
320 test_failure_with_unknown_submodule init
321'
322
323test_expect_success 'update should fail with unknown submodule' '
324 test_failure_with_unknown_submodule update
325'
326
327test_expect_success 'status should fail with unknown submodule' '
328 test_failure_with_unknown_submodule status
329'
330
331test_expect_success 'sync should fail with unknown submodule' '
332 test_failure_with_unknown_submodule sync
333'
334
211b7f19 335test_expect_success 'update should fail when path is used by a file' '
ce8b54d6
JN
336 echo hello >expect &&
337
a2d93aea 338 echo "hello" >init &&
ce8b54d6
JN
339 test_must_fail git submodule update &&
340
341 test_cmp expect init
88961ef2
LH
342'
343
211b7f19 344test_expect_success 'update should fail when path is used by a nonempty directory' '
ce8b54d6
JN
345 echo hello >expect &&
346
347 rm -fr init &&
a2d93aea
JH
348 mkdir init &&
349 echo "hello" >init/a &&
ce8b54d6
JN
350
351 test_must_fail git submodule update &&
352
353 test_cmp expect init/a
88961ef2
LH
354'
355
211b7f19 356test_expect_success 'update should work when path is an empty dir' '
ce8b54d6
JN
357 rm -fr init &&
358 rm -f head-sha1 &&
359 echo "$rev1" >expect &&
360
a2d93aea 361 mkdir init &&
7e60407f 362 git submodule update -q >update.out &&
ca8d148d 363 test_must_be_empty update.out &&
ce8b54d6
JN
364
365 inspect init &&
366 test_cmp expect head-sha1
88961ef2
LH
367'
368
211b7f19 369test_expect_success 'status should be "up-to-date" after update' '
ce8b54d6
JN
370 git submodule status >list &&
371 grep "^ $rev1" list
88961ef2
LH
372'
373
091a6eb0
JK
374test_expect_success 'status "up-to-date" from subdirectory' '
375 mkdir -p sub &&
376 (
377 cd sub &&
378 git submodule status >../list
379 ) &&
380 grep "^ $rev1" list &&
381 grep "\\.\\./init" list
382'
383
384test_expect_success 'status "up-to-date" from subdirectory with path' '
385 mkdir -p sub &&
386 (
387 cd sub &&
388 git submodule status ../init >../list
389 ) &&
390 grep "^ $rev1" list &&
391 grep "\\.\\./init" list
392'
393
88961ef2 394test_expect_success 'status should be "modified" after submodule commit' '
ce8b54d6
JN
395 (
396 cd init &&
397 echo b >b &&
398 git add b &&
399 git commit -m "submodule commit 2"
400 ) &&
401
402 rev2=$(cd init && git rev-parse HEAD) &&
403 test -n "$rev2" &&
404 git submodule status >list &&
405
406 grep "^+$rev2" list
88961ef2
LH
407'
408
409test_expect_success 'the --cached sha1 should be rev1' '
ce8b54d6
JN
410 git submodule --cached status >list &&
411 grep "^+$rev1" list
88961ef2
LH
412'
413
5701115a 414test_expect_success 'git diff should report the SHA1 of the new submodule commit' '
ce8b54d6
JN
415 git diff >diff &&
416 grep "^+Subproject commit $rev2" diff
5701115a
SV
417'
418
88961ef2 419test_expect_success 'update should checkout rev1' '
ce8b54d6
JN
420 rm -f head-sha1 &&
421 echo "$rev1" >expect &&
422
47a528ad 423 git submodule update init &&
ce8b54d6
JN
424 inspect init &&
425
426 test_cmp expect head-sha1
88961ef2
LH
427'
428
429test_expect_success 'status should be "up-to-date" after update' '
ce8b54d6
JN
430 git submodule status >list &&
431 grep "^ $rev1" list
88961ef2
LH
432'
433
0cf73755 434test_expect_success 'checkout superproject with subproject already present' '
47a528ad
NS
435 git checkout initial &&
436 git checkout master
0cf73755
SV
437'
438
e06c5a6c 439test_expect_success 'apply submodule diff' '
ce8b54d6
JN
440 >empty &&
441
e06c5a6c
SV
442 git branch second &&
443 (
a2d93aea 444 cd init &&
e06c5a6c
SV
445 echo s >s &&
446 git add s &&
447 git commit -m "change subproject"
448 ) &&
a2d93aea 449 git update-index --add init &&
47a528ad
NS
450 git commit -m "change init" &&
451 git format-patch -1 --stdout >P.diff &&
e06c5a6c
SV
452 git checkout second &&
453 git apply --index P.diff &&
ce8b54d6
JN
454
455 git diff --cached master >staged &&
456 test_cmp empty staged
e06c5a6c
SV
457'
458
be4d2c83 459test_expect_success 'update --init' '
be4d2c83
JS
460 mv init init2 &&
461 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
ce8b54d6
JN
462 git config --remove-section submodule.example &&
463 test_must_fail git config submodule.example.url &&
464
8c6b5491 465 git submodule update init 2> update.out &&
ce8b54d6 466 cat update.out &&
1c2ef66f 467 test_i18ngrep "not initialized" update.out &&
abc06822 468 test_must_fail git rev-parse --resolve-git-dir init/.git &&
ce8b54d6 469
be4d2c83 470 git submodule update --init init &&
abc06822 471 git rev-parse --resolve-git-dir init/.git
be4d2c83
JS
472'
473
091a6eb0
JK
474test_expect_success 'update --init from subdirectory' '
475 mv init init2 &&
476 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
477 git config --remove-section submodule.example &&
478 test_must_fail git config submodule.example.url &&
479
480 mkdir -p sub &&
481 (
482 cd sub &&
8c6b5491 483 git submodule update ../init 2>update.out &&
091a6eb0
JK
484 cat update.out &&
485 test_i18ngrep "not initialized" update.out &&
486 test_must_fail git rev-parse --resolve-git-dir ../init/.git &&
487
488 git submodule update --init ../init
489 ) &&
490 git rev-parse --resolve-git-dir init/.git
491'
492
2ce53f9b
JS
493test_expect_success 'do not add files from a submodule' '
494
495 git reset --hard &&
496 test_must_fail git add init/a
497
498'
499
2c63d6eb 500test_expect_success 'gracefully add/reset submodule with a trailing slash' '
2ce53f9b
JS
501
502 git reset --hard &&
503 git commit -m "commit subproject" init &&
504 (cd init &&
505 echo b > a) &&
506 git add init/ &&
507 git diff --exit-code --cached init &&
508 commit=$(cd init &&
509 git commit -m update a >/dev/null &&
510 git rev-parse HEAD) &&
511 git add init/ &&
512 test_must_fail git diff --exit-code --cached init &&
513 test $commit = $(git ls-files --stage |
2c63d6eb
JK
514 sed -n "s/^160000 \([^ ]*\).*/\1/p") &&
515 git reset init/ &&
516 git diff --exit-code --cached init
2ce53f9b
JS
517
518'
519
f3670a57
JS
520test_expect_success 'ls-files gracefully handles trailing slash' '
521
522 test "init" = "$(git ls-files init/)"
523
524'
525
c5e558a8
PC
526test_expect_success 'moving to a commit without submodule does not leave empty dir' '
527 rm -rf init &&
528 mkdir init &&
529 git reset --hard &&
530 git checkout initial &&
531 test ! -d init &&
532 git checkout second
533'
534
af9c9f97
RR
535test_expect_success 'submodule <invalid-subcommand> fails' '
536 test_must_fail git submodule no-such-subcommand
496917b7
JS
537'
538
1414e578
JL
539test_expect_success 'add submodules without specifying an explicit path' '
540 mkdir repo &&
18a82692
JN
541 (
542 cd repo &&
543 git init &&
544 echo r >r &&
545 git add r &&
546 git commit -m "repo commit 1"
fd4ec4f2 547 ) &&
1414e578 548 git clone --bare repo/ bare.git &&
69e7236c
JL
549 (
550 cd addtest &&
551 git submodule add "$submodurl/repo" &&
552 git config -f .gitmodules submodule.repo.path repo &&
553 git submodule add "$submodurl/bare.git" &&
554 git config -f .gitmodules submodule.bare.path bare
555 )
556'
557
558test_expect_success 'add should fail when path is used by a file' '
559 (
560 cd addtest &&
561 touch file &&
562 test_must_fail git submodule add "$submodurl/repo" file
563 )
564'
565
566test_expect_success 'add should fail when path is used by an existing directory' '
567 (
568 cd addtest &&
569 mkdir empty-dir &&
570 test_must_fail git submodule add "$submodurl/repo" empty-dir
571 )
1414e578
JL
572'
573
4d689320 574test_expect_success 'use superproject as upstream when path is relative and no url is set there' '
8537f0ef
JL
575 (
576 cd addtest &&
4d689320
JL
577 git submodule add ../repo relative &&
578 test "$(git config -f .gitmodules submodule.relative.url)" = ../repo &&
579 git submodule sync relative &&
580 test "$(git config submodule.relative.url)" = "$submodurl/repo"
8537f0ef
JL
581 )
582'
583
ea640cc6
TR
584test_expect_success 'set up for relative path tests' '
585 mkdir reltest &&
586 (
587 cd reltest &&
588 git init &&
589 mkdir sub &&
590 (
591 cd sub &&
592 git init &&
593 test_commit foo
594 ) &&
595 git add sub &&
596 git config -f .gitmodules submodule.sub.path sub &&
597 git config -f .gitmodules submodule.sub.url ../subrepo &&
712693e8
JS
598 cp .git/config pristine-.git-config &&
599 cp .gitmodules pristine-.gitmodules
ea640cc6
TR
600 )
601'
602
712693e8 603test_expect_success '../subrepo works with URL - ssh://hostname/repo' '
ea640cc6
TR
604 (
605 cd reltest &&
606 cp pristine-.git-config .git/config &&
712693e8 607 cp pristine-.gitmodules .gitmodules &&
ea640cc6
TR
608 git config remote.origin.url ssh://hostname/repo &&
609 git submodule init &&
610 test "$(git config submodule.sub.url)" = ssh://hostname/subrepo
611 )
612'
613
712693e8
JS
614test_expect_success '../subrepo works with port-qualified URL - ssh://hostname:22/repo' '
615 (
616 cd reltest &&
617 cp pristine-.git-config .git/config &&
618 cp pristine-.gitmodules .gitmodules &&
619 git config remote.origin.url ssh://hostname:22/repo &&
620 git submodule init &&
621 test "$(git config submodule.sub.url)" = ssh://hostname:22/subrepo
622 )
623'
624
c517e73d
JS
625# About the choice of the path in the next test:
626# - double-slash side-steps path mangling issues on Windows
627# - it is still an absolute local path
628# - there cannot be a server with a blank in its name just in case the
629# path is used erroneously to access a //server/share style path
630test_expect_success '../subrepo path works with local path - //somewhere else/repo' '
712693e8
JS
631 (
632 cd reltest &&
633 cp pristine-.git-config .git/config &&
634 cp pristine-.gitmodules .gitmodules &&
c517e73d 635 git config remote.origin.url "//somewhere else/repo" &&
712693e8 636 git submodule init &&
c517e73d 637 test "$(git config submodule.sub.url)" = "//somewhere else/subrepo"
712693e8
JS
638 )
639'
640
641test_expect_success '../subrepo works with file URL - file:///tmp/repo' '
642 (
643 cd reltest &&
644 cp pristine-.git-config .git/config &&
645 cp pristine-.gitmodules .gitmodules &&
646 git config remote.origin.url file:///tmp/repo &&
647 git submodule init &&
648 test "$(git config submodule.sub.url)" = file:///tmp/subrepo
649 )
650'
651
652test_expect_success '../subrepo works with helper URL- helper:://hostname/repo' '
653 (
654 cd reltest &&
655 cp pristine-.git-config .git/config &&
656 cp pristine-.gitmodules .gitmodules &&
657 git config remote.origin.url helper:://hostname/repo &&
658 git submodule init &&
659 test "$(git config submodule.sub.url)" = helper:://hostname/subrepo
660 )
661'
662
663test_expect_success '../subrepo works with scp-style URL - user@host:repo' '
ea640cc6
TR
664 (
665 cd reltest &&
666 cp pristine-.git-config .git/config &&
667 git config remote.origin.url user@host:repo &&
668 git submodule init &&
669 test "$(git config submodule.sub.url)" = user@host:subrepo
670 )
671'
672
712693e8
JS
673test_expect_success '../subrepo works with scp-style URL - user@host:path/to/repo' '
674 (
675 cd reltest &&
676 cp pristine-.git-config .git/config &&
677 cp pristine-.gitmodules .gitmodules &&
678 git config remote.origin.url user@host:path/to/repo &&
679 git submodule init &&
680 test "$(git config submodule.sub.url)" = user@host:path/to/subrepo
681 )
682'
683
758615e2 684test_expect_success '../subrepo works with relative local path - foo' '
49301c64
JS
685 (
686 cd reltest &&
687 cp pristine-.git-config .git/config &&
688 cp pristine-.gitmodules .gitmodules &&
689 git config remote.origin.url foo &&
690 # actual: fails with an error
691 git submodule init &&
692 test "$(git config submodule.sub.url)" = subrepo
693 )
694'
695
712693e8
JS
696test_expect_success '../subrepo works with relative local path - foo/bar' '
697 (
698 cd reltest &&
699 cp pristine-.git-config .git/config &&
700 cp pristine-.gitmodules .gitmodules &&
701 git config remote.origin.url foo/bar &&
702 git submodule init &&
703 test "$(git config submodule.sub.url)" = foo/subrepo
704 )
705'
706
758615e2 707test_expect_success '../subrepo works with relative local path - ./foo' '
49301c64
JS
708 (
709 cd reltest &&
710 cp pristine-.git-config .git/config &&
711 cp pristine-.gitmodules .gitmodules &&
712 git config remote.origin.url ./foo &&
713 git submodule init &&
714 test "$(git config submodule.sub.url)" = subrepo
715 )
716'
717
758615e2 718test_expect_success '../subrepo works with relative local path - ./foo/bar' '
49301c64
JS
719 (
720 cd reltest &&
721 cp pristine-.git-config .git/config &&
722 cp pristine-.gitmodules .gitmodules &&
723 git config remote.origin.url ./foo/bar &&
724 git submodule init &&
725 test "$(git config submodule.sub.url)" = foo/subrepo
726 )
727'
728
712693e8
JS
729test_expect_success '../subrepo works with relative local path - ../foo' '
730 (
731 cd reltest &&
732 cp pristine-.git-config .git/config &&
733 cp pristine-.gitmodules .gitmodules &&
734 git config remote.origin.url ../foo &&
735 git submodule init &&
736 test "$(git config submodule.sub.url)" = ../subrepo
737 )
738'
739
740test_expect_success '../subrepo works with relative local path - ../foo/bar' '
741 (
742 cd reltest &&
743 cp pristine-.git-config .git/config &&
744 cp pristine-.gitmodules .gitmodules &&
745 git config remote.origin.url ../foo/bar &&
746 git submodule init &&
747 test "$(git config submodule.sub.url)" = ../foo/subrepo
748 )
749'
750
751test_expect_success '../bar/a/b/c works with relative local path - ../foo/bar.git' '
752 (
753 cd reltest &&
754 cp pristine-.git-config .git/config &&
755 cp pristine-.gitmodules .gitmodules &&
756 mkdir -p a/b/c &&
757 (cd a/b/c; git init) &&
758 git config remote.origin.url ../foo/bar.git &&
759 git submodule add ../bar/a/b/c ./a/b/c &&
760 git submodule init &&
761 test "$(git config submodule.a/b/c.url)" = ../foo/bar/a/b/c
762 )
763'
764
d75219b4
JL
765test_expect_success 'moving the superproject does not break submodules' '
766 (
767 cd addtest &&
768 git submodule status >expect
99094a7a 769 ) &&
d75219b4
JL
770 mv addtest addtest2 &&
771 (
772 cd addtest2 &&
773 git submodule status >actual &&
774 test_cmp expect actual
775 )
776'
777
73b0898d
JL
778test_expect_success 'submodule add --name allows to replace a submodule with another at the same path' '
779 (
780 cd addtest2 &&
781 (
782 cd repo &&
783 echo "$submodurl/repo" >expect &&
784 git config remote.origin.url >actual &&
785 test_cmp expect actual &&
786 echo "gitdir: ../.git/modules/repo" >expect &&
787 test_cmp expect .git
788 ) &&
789 rm -rf repo &&
790 git rm repo &&
791 git submodule add -q --name repo_new "$submodurl/bare.git" repo >actual &&
ca8d148d 792 test_must_be_empty actual &&
73b0898d
JL
793 echo "gitdir: ../.git/modules/submod" >expect &&
794 test_cmp expect submod/.git &&
795 (
796 cd repo &&
797 echo "$submodurl/bare.git" >expect &&
798 git config remote.origin.url >actual &&
799 test_cmp expect actual &&
800 echo "gitdir: ../.git/modules/repo_new" >expect &&
801 test_cmp expect .git
802 ) &&
803 echo "repo" >expect &&
95c16418 804 test_must_fail git config -f .gitmodules submodule.repo.path &&
73b0898d
JL
805 git config -f .gitmodules submodule.repo_new.path >actual &&
806 test_cmp expect actual&&
807 echo "$submodurl/repo" >expect &&
95c16418 808 test_must_fail git config -f .gitmodules submodule.repo.url &&
73b0898d
JL
809 echo "$submodurl/bare.git" >expect &&
810 git config -f .gitmodules submodule.repo_new.url >actual &&
811 test_cmp expect actual &&
812 echo "$submodurl/repo" >expect &&
813 git config submodule.repo.url >actual &&
814 test_cmp expect actual &&
815 echo "$submodurl/bare.git" >expect &&
816 git config submodule.repo_new.url >actual &&
817 test_cmp expect actual
818 )
819'
820
f8eaa0ba 821test_expect_success 'recursive relative submodules stay relative' '
3fea121d
SB
822 test_when_finished "rm -rf super clone2 subsub sub3" &&
823 mkdir subsub &&
824 (
825 cd subsub &&
826 git init &&
827 >t &&
828 git add t &&
829 git commit -m "initial commit"
830 ) &&
831 mkdir sub3 &&
832 (
833 cd sub3 &&
834 git init &&
835 >t &&
836 git add t &&
837 git commit -m "initial commit" &&
838 git submodule add ../subsub dirdir/subsub &&
839 git commit -m "add submodule subsub"
840 ) &&
841 mkdir super &&
842 (
843 cd super &&
844 git init &&
845 >t &&
846 git add t &&
847 git commit -m "initial commit" &&
848 git submodule add ../sub3 &&
849 git commit -m "add submodule sub"
850 ) &&
851 git clone super clone2 &&
852 (
853 cd clone2 &&
854 git submodule update --init --recursive &&
855 echo "gitdir: ../.git/modules/sub3" >./sub3/.git_expect &&
856 echo "gitdir: ../../../.git/modules/sub3/modules/dirdir/subsub" >./sub3/dirdir/subsub/.git_expect
857 ) &&
858 test_cmp clone2/sub3/.git_expect clone2/sub3/.git &&
859 test_cmp clone2/sub3/dirdir/subsub/.git_expect clone2/sub3/dirdir/subsub/.git
860'
861
4b7c286e
JL
862test_expect_success 'submodule add with an existing name fails unless forced' '
863 (
864 cd addtest2 &&
865 rm -rf repo &&
866 git rm repo &&
867 test_must_fail git submodule add -q --name repo_new "$submodurl/repo.git" repo &&
868 test ! -d repo &&
95c16418
JL
869 test_must_fail git config -f .gitmodules submodule.repo_new.path &&
870 test_must_fail git config -f .gitmodules submodule.repo_new.url &&
4b7c286e
JL
871 echo "$submodurl/bare.git" >expect &&
872 git config submodule.repo_new.url >actual &&
873 test_cmp expect actual &&
874 git submodule add -f -q --name repo_new "$submodurl/repo.git" repo &&
875 test -d repo &&
876 echo "repo" >expect &&
877 git config -f .gitmodules submodule.repo_new.path >actual &&
878 test_cmp expect actual&&
879 echo "$submodurl/repo.git" >expect &&
880 git config -f .gitmodules submodule.repo_new.url >actual &&
881 test_cmp expect actual &&
882 echo "$submodurl/repo.git" >expect &&
883 git config submodule.repo_new.url >actual &&
884 test_cmp expect actual
885 )
886'
887
cf419828
JL
888test_expect_success 'set up a second submodule' '
889 git submodule add ./init2 example2 &&
890 git commit -m "submodule example2 added"
891'
892
84ba959b
SB
893test_expect_success 'submodule deinit works on repository without submodules' '
894 test_when_finished "rm -rf newdirectory" &&
895 mkdir newdirectory &&
896 (
897 cd newdirectory &&
898 git init &&
899 >file &&
900 git add file &&
901 git commit -m "repo should not be empty"
902 git submodule deinit .
903 )
904'
905
cf419828
JL
906test_expect_success 'submodule deinit should remove the whole submodule section from .git/config' '
907 git config submodule.example.foo bar &&
908 git config submodule.example2.frotz nitfol &&
909 git submodule deinit init &&
910 test -z "$(git config --get-regexp "submodule\.example\.")" &&
911 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
912 test -f example2/.git &&
913 rmdir init
914'
915
091a6eb0
JK
916test_expect_success 'submodule deinit from subdirectory' '
917 git submodule update --init &&
918 git config submodule.example.foo bar &&
919 mkdir -p sub &&
920 (
921 cd sub &&
922 git submodule deinit ../init >../output
923 ) &&
924 grep "\\.\\./init" output &&
925 test -z "$(git config --get-regexp "submodule\.example\.")" &&
926 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
927 test -f example2/.git &&
928 rmdir init
929'
930
cf419828
JL
931test_expect_success 'submodule deinit . deinits all initialized submodules' '
932 git submodule update --init &&
933 git config submodule.example.foo bar &&
934 git config submodule.example2.frotz nitfol &&
935 test_must_fail git submodule deinit &&
7b294bf4 936 git submodule deinit . >actual &&
cf419828
JL
937 test -z "$(git config --get-regexp "submodule\.example\.")" &&
938 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
7b294bf4
JL
939 test_i18ngrep "Cleared directory .init" actual &&
940 test_i18ngrep "Cleared directory .example2" actual &&
cf419828
JL
941 rmdir init example2
942'
943
944test_expect_success 'submodule deinit deinits a submodule when its work tree is missing or empty' '
945 git submodule update --init &&
946 rm -rf init example2/* example2/.git &&
7b294bf4 947 git submodule deinit init example2 >actual &&
cf419828
JL
948 test -z "$(git config --get-regexp "submodule\.example\.")" &&
949 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
7b294bf4
JL
950 test_i18ngrep ! "Cleared directory .init" actual &&
951 test_i18ngrep "Cleared directory .example2" actual &&
cf419828
JL
952 rmdir init
953'
954
955test_expect_success 'submodule deinit fails when the submodule contains modifications unless forced' '
956 git submodule update --init &&
957 echo X >>init/s &&
958 test_must_fail git submodule deinit init &&
959 test -n "$(git config --get-regexp "submodule\.example\.")" &&
960 test -f example2/.git &&
7b294bf4 961 git submodule deinit -f init >actual &&
cf419828 962 test -z "$(git config --get-regexp "submodule\.example\.")" &&
7b294bf4 963 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
964 rmdir init
965'
966
967test_expect_success 'submodule deinit fails when the submodule contains untracked files unless forced' '
968 git submodule update --init &&
969 echo X >>init/untracked &&
970 test_must_fail git submodule deinit init &&
971 test -n "$(git config --get-regexp "submodule\.example\.")" &&
972 test -f example2/.git &&
7b294bf4 973 git submodule deinit -f init >actual &&
cf419828 974 test -z "$(git config --get-regexp "submodule\.example\.")" &&
7b294bf4 975 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
976 rmdir init
977'
978
979test_expect_success 'submodule deinit fails when the submodule HEAD does not match unless forced' '
980 git submodule update --init &&
981 (
982 cd init &&
983 git checkout HEAD^
984 ) &&
985 test_must_fail git submodule deinit init &&
986 test -n "$(git config --get-regexp "submodule\.example\.")" &&
987 test -f example2/.git &&
7b294bf4 988 git submodule deinit -f init >actual &&
cf419828 989 test -z "$(git config --get-regexp "submodule\.example\.")" &&
7b294bf4 990 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
991 rmdir init
992'
993
994test_expect_success 'submodule deinit is silent when used on an uninitialized submodule' '
995 git submodule update --init &&
996 git submodule deinit init >actual &&
997 test_i18ngrep "Submodule .example. (.*) unregistered for path .init" actual &&
7b294bf4 998 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
999 git submodule deinit init >actual &&
1000 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
7b294bf4 1001 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
1002 git submodule deinit . >actual &&
1003 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1004 test_i18ngrep "Submodule .example2. (.*) unregistered for path .example2" actual &&
7b294bf4 1005 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
1006 git submodule deinit . >actual &&
1007 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1008 test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&
7b294bf4 1009 test_i18ngrep "Cleared directory .init" actual &&
cf419828
JL
1010 rmdir init example2
1011'
1012
1013test_expect_success 'submodule deinit fails when submodule has a .git directory even when forced' '
1014 git submodule update --init &&
1015 (
1016 cd init &&
1017 rm .git &&
1018 cp -R ../.git/modules/example .git &&
1019 GIT_WORK_TREE=. git config --unset core.worktree
1020 ) &&
1021 test_must_fail git submodule deinit init &&
1022 test_must_fail git submodule deinit -f init &&
1023 test -d init/.git &&
1024 test -n "$(git config --get-regexp "submodule\.example\.")"
1025'
1026
bed94704
TB
1027test_expect_success 'submodule with UTF-8 name' '
1028 svname=$(printf "\303\245 \303\244\303\266") &&
1029 mkdir "$svname" &&
74671241 1030 (
bed94704 1031 cd "$svname" &&
74671241 1032 git init &&
bed94704
TB
1033 >sub &&
1034 git add sub &&
74671241 1035 git commit -m "init sub"
bed94704 1036 ) &&
bed94704
TB
1037 git submodule add ./"$svname" &&
1038 git submodule >&2 &&
1039 test -n "$(git submodule | grep "$svname")"
74671241 1040'
2bb7afac 1041
275cd184
FG
1042test_expect_success 'submodule add clone shallow submodule' '
1043 mkdir super &&
99094a7a 1044 pwd=$(pwd) &&
275cd184
FG
1045 (
1046 cd super &&
1047 git init &&
1048 git submodule add --depth=1 file://"$pwd"/example2 submodule &&
1049 (
1050 cd submodule &&
1051 test 1 = $(git log --oneline | wc -l)
1052 )
1053 )
1054'
1055
2b56bb7a
SB
1056test_expect_success 'submodule helper list is not confused by common prefixes' '
1057 mkdir -p dir1/b &&
1058 (
1059 cd dir1/b &&
1060 git init &&
1061 echo hi >testfile2 &&
1062 git add . &&
1063 git commit -m "test1"
1064 ) &&
1065 mkdir -p dir2/b &&
1066 (
1067 cd dir2/b &&
1068 git init &&
1069 echo hello >testfile1 &&
1070 git add . &&
1071 git commit -m "test2"
1072 ) &&
1073 git submodule add /dir1/b dir1/b &&
1074 git submodule add /dir2/b dir2/b &&
1075 git commit -m "first submodule commit" &&
1076 git submodule--helper list dir1/b |cut -c51- >actual &&
1077 echo "dir1/b" >expect &&
1078 test_cmp expect actual
1079'
1080
275cd184 1081
88961ef2 1082test_done