3 # Copyright (c) 2014 Heiko Voigt
6 test_description
='Test submodules config cache infrastructure
8 This test verifies that parsing .gitmodules configurations directly
9 from the database and from the worktree works.
15 test_expect_success
'submodule config cache setup' '
26 git submodule add ../submodule &&
27 git submodule add ../submodule a &&
28 git commit -m "add as submodule and as a" &&
30 git commit -m "move a to b"
34 cat >super
/expect
<<EOF
35 Submodule name: 'a' for path 'a'
36 Submodule name: 'a' for path 'b'
37 Submodule name: 'submodule' for path 'submodule'
38 Submodule name: 'submodule' for path 'submodule'
41 test_expect_success
'test parsing of submodule config' '
43 test-submodule-config \
49 test_cmp expect actual
53 cat >super
/expect_error
<<EOF
54 Submodule name: 'a' for path 'b'
55 Submodule name: 'submodule' for path 'submodule'
58 test_expect_success
'error in one submodule config lets continue' '
60 cp .gitmodules .gitmodules.bak &&
61 echo " value = \"" >>.gitmodules &&
62 git add .gitmodules &&
63 mv .gitmodules.bak .gitmodules &&
64 git commit -m "add error" &&
65 test-submodule-config \
69 test_cmp expect_error actual
73 cat >super
/expect_url
<<EOF
74 Submodule url: 'git@somewhere.else.net:a.git' for path 'b'
75 Submodule url: 'git@somewhere.else.net:submodule.git' for path 'submodule'
78 cat >super
/expect_local_path
<<EOF
79 Submodule name: 'a' for path 'c'
80 Submodule name: 'submodule' for path 'submodule'
83 test_expect_success
'reading of local configuration' '
85 old_a=$(git config submodule.a.url) &&
86 old_submodule=$(git config submodule.submodule.url) &&
87 git config submodule.a.url git@somewhere.else.net:a.git &&
88 git config submodule.submodule.url git@somewhere.else.net:submodule.git &&
89 test-submodule-config --url \
93 test_cmp expect_url actual &&
94 git config submodule.a.path c &&
95 test-submodule-config \
99 test_cmp expect_local_path actual &&
100 git config submodule.a.url $old_a &&
101 git config submodule.submodule.url $old_submodule &&
102 git config --unset submodule.a.path c
106 cat >super
/expect_fetchrecurse_die.err
<<EOF
107 fatal: bad submodule.submodule.fetchrecursesubmodules argument: blabla
110 test_expect_success
'local error in fetchrecursesubmodule dies early' '
112 git config submodule.submodule.fetchrecursesubmodules blabla &&
113 test_must_fail test-submodule-config \
116 >actual.out 2>actual.err &&
117 touch expect_fetchrecurse_die.out &&
118 test_cmp expect_fetchrecurse_die.out actual.out &&
119 test_cmp expect_fetchrecurse_die.err actual.err &&
120 git config --unset submodule.submodule.fetchrecursesubmodules
124 test_expect_success
'error in history in fetchrecursesubmodule lets continue' '
126 git config -f .gitmodules \
127 submodule.submodule.fetchrecursesubmodules blabla &&
128 git add .gitmodules &&
129 git config --unset -f .gitmodules \
130 submodule.submodule.fetchrecursesubmodules &&
131 git commit -m "add error in fetchrecursesubmodules" &&
132 test-submodule-config \
136 test_cmp expect_error actual &&
137 git reset --hard HEAD^