summaryrefslogtreecommitdiff
path: root/t/t7814-grep-recurse-submodules.sh
blob: 5b6eb3a65e26263db526c2e891ae01a4578bf48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/bin/sh
 
test_description='Test grep recurse-submodules feature
 
This test verifies the recurse-submodules feature correctly greps across
submodules.
'
 
. ./test-lib.sh
 
test_expect_success 'setup directory structure and submodule' '
	echo "foobar" >a &&
	mkdir b &&
	echo "bar" >b/b &&
	git add a b &&
	git commit -m "add a and b" &&
	git init submodule &&
	echo "foobar" >submodule/a &&
	git -C submodule add a &&
	git -C submodule commit -m "add a" &&
	git submodule add ./submodule &&
	git commit -m "added submodule"
'
 
test_expect_success 'grep correctly finds patterns in a submodule' '
	cat >expect <<-\EOF &&
	a:foobar
	b/b:bar
	submodule/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep and basic pathspecs' '
	cat >expect <<-\EOF &&
	submodule/a:foobar
	EOF
 
	git grep -e. --recurse-submodules -- submodule >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep and nested submodules' '
	git init submodule/sub &&
	echo "foobar" >submodule/sub/a &&
	git -C submodule/sub add a &&
	git -C submodule/sub commit -m "add a" &&
	git -C submodule submodule add ./sub &&
	git -C submodule add sub &&
	git -C submodule commit -m "added sub" &&
	git add submodule &&
	git commit -m "updated submodule" &&
 
	cat >expect <<-\EOF &&
	a:foobar
	b/b:bar
	submodule/a:foobar
	submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep and multiple patterns' '
	cat >expect <<-\EOF &&
	a:foobar
	submodule/a:foobar
	submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --and -e "foo" --recurse-submodules >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep and multiple patterns' '
	cat >expect <<-\EOF &&
	b/b:bar
	EOF
 
	git grep -e "bar" --and --not -e "foo" --recurse-submodules >actual &&
	test_cmp expect actual
'
 
test_expect_success 'basic grep tree' '
	cat >expect <<-\EOF &&
	HEAD:a:foobar
	HEAD:b/b:bar
	HEAD:submodule/a:foobar
	HEAD:submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree HEAD^' '
	cat >expect <<-\EOF &&
	HEAD^:a:foobar
	HEAD^:b/b:bar
	HEAD^:submodule/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD^ >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree HEAD^^' '
	cat >expect <<-\EOF &&
	HEAD^^:a:foobar
	HEAD^^:b/b:bar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD^^ >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree and pathspecs' '
	cat >expect <<-\EOF &&
	HEAD:submodule/a:foobar
	HEAD:submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD -- submodule >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree and pathspecs' '
	cat >expect <<-\EOF &&
	HEAD:submodule/a:foobar
	HEAD:submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD -- "submodule*a" >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree and more pathspecs' '
	cat >expect <<-\EOF &&
	HEAD:submodule/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD -- "submodul?/a" >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep tree and more pathspecs' '
	cat >expect <<-\EOF &&
	HEAD:submodule/sub/a:foobar
	EOF
 
	git grep -e "bar" --recurse-submodules HEAD -- "submodul*/sub/a" >actual &&
	test_cmp expect actual
'
 
test_expect_success !MINGW 'grep recurse submodule colon in name' '
	git init parent &&
	test_when_finished "rm -rf parent" &&
	echo "foobar" >"parent/fi:le" &&
	git -C parent add "fi:le" &&
	git -C parent commit -m "add fi:le" &&
 
	git init "su:b" &&
	test_when_finished "rm -rf su:b" &&
	echo "foobar" >"su:b/fi:le" &&
	git -C "su:b" add "fi:le" &&
	git -C "su:b" commit -m "add fi:le" &&
 
	git -C parent submodule add "../su:b" "su:b" &&
	git -C parent commit -m "add submodule" &&
 
	cat >expect <<-\EOF &&
	fi:le:foobar
	su:b/fi:le:foobar
	EOF
	git -C parent grep -e "foobar" --recurse-submodules >actual &&
	test_cmp expect actual &&
 
	cat >expect <<-\EOF &&
	HEAD:fi:le:foobar
	HEAD:su:b/fi:le:foobar
	EOF
	git -C parent grep -e "foobar" --recurse-submodules HEAD >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep history with moved submoules' '
	git init parent &&
	test_when_finished "rm -rf parent" &&
	echo "foobar" >parent/file &&
	git -C parent add file &&
	git -C parent commit -m "add file" &&
 
	git init sub &&
	test_when_finished "rm -rf sub" &&
	echo "foobar" >sub/file &&
	git -C sub add file &&
	git -C sub commit -m "add file" &&
 
	git -C parent submodule add ../sub dir/sub &&
	git -C parent commit -m "add submodule" &&
 
	cat >expect <<-\EOF &&
	dir/sub/file:foobar
	file:foobar
	EOF
	git -C parent grep -e "foobar" --recurse-submodules >actual &&
	test_cmp expect actual &&
 
	git -C parent mv dir/sub sub-moved &&
	git -C parent commit -m "moved submodule" &&
 
	cat >expect <<-\EOF &&
	file:foobar
	sub-moved/file:foobar
	EOF
	git -C parent grep -e "foobar" --recurse-submodules >actual &&
	test_cmp expect actual &&
 
	cat >expect <<-\EOF &&
	HEAD^:dir/sub/file:foobar
	HEAD^:file:foobar
	EOF
	git -C parent grep -e "foobar" --recurse-submodules HEAD^ >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep using relative path' '
	test_when_finished "rm -rf parent sub" &&
	git init sub &&
	echo "foobar" >sub/file &&
	git -C sub add file &&
	git -C sub commit -m "add file" &&
 
	git init parent &&
	echo "foobar" >parent/file &&
	git -C parent add file &&
	mkdir parent/src &&
	echo "foobar" >parent/src/file2 &&
	git -C parent add src/file2 &&
	git -C parent submodule add ../sub &&
	git -C parent commit -m "add files and submodule" &&
 
	# From top works
	cat >expect <<-\EOF &&
	file:foobar
	src/file2:foobar
	sub/file:foobar
	EOF
	git -C parent grep --recurse-submodules -e "foobar" >actual &&
	test_cmp expect actual &&
 
	# Relative path to top
	cat >expect <<-\EOF &&
	../file:foobar
	file2:foobar
	../sub/file:foobar
	EOF
	git -C parent/src grep --recurse-submodules -e "foobar" -- .. >actual &&
	test_cmp expect actual &&
 
	# Relative path to submodule
	cat >expect <<-\EOF &&
	../sub/file:foobar
	EOF
	git -C parent/src grep --recurse-submodules -e "foobar" -- ../sub >actual &&
	test_cmp expect actual
'
 
test_expect_success 'grep from a subdir' '
	test_when_finished "rm -rf parent sub" &&
	git init sub &&
	echo "foobar" >sub/file &&
	git -C sub add file &&
	git -C sub commit -m "add file" &&
 
	git init parent &&
	mkdir parent/src &&
	echo "foobar" >parent/src/file &&
	git -C parent add src/file &&
	git -C parent submodule add ../sub src/sub &&
	git -C parent submodule add ../sub sub &&
	git -C parent commit -m "add files and submodules" &&
 
	# Verify grep from root works
	cat >expect <<-\EOF &&
	src/file:foobar
	src/sub/file:foobar
	sub/file:foobar
	EOF
	git -C parent grep --recurse-submodules -e "foobar" >actual &&
	test_cmp expect actual &&
 
	# Verify grep from a subdir works
	cat >expect <<-\EOF &&
	file:foobar
	sub/file:foobar
	EOF
	git -C parent/src grep --recurse-submodules -e "foobar" >actual &&
	test_cmp expect actual
'
 
test_incompatible_with_recurse_submodules ()
{
	test_expect_success "--recurse-submodules and $1 are incompatible" "
		test_must_fail git grep -e. --recurse-submodules $1 2>actual &&
		test_i18ngrep 'not supported with --recurse-submodules' actual
	"
}
 
test_incompatible_with_recurse_submodules --untracked
test_incompatible_with_recurse_submodules --no-index
 
test_done