start_command: close cmd->err descriptor when fork/spawn fails
[git/dscho.git] / t / t7407-submodule-foreach.sh
blobf509285144a64eb4c7083f10e233d1d75867028c
1 #!/bin/sh
3 # Copyright (c) 2009 Johan Herland
6 test_description='Test "git submodule foreach"
8 This test verifies that "git submodule foreach" correctly visits all submodules
9 that are currently checked out.
12 . ./test-lib.sh
15 test_expect_success 'setup a submodule tree' '
16 echo file > file &&
17 git add file &&
18 test_tick &&
19 git commit -m upstream
20 git clone . super &&
21 git clone super submodule &&
23 cd super &&
24 git submodule add ../submodule sub1 &&
25 git submodule add ../submodule sub2 &&
26 git submodule add ../submodule sub3 &&
27 git config -f .gitmodules --rename-section \
28 submodule.sub1 submodule.foo1 &&
29 git config -f .gitmodules --rename-section \
30 submodule.sub2 submodule.foo2 &&
31 git config -f .gitmodules --rename-section \
32 submodule.sub3 submodule.foo3 &&
33 git add .gitmodules
34 test_tick &&
35 git commit -m "submodules" &&
36 git submodule init sub1 &&
37 git submodule init sub2 &&
38 git submodule init sub3
39 ) &&
41 cd submodule &&
42 echo different > file &&
43 git add file &&
44 test_tick &&
45 git commit -m "different"
46 ) &&
48 cd super &&
50 cd sub3 &&
51 git pull
52 ) &&
53 git add sub3 &&
54 test_tick &&
55 git commit -m "update sub3"
59 sub1sha1=$(cd super/sub1 && git rev-parse HEAD)
60 sub3sha1=$(cd super/sub3 && git rev-parse HEAD)
62 cat > expect <<EOF
63 Entering 'sub1'
64 foo1-sub1-$sub1sha1
65 Entering 'sub3'
66 foo3-sub3-$sub3sha1
67 EOF
69 test_expect_success 'test basic "submodule foreach" usage' '
70 git clone super clone &&
72 cd clone &&
73 git submodule update --init -- sub1 sub3 &&
74 git submodule foreach "echo \$name-\$path-\$sha1" > ../actual
75 ) &&
76 if test_have_prereq MINGW
77 then
78 dos2unix actual
79 fi &&
80 test_cmp expect actual
83 test_expect_success 'setup nested submodules' '
84 git clone submodule nested1 &&
85 git clone submodule nested2 &&
86 git clone submodule nested3 &&
88 cd nested3 &&
89 git submodule add ../submodule submodule &&
90 test_tick &&
91 git commit -m "submodule" &&
92 git submodule init submodule
93 ) &&
95 cd nested2 &&
96 git submodule add ../nested3 nested3 &&
97 test_tick &&
98 git commit -m "nested3" &&
99 git submodule init nested3
100 ) &&
102 cd nested1 &&
103 git submodule add ../nested2 nested2 &&
104 test_tick &&
105 git commit -m "nested2" &&
106 git submodule init nested2
107 ) &&
109 cd super &&
110 git submodule add ../nested1 nested1 &&
111 test_tick &&
112 git commit -m "nested1" &&
113 git submodule init nested1
117 test_expect_success 'use "submodule foreach" to checkout 2nd level submodule' '
118 git clone super clone2 &&
120 cd clone2 &&
121 test ! -d sub1/.git &&
122 test ! -d sub2/.git &&
123 test ! -d sub3/.git &&
124 test ! -d nested1/.git &&
125 git submodule update --init &&
126 test -d sub1/.git &&
127 test -d sub2/.git &&
128 test -d sub3/.git &&
129 test -d nested1/.git &&
130 test ! -d nested1/nested2/.git &&
131 git submodule foreach "git submodule update --init" &&
132 test -d nested1/nested2/.git &&
133 test ! -d nested1/nested2/nested3/.git
137 test_expect_success 'use "foreach --recursive" to checkout all submodules' '
139 cd clone2 &&
140 git submodule foreach --recursive "git submodule update --init" &&
141 test -d nested1/nested2/nested3/.git &&
142 test -d nested1/nested2/nested3/submodule/.git
146 cat > expect <<EOF
147 Entering 'nested1'
148 Entering 'nested1/nested2'
149 Entering 'nested1/nested2/nested3'
150 Entering 'nested1/nested2/nested3/submodule'
151 Entering 'sub1'
152 Entering 'sub2'
153 Entering 'sub3'
156 test_expect_success 'test messages from "foreach --recursive"' '
158 cd clone2 &&
159 git submodule foreach --recursive "true" > ../actual
160 ) &&
161 if test_have_prereq MINGW
162 then
163 dos2unix actual
164 fi &&
165 test_cmp expect actual
168 cat > expect <<EOF
169 nested1-nested1
170 nested2-nested2
171 nested3-nested3
172 submodule-submodule
173 foo1-sub1
174 foo2-sub2
175 foo3-sub3
178 test_expect_success 'test "foreach --quiet --recursive"' '
180 cd clone2 &&
181 git submodule foreach -q --recursive "echo \$name-\$path" > ../actual
182 ) &&
183 if test_have_prereq MINGW
184 then
185 dos2unix actual
186 fi &&
187 test_cmp expect actual
190 test_expect_success 'use "update --recursive" to checkout all submodules' '
191 git clone super clone3 &&
193 cd clone3 &&
194 test ! -d sub1/.git &&
195 test ! -d sub2/.git &&
196 test ! -d sub3/.git &&
197 test ! -d nested1/.git &&
198 git submodule update --init --recursive &&
199 test -d sub1/.git &&
200 test -d sub2/.git &&
201 test -d sub3/.git &&
202 test -d nested1/.git &&
203 test -d nested1/nested2/.git &&
204 test -d nested1/nested2/nested3/.git &&
205 test -d nested1/nested2/nested3/submodule/.git
209 nested1sha1=$(cd clone3/nested1 && git rev-parse HEAD)
210 nested2sha1=$(cd clone3/nested1/nested2 && git rev-parse HEAD)
211 nested3sha1=$(cd clone3/nested1/nested2/nested3 && git rev-parse HEAD)
212 submodulesha1=$(cd clone3/nested1/nested2/nested3/submodule && git rev-parse HEAD)
213 sub1sha1=$(cd clone3/sub1 && git rev-parse HEAD)
214 sub2sha1=$(cd clone3/sub2 && git rev-parse HEAD)
215 sub3sha1=$(cd clone3/sub3 && git rev-parse HEAD)
216 sub1sha1_short=$(cd clone3/sub1 && git rev-parse --short HEAD)
217 sub2sha1_short=$(cd clone3/sub2 && git rev-parse --short HEAD)
219 cat > expect <<EOF
220 $nested1sha1 nested1 (heads/master)
221 $nested2sha1 nested1/nested2 (heads/master)
222 $nested3sha1 nested1/nested2/nested3 (heads/master)
223 $submodulesha1 nested1/nested2/nested3/submodule (heads/master)
224 $sub1sha1 sub1 ($sub1sha1_short)
225 $sub2sha1 sub2 ($sub2sha1_short)
226 $sub3sha1 sub3 (heads/master)
229 test_expect_success 'test "status --recursive"' '
231 cd clone3 &&
232 git submodule status --recursive > ../actual
233 ) &&
234 if test_have_prereq MINGW
235 then
236 dos2unix actual
237 fi &&
238 test_cmp expect actual
241 test_expect_success 'use "git clone --recursive" to checkout all submodules' '
242 git clone --recursive super clone4 &&
243 test -d clone4/.git &&
244 test -d clone4/sub1/.git &&
245 test -d clone4/sub2/.git &&
246 test -d clone4/sub3/.git &&
247 test -d clone4/nested1/.git &&
248 test -d clone4/nested1/nested2/.git &&
249 test -d clone4/nested1/nested2/nested3/.git &&
250 test -d clone4/nested1/nested2/nested3/submodule/.git
253 test_done