]> git.ipfire.org Git - thirdparty/git.git/blame - t/t7810-grep.sh
mailmap: do not resolve blobs in a non-repository
[thirdparty/git.git] / t / t7810-grep.sh
CommitLineData
f25b7939
JH
1#!/bin/sh
2#
3# Copyright (c) 2006 Junio C Hamano
4#
5
0d042fec 6test_description='git grep various.
f25b7939
JH
7'
8
9. ./test-lib.sh
10
2944e4e6
RS
11cat >hello.c <<EOF
12#include <stdio.h>
13int main(int argc, const char **argv)
14{
15 printf("Hello world.\n");
16 return 0;
5183bf67 17 /* char ?? */
2944e4e6
RS
18}
19EOF
20
f25b7939
JH
21test_expect_success setup '
22 {
23 echo foo mmap bar
24 echo foo_mmap bar
25 echo foo_mmap bar mmap
26 echo foo mmap bar_mmap
27 echo foo_mmap bar mmap baz
28 } >file &&
8f852ce6
MK
29 {
30 echo Hello world
31 echo HeLLo world
32 echo Hello_world
33 echo HeLLo_world
34 } >hello_world &&
f556e4af 35 {
d0042abe
MK
36 echo "a+b*c"
37 echo "a+bc"
38 echo "abc"
f556e4af 39 } >ab &&
a91f453f 40 echo vvv >v &&
dbb6a4ad 41 echo ww w >w &&
f25b7939
JH
42 echo x x xx x >x &&
43 echo y yy >y &&
44 echo zzz > z &&
0d042fec
JH
45 mkdir t &&
46 echo test >t/t &&
a91f453f
MK
47 echo vvv >t/v &&
48 mkdir t/a &&
49 echo vvv >t/a/v &&
d29d787c
MK
50 {
51 echo "line without leading space1"
52 echo " line with leading space1"
53 echo " line with leading space2"
54 echo " line with leading space3"
55 echo "line without leading space2"
56 } >space &&
a91f453f 57 git add . &&
a4d7d2c6 58 test_tick &&
f25b7939
JH
59 git commit -m initial
60'
61
c922b01f
LT
62test_expect_success 'grep should not segfault with a bad input' '
63 test_must_fail git grep "("
64'
65
f25b7939
JH
66for H in HEAD ''
67do
68 case "$H" in
69 HEAD) HC='HEAD:' L='HEAD' ;;
70 '') HC= L='in working tree' ;;
71 esac
72
73 test_expect_success "grep -w $L" '
74 {
75 echo ${HC}file:1:foo mmap bar
76 echo ${HC}file:3:foo_mmap bar mmap
77 echo ${HC}file:4:foo mmap bar_mmap
78 echo ${HC}file:5:foo_mmap bar mmap baz
79 } >expected &&
b22520a3
JR
80 git -c grep.linenumber=false grep -n -w -e mmap $H >actual &&
81 test_cmp expected actual
82 '
83
84 test_expect_success "grep -w $L" '
85 {
86 echo ${HC}file:1:foo mmap bar
87 echo ${HC}file:3:foo_mmap bar mmap
88 echo ${HC}file:4:foo mmap bar_mmap
89 echo ${HC}file:5:foo_mmap bar mmap baz
90 } >expected &&
91 git -c grep.linenumber=true grep -w -e mmap $H >actual &&
92 test_cmp expected actual
93 '
94
95 test_expect_success "grep -w $L" '
96 {
97 echo ${HC}file:foo mmap bar
98 echo ${HC}file:foo_mmap bar mmap
99 echo ${HC}file:foo mmap bar_mmap
100 echo ${HC}file:foo_mmap bar mmap baz
101 } >expected &&
102 git -c grep.linenumber=true grep --no-line-number -w -e mmap $H >actual &&
4fdf71be 103 test_cmp expected actual
f25b7939
JH
104 '
105
dbb6a4ad
RS
106 test_expect_success "grep -w $L (w)" '
107 : >expected &&
9afad7a1 108 test_must_fail git grep -n -w -e "^w" $H >actual &&
dbb6a4ad
RS
109 test_cmp expected actual
110 '
111
f25b7939
JH
112 test_expect_success "grep -w $L (x)" '
113 {
114 echo ${HC}x:1:x x xx x
115 } >expected &&
116 git grep -n -w -e "x xx* x" $H >actual &&
4fdf71be 117 test_cmp expected actual
f25b7939
JH
118 '
119
120 test_expect_success "grep -w $L (y-1)" '
121 {
122 echo ${HC}y:1:y yy
123 } >expected &&
124 git grep -n -w -e "^y" $H >actual &&
4fdf71be 125 test_cmp expected actual
f25b7939
JH
126 '
127
128 test_expect_success "grep -w $L (y-2)" '
129 : >expected &&
130 if git grep -n -w -e "^y y" $H >actual
131 then
132 echo should not have matched
133 cat actual
134 false
135 else
4fdf71be 136 test_cmp expected actual
f25b7939
JH
137 fi
138 '
139
140 test_expect_success "grep -w $L (z)" '
141 : >expected &&
142 if git grep -n -w -e "^z" $H >actual
143 then
144 echo should not have matched
145 cat actual
146 false
147 else
4fdf71be 148 test_cmp expected actual
f25b7939
JH
149 fi
150 '
0d042fec
JH
151
152 test_expect_success "grep $L (t-1)" '
153 echo "${HC}t/t:1:test" >expected &&
154 git grep -n -e test $H >actual &&
4fdf71be 155 test_cmp expected actual
0d042fec
JH
156 '
157
158 test_expect_success "grep $L (t-2)" '
159 echo "${HC}t:1:test" >expected &&
160 (
161 cd t &&
162 git grep -n -e test $H
163 ) >actual &&
4fdf71be 164 test_cmp expected actual
0d042fec
JH
165 '
166
167 test_expect_success "grep $L (t-3)" '
168 echo "${HC}t/t:1:test" >expected &&
169 (
170 cd t &&
171 git grep --full-name -n -e test $H
172 ) >actual &&
4fdf71be 173 test_cmp expected actual
0d042fec
JH
174 '
175
41ac414e 176 test_expect_success "grep -c $L (no /dev/null)" '
87539416 177 ! git grep -c test $H | grep /dev/null
d99ebf08
JH
178 '
179
a91f453f
MK
180 test_expect_success "grep --max-depth -1 $L" '
181 {
182 echo ${HC}t/a/v:1:vvv
183 echo ${HC}t/v:1:vvv
184 echo ${HC}v:1:vvv
185 } >expected &&
186 git grep --max-depth -1 -n -e vvv $H >actual &&
187 test_cmp expected actual
188 '
189
190 test_expect_success "grep --max-depth 0 $L" '
191 {
192 echo ${HC}v:1:vvv
193 } >expected &&
194 git grep --max-depth 0 -n -e vvv $H >actual &&
195 test_cmp expected actual
196 '
197
198 test_expect_success "grep --max-depth 0 -- '*' $L" '
199 {
200 echo ${HC}t/a/v:1:vvv
201 echo ${HC}t/v:1:vvv
202 echo ${HC}v:1:vvv
203 } >expected &&
204 git grep --max-depth 0 -n -e vvv $H -- "*" >actual &&
205 test_cmp expected actual
206 '
207
208 test_expect_success "grep --max-depth 1 $L" '
209 {
210 echo ${HC}t/v:1:vvv
211 echo ${HC}v:1:vvv
212 } >expected &&
213 git grep --max-depth 1 -n -e vvv $H >actual &&
214 test_cmp expected actual
215 '
216
217 test_expect_success "grep --max-depth 0 -- t $L" '
218 {
219 echo ${HC}t/v:1:vvv
220 } >expected &&
221 git grep --max-depth 0 -n -e vvv $H -- t >actual &&
222 test_cmp expected actual
223 '
224
b31f6880
NTND
225 test_expect_success "grep --max-depth 0 -- . t $L" '
226 {
227 echo ${HC}t/v:1:vvv
228 echo ${HC}v:1:vvv
229 } >expected &&
230 git grep --max-depth 0 -n -e vvv $H -- . t >actual &&
231 test_cmp expected actual
232 '
233
234 test_expect_success "grep --max-depth 0 -- t . $L" '
235 {
236 echo ${HC}t/v:1:vvv
237 echo ${HC}v:1:vvv
238 } >expected &&
239 git grep --max-depth 0 -n -e vvv $H -- t . >actual &&
240 test_cmp expected actual
241 '
f556e4af 242 test_expect_success "grep $L with grep.extendedRegexp=false" '
9afad7a1
RS
243 echo "${HC}ab:a+bc" >expected &&
244 git -c grep.extendedRegexp=false grep "a+b*c" $H ab >actual &&
f556e4af
MK
245 test_cmp expected actual
246 '
b31f6880 247
f556e4af 248 test_expect_success "grep $L with grep.extendedRegexp=true" '
9afad7a1
RS
249 echo "${HC}ab:abc" >expected &&
250 git -c grep.extendedRegexp=true grep "a+b*c" $H ab >actual &&
f556e4af
MK
251 test_cmp expected actual
252 '
84befcd0
S
253
254 test_expect_success "grep $L with grep.patterntype=basic" '
9afad7a1
RS
255 echo "${HC}ab:a+bc" >expected &&
256 git -c grep.patterntype=basic grep "a+b*c" $H ab >actual &&
84befcd0
S
257 test_cmp expected actual
258 '
259
260 test_expect_success "grep $L with grep.patterntype=extended" '
9afad7a1
RS
261 echo "${HC}ab:abc" >expected &&
262 git -c grep.patterntype=extended grep "a+b*c" $H ab >actual &&
84befcd0
S
263 test_cmp expected actual
264 '
265
266 test_expect_success "grep $L with grep.patterntype=fixed" '
9afad7a1
RS
267 echo "${HC}ab:a+b*c" >expected &&
268 git -c grep.patterntype=fixed grep "a+b*c" $H ab >actual &&
84befcd0
S
269 test_cmp expected actual
270 '
271
272 test_expect_success LIBPCRE "grep $L with grep.patterntype=perl" '
9afad7a1
RS
273 echo "${HC}ab:a+b*c" >expected &&
274 git -c grep.patterntype=perl grep "a\x{2b}b\x{2a}c" $H ab >actual &&
84befcd0
S
275 test_cmp expected actual
276 '
277
278 test_expect_success "grep $L with grep.patternType=default and grep.extendedRegexp=true" '
9afad7a1 279 echo "${HC}ab:abc" >expected &&
84befcd0
S
280 git \
281 -c grep.patternType=default \
282 -c grep.extendedRegexp=true \
9afad7a1 283 grep "a+b*c" $H ab >actual &&
84befcd0
S
284 test_cmp expected actual
285 '
286
287 test_expect_success "grep $L with grep.extendedRegexp=true and grep.patternType=default" '
9afad7a1 288 echo "${HC}ab:abc" >expected &&
84befcd0
S
289 git \
290 -c grep.extendedRegexp=true \
291 -c grep.patternType=default \
9afad7a1 292 grep "a+b*c" $H ab >actual &&
84befcd0
S
293 test_cmp expected actual
294 '
295
9afad7a1
RS
296 test_expect_success "grep $L with grep.patternType=extended and grep.extendedRegexp=false" '
297 echo "${HC}ab:abc" >expected &&
84befcd0
S
298 git \
299 -c grep.patternType=extended \
300 -c grep.extendedRegexp=false \
9afad7a1 301 grep "a+b*c" $H ab >actual &&
84befcd0
S
302 test_cmp expected actual
303 '
304
9afad7a1
RS
305 test_expect_success "grep $L with grep.patternType=basic and grep.extendedRegexp=true" '
306 echo "${HC}ab:a+bc" >expected &&
84befcd0
S
307 git \
308 -c grep.patternType=basic \
309 -c grep.extendedRegexp=true \
9afad7a1 310 grep "a+b*c" $H ab >actual &&
84befcd0
S
311 test_cmp expected actual
312 '
313
9afad7a1
RS
314 test_expect_success "grep $L with grep.extendedRegexp=false and grep.patternType=extended" '
315 echo "${HC}ab:abc" >expected &&
84befcd0
S
316 git \
317 -c grep.extendedRegexp=false \
318 -c grep.patternType=extended \
9afad7a1 319 grep "a+b*c" $H ab >actual &&
84befcd0
S
320 test_cmp expected actual
321 '
322
9afad7a1
RS
323 test_expect_success "grep $L with grep.extendedRegexp=true and grep.patternType=basic" '
324 echo "${HC}ab:a+bc" >expected &&
84befcd0
S
325 git \
326 -c grep.extendedRegexp=true \
327 -c grep.patternType=basic \
9afad7a1 328 grep "a+b*c" $H ab >actual &&
f76d947a
RS
329 test_cmp expected actual
330 '
331
332 test_expect_success "grep --count $L" '
333 echo ${HC}ab:3 >expected &&
334 git grep --count -e b $H -- ab >actual &&
335 test_cmp expected actual
336 '
337
338 test_expect_success "grep --count -h $L" '
339 echo 3 >expected &&
340 git grep --count -h -e b $H -- ab >actual &&
84befcd0
S
341 test_cmp expected actual
342 '
f25b7939
JH
343done
344
50dd0f2f
AY
345cat >expected <<EOF
346file
347EOF
348test_expect_success 'grep -l -C' '
349 git grep -l -C1 foo >actual &&
350 test_cmp expected actual
351'
352
353cat >expected <<EOF
354file:5
355EOF
356test_expect_success 'grep -l -C' '
357 git grep -c -C1 foo >actual &&
358 test_cmp expected actual
359'
360
361test_expect_success 'grep -L -C' '
362 git ls-files >expected &&
363 git grep -L -C1 nonexistent_string >actual &&
364 test_cmp expected actual
365'
366
0f705046
TR
367cat >expected <<EOF
368file:foo mmap bar_mmap
369EOF
370
371test_expect_success 'grep -e A --and -e B' '
372 git grep -e "foo mmap" --and -e bar_mmap >actual &&
373 test_cmp expected actual
374'
375
376cat >expected <<EOF
377file:foo_mmap bar mmap
378file:foo_mmap bar mmap baz
379EOF
380
381
382test_expect_success 'grep ( -e A --or -e B ) --and -e B' '
383 git grep \( -e foo_ --or -e baz \) \
384 --and -e " mmap" >actual &&
385 test_cmp expected actual
386'
387
388cat >expected <<EOF
389file:foo mmap bar
390EOF
391
392test_expect_success 'grep -e A --and --not -e B' '
393 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
394 test_cmp expected actual
395'
396
b4827599
RS
397test_expect_success 'grep should ignore GREP_OPTIONS' '
398 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
399 test_cmp expected actual
400'
401
cfe370c6
MK
402test_expect_success 'grep -f, non-existent file' '
403 test_must_fail git grep -f patterns
404'
405
406cat >expected <<EOF
407file:foo mmap bar
408file:foo_mmap bar
409file:foo_mmap bar mmap
410file:foo mmap bar_mmap
411file:foo_mmap bar mmap baz
412EOF
413
414cat >pattern <<EOF
415mmap
416EOF
417
418test_expect_success 'grep -f, one pattern' '
419 git grep -f pattern >actual &&
420 test_cmp expected actual
421'
422
423cat >expected <<EOF
424file:foo mmap bar
425file:foo_mmap bar
426file:foo_mmap bar mmap
427file:foo mmap bar_mmap
428file:foo_mmap bar mmap baz
429t/a/v:vvv
430t/v:vvv
431v:vvv
432EOF
433
434cat >patterns <<EOF
435mmap
436vvv
437EOF
438
439test_expect_success 'grep -f, multiple patterns' '
440 git grep -f patterns >actual &&
441 test_cmp expected actual
442'
443
526a858a
RS
444test_expect_success 'grep, multiple patterns' '
445 git grep "$(cat patterns)" >actual &&
446 test_cmp expected actual
447'
448
cfe370c6
MK
449cat >expected <<EOF
450file:foo mmap bar
451file:foo_mmap bar
452file:foo_mmap bar mmap
453file:foo mmap bar_mmap
454file:foo_mmap bar mmap baz
455t/a/v:vvv
456t/v:vvv
457v:vvv
458EOF
459
460cat >patterns <<EOF
461
462mmap
463
464vvv
465
466EOF
467
468test_expect_success 'grep -f, ignore empty lines' '
469 git grep -f patterns >actual &&
470 test_cmp expected actual
471'
472
c41dd2fd
RS
473test_expect_success 'grep -f, ignore empty lines, read patterns from stdin' '
474 git grep -f - <patterns >actual &&
475 test_cmp expected actual
476'
477
046802d0
RS
478cat >expected <<EOF
479y:y yy
480--
481z:zzz
482EOF
483
4ff61c21
JH
484test_expect_success 'grep -q, silently report matches' '
485 >empty &&
486 git grep -q mmap >actual &&
487 test_cmp empty actual &&
488 test_must_fail git grep -q qfwfq >actual &&
489 test_cmp empty actual
490'
491
bbc09c22
JH
492test_expect_success 'grep -C1 hunk mark between files' '
493 git grep -C1 "^[yz]" >actual &&
046802d0
RS
494 test_cmp expected actual
495'
496
a4d7d2c6
JH
497test_expect_success 'log grep setup' '
498 echo a >>file &&
499 test_tick &&
500 GIT_AUTHOR_NAME="With * Asterisk" \
501 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
502 git commit -a -m "second" &&
503
504 echo a >>file &&
505 test_tick &&
5aaeb733 506 git commit -a -m "third" &&
a4d7d2c6 507
5aaeb733
JH
508 echo a >>file &&
509 test_tick &&
510 GIT_AUTHOR_NAME="Night Fall" \
511 GIT_AUTHOR_EMAIL="nitfol@frobozz.com" \
512 git commit -a -m "fourth"
a4d7d2c6
JH
513'
514
515test_expect_success 'log grep (1)' '
516 git log --author=author --pretty=tformat:%s >actual &&
b327bf74
MG
517 {
518 echo third && echo initial
519 } >expect &&
a4d7d2c6
JH
520 test_cmp expect actual
521'
522
523test_expect_success 'log grep (2)' '
524 git log --author=" * " -F --pretty=tformat:%s >actual &&
b327bf74
MG
525 {
526 echo second
527 } >expect &&
a4d7d2c6
JH
528 test_cmp expect actual
529'
530
531test_expect_success 'log grep (3)' '
532 git log --author="^A U" --pretty=tformat:%s >actual &&
b327bf74
MG
533 {
534 echo third && echo initial
535 } >expect &&
a4d7d2c6
JH
536 test_cmp expect actual
537'
538
539test_expect_success 'log grep (4)' '
540 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
b327bf74
MG
541 {
542 echo second
543 } >expect &&
a4d7d2c6
JH
544 test_cmp expect actual
545'
546
547test_expect_success 'log grep (5)' '
80235ba7 548 git log --author=Thor -F --pretty=tformat:%s >actual &&
b327bf74
MG
549 {
550 echo third && echo initial
551 } >expect &&
a4d7d2c6
JH
552 test_cmp expect actual
553'
554
555test_expect_success 'log grep (6)' '
556 git log --author=-0700 --pretty=tformat:%s >actual &&
557 >expect &&
558 test_cmp expect actual
57d43466 559'
a4d7d2c6 560
72fd13f7
NTND
561test_expect_success 'log grep (7)' '
562 git log -g --grep-reflog="commit: third" --pretty=tformat:%s >actual &&
563 echo third >expect &&
564 test_cmp expect actual
565'
566
567test_expect_success 'log grep (8)' '
568 git log -g --grep-reflog="commit: third" --grep-reflog="commit: second" --pretty=tformat:%s >actual &&
569 {
570 echo third && echo second
571 } >expect &&
572 test_cmp expect actual
573'
574
575test_expect_success 'log grep (9)' '
576 git log -g --grep-reflog="commit: third" --author="Thor" --pretty=tformat:%s >actual &&
577 echo third >expect &&
578 test_cmp expect actual
579'
580
581test_expect_success 'log grep (9)' '
582 git log -g --grep-reflog="commit: third" --author="non-existant" --pretty=tformat:%s >actual &&
583 : >expect &&
584 test_cmp expect actual
585'
586
baa6378f
JH
587test_expect_success 'log --grep-reflog can only be used under -g' '
588 test_must_fail git log --grep-reflog="commit: third"
589'
590
dfe36425
MG
591test_expect_success 'log with multiple --grep uses union' '
592 git log --grep=i --grep=r --format=%s >actual &&
593 {
594 echo fourth && echo third && echo initial
595 } >expect &&
596 test_cmp expect actual
597'
598
599test_expect_success 'log --all-match with multiple --grep uses intersection' '
600 git log --all-match --grep=i --grep=r --format=%s >actual &&
601 {
602 echo third
603 } >expect &&
80235ba7
JH
604 test_cmp expect actual
605'
606
5aaeb733
JH
607test_expect_success 'log with multiple --author uses union' '
608 git log --author="Thor" --author="Aster" --format=%s >actual &&
609 {
610 echo third && echo second && echo initial
611 } >expect &&
612 test_cmp expect actual
613'
614
00f62a64
MG
615test_expect_success 'log --all-match with multiple --author still uses union' '
616 git log --all-match --author="Thor" --author="Aster" --format=%s >actual &&
617 {
618 echo third && echo second && echo initial
619 } >expect &&
620 test_cmp expect actual
621'
622
2cb03e76
MG
623test_expect_success 'log --grep --author uses intersection' '
624 # grep matches only third and fourth
625 # author matches only initial and third
626 git log --author="A U Thor" --grep=r --format=%s >actual &&
5aaeb733 627 {
2cb03e76 628 echo third
5aaeb733
JH
629 } >expect &&
630 test_cmp expect actual
631'
632
2cb03e76
MG
633test_expect_success 'log --grep --grep --author takes union of greps and intersects with author' '
634 # grep matches initial and second but not third
635 # author matches only initial and third
636 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
637 {
638 echo initial
639 } >expect &&
640 test_cmp expect actual
641'
642
39f2e017
MG
643test_expect_success 'log ---all-match -grep --author --author still takes union of authors and intersects with grep' '
644 # grep matches only initial and third
645 # author matches all but second
646 git log --all-match --author="Thor" --author="Night" --grep=i --format=%s >actual &&
647 {
648 echo third && echo initial
649 } >expect &&
650 test_cmp expect actual
651'
652
2cb03e76
MG
653test_expect_success 'log --grep --author --author takes union of authors and intersects with grep' '
654 # grep matches only initial and third
655 # author matches all but second
5aaeb733
JH
656 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
657 {
658 echo third && echo initial
659 } >expect &&
660 test_cmp expect actual
661'
662
39f2e017
MG
663test_expect_success 'log --all-match --grep --grep --author takes intersection' '
664 # grep matches only third
665 # author matches only initial and third
666 git log --all-match --author="A U Thor" --grep=i --grep=r --format=%s >actual &&
667 {
668 echo third
669 } >expect &&
5aaeb733
JH
670 test_cmp expect actual
671'
672
ad4813b3
NTND
673test_expect_success 'log --author does not search in timestamp' '
674 : >expect &&
675 git log --author="$GIT_AUTHOR_DATE" >actual &&
676 test_cmp expect actual
677'
678
679test_expect_success 'log --committer does not search in timestamp' '
680 : >expect &&
681 git log --committer="$GIT_COMMITTER_DATE" >actual &&
682 test_cmp expect actual
683'
684
57d43466
NTND
685test_expect_success 'grep with CE_VALID file' '
686 git update-index --assume-unchanged t/t &&
687 rm t/t &&
bbc09c22 688 test "$(git grep test)" = "t/t:test" &&
57d43466
NTND
689 git update-index --no-assume-unchanged t/t &&
690 git checkout t/t
a4d7d2c6
JH
691'
692
60ecac98
RS
693cat >expected <<EOF
694hello.c=#include <stdio.h>
695hello.c: return 0;
696EOF
697
698test_expect_success 'grep -p with userdiff' '
699 git config diff.custom.funcname "^#" &&
700 echo "hello.c diff=custom" >.gitattributes &&
701 git grep -p return >actual &&
702 test_cmp expected actual
703'
704
2944e4e6
RS
705cat >expected <<EOF
706hello.c=int main(int argc, const char **argv)
707hello.c: return 0;
708EOF
709
710test_expect_success 'grep -p' '
60ecac98 711 rm -f .gitattributes &&
2944e4e6
RS
712 git grep -p return >actual &&
713 test_cmp expected actual
714'
715
716cat >expected <<EOF
717hello.c-#include <stdio.h>
718hello.c=int main(int argc, const char **argv)
719hello.c-{
720hello.c- printf("Hello world.\n");
721hello.c: return 0;
722EOF
723
724test_expect_success 'grep -p -B5' '
725 git grep -p -B5 return >actual &&
726 test_cmp expected actual
727'
728
ba8ea749
RS
729cat >expected <<EOF
730hello.c=int main(int argc, const char **argv)
731hello.c-{
732hello.c- printf("Hello world.\n");
733hello.c: return 0;
734hello.c- /* char ?? */
735hello.c-}
736EOF
737
738test_expect_success 'grep -W' '
739 git grep -W return >actual &&
740 test_cmp expected actual
b8ffedca
TR
741'
742
743cat >expected <<EOF
744hello.c= printf("Hello world.\n");
745hello.c: return 0;
746hello.c- /* char ?? */
747EOF
748
749test_expect_success 'grep -W with userdiff' '
750 test_when_finished "rm -f .gitattributes" &&
751 git config diff.custom.xfuncname "(printf.*|})$" &&
752 echo "hello.c diff=custom" >.gitattributes &&
753 git grep -W return >actual &&
754 test_cmp expected actual
ba8ea749
RS
755'
756
493b7a08
CB
757test_expect_success 'grep from a subdirectory to search wider area (1)' '
758 mkdir -p s &&
759 (
760 cd s && git grep "x x x" ..
761 )
762'
763
764test_expect_success 'grep from a subdirectory to search wider area (2)' '
765 mkdir -p s &&
766 (
767 cd s || exit 1
768 ( git grep xxyyzz .. >out ; echo $? >status )
769 ! test -s out &&
770 test 1 = $(cat status)
771 )
772'
773
5183bf67
BC
774cat >expected <<EOF
775hello.c:int main(int argc, const char **argv)
776EOF
777
778test_expect_success 'grep -Fi' '
779 git grep -Fi "CHAR *" >actual &&
780 test_cmp expected actual
781'
782
59332d13
JH
783test_expect_success 'outside of git repository' '
784 rm -fr non &&
785 mkdir -p non/git/sub &&
786 echo hello >non/git/file1 &&
787 echo world >non/git/sub/file2 &&
59332d13
JH
788 {
789 echo file1:hello &&
790 echo sub/file2:world
791 } >non/expect.full &&
a48fcd83 792 echo file2:world >non/expect.sub &&
59332d13 793 (
1f5101ae 794 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
59332d13
JH
795 export GIT_CEILING_DIRECTORIES &&
796 cd non/git &&
797 test_must_fail git grep o &&
798 git grep --no-index o >../actual.full &&
1f5101ae 799 test_cmp ../expect.full ../actual.full &&
59332d13
JH
800 cd sub &&
801 test_must_fail git grep o &&
802 git grep --no-index o >../../actual.sub &&
803 test_cmp ../../expect.sub ../../actual.sub
0a93fb8a
JH
804 ) &&
805
806 echo ".*o*" >non/git/.gitignore &&
807 (
1f5101ae 808 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
0a93fb8a
JH
809 export GIT_CEILING_DIRECTORIES &&
810 cd non/git &&
811 test_must_fail git grep o &&
812 git grep --no-index --exclude-standard o >../actual.full &&
813 test_cmp ../expect.full ../actual.full &&
814
815 {
1f5101ae 816 echo ".gitignore:.*o*" &&
0a93fb8a
JH
817 cat ../expect.full
818 } >../expect.with.ignored &&
819 git grep --no-index --no-exclude o >../actual.full &&
820 test_cmp ../expect.with.ignored ../actual.full
59332d13
JH
821 )
822'
823
ecd9ba61
TG
824test_expect_success 'outside of git repository with fallbackToNoIndex' '
825 rm -fr non &&
826 mkdir -p non/git/sub &&
827 echo hello >non/git/file1 &&
828 echo world >non/git/sub/file2 &&
829 cat <<-\EOF >non/expect.full &&
830 file1:hello
831 sub/file2:world
832 EOF
833 echo file2:world >non/expect.sub &&
834 (
835 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
836 export GIT_CEILING_DIRECTORIES &&
837 cd non/git &&
838 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
839 git -c grep.fallbackToNoIndex=true grep o >../actual.full &&
840 test_cmp ../expect.full ../actual.full &&
841 cd sub &&
842 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
843 git -c grep.fallbackToNoIndex=true grep o >../../actual.sub &&
844 test_cmp ../../expect.sub ../../actual.sub
845 ) &&
846
847 echo ".*o*" >non/git/.gitignore &&
848 (
849 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
850 export GIT_CEILING_DIRECTORIES &&
851 cd non/git &&
852 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
853 git -c grep.fallbackToNoIndex=true grep --exclude-standard o >../actual.full &&
854 test_cmp ../expect.full ../actual.full &&
855
856 {
857 echo ".gitignore:.*o*" &&
858 cat ../expect.full
859 } >../expect.with.ignored &&
860 git -c grep.fallbackToNoIndex grep --no-exclude o >../actual.full &&
861 test_cmp ../expect.with.ignored ../actual.full
862 )
863'
864
59332d13
JH
865test_expect_success 'inside git repository but with --no-index' '
866 rm -fr is &&
867 mkdir -p is/git/sub &&
868 echo hello >is/git/file1 &&
869 echo world >is/git/sub/file2 &&
870 echo ".*o*" >is/git/.gitignore &&
871 {
872 echo file1:hello &&
873 echo sub/file2:world
0a93fb8a
JH
874 } >is/expect.unignored &&
875 {
876 echo ".gitignore:.*o*" &&
877 cat is/expect.unignored
59332d13
JH
878 } >is/expect.full &&
879 : >is/expect.empty &&
a48fcd83 880 echo file2:world >is/expect.sub &&
59332d13
JH
881 (
882 cd is/git &&
883 git init &&
884 test_must_fail git grep o >../actual.full &&
885 test_cmp ../expect.empty ../actual.full &&
0a93fb8a
JH
886
887 git grep --untracked o >../actual.unignored &&
888 test_cmp ../expect.unignored ../actual.unignored &&
889
59332d13
JH
890 git grep --no-index o >../actual.full &&
891 test_cmp ../expect.full ../actual.full &&
0a93fb8a
JH
892
893 git grep --no-index --exclude-standard o >../actual.unignored &&
894 test_cmp ../expect.unignored ../actual.unignored &&
895
59332d13
JH
896 cd sub &&
897 test_must_fail git grep o >../../actual.sub &&
898 test_cmp ../../expect.empty ../../actual.sub &&
0a93fb8a 899
59332d13 900 git grep --no-index o >../../actual.sub &&
0a93fb8a
JH
901 test_cmp ../../expect.sub ../../actual.sub &&
902
903 git grep --untracked o >../../actual.sub &&
59332d13
JH
904 test_cmp ../../expect.sub ../../actual.sub
905 )
906'
907
1123c67c
JK
908test_expect_success 'setup double-dash tests' '
909cat >double-dash <<EOF &&
910--
911->
912other
913EOF
914git add double-dash
915'
916
917cat >expected <<EOF
918double-dash:->
919EOF
920test_expect_success 'grep -- pattern' '
921 git grep -- "->" >actual &&
922 test_cmp expected actual
923'
924test_expect_success 'grep -- pattern -- pathspec' '
925 git grep -- "->" -- double-dash >actual &&
926 test_cmp expected actual
927'
928test_expect_success 'grep -e pattern -- path' '
929 git grep -e "->" -- double-dash >actual &&
930 test_cmp expected actual
931'
932
933cat >expected <<EOF
934double-dash:--
935EOF
936test_expect_success 'grep -e -- -- path' '
937 git grep -e -- -- double-dash >actual &&
938 test_cmp expected actual
939'
940
8f852ce6
MK
941cat >expected <<EOF
942hello.c:int main(int argc, const char **argv)
943hello.c: printf("Hello world.\n");
944EOF
945
946test_expect_success LIBPCRE 'grep --perl-regexp pattern' '
947 git grep --perl-regexp "\p{Ps}.*?\p{Pe}" hello.c >actual &&
948 test_cmp expected actual
949'
950
951test_expect_success LIBPCRE 'grep -P pattern' '
952 git grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
953 test_cmp expected actual
954'
955
f556e4af 956test_expect_success 'grep pattern with grep.extendedRegexp=true' '
d0042abe 957 >empty &&
f556e4af
MK
958 test_must_fail git -c grep.extendedregexp=true \
959 grep "\p{Ps}.*?\p{Pe}" hello.c >actual &&
960 test_cmp empty actual
961'
962
963test_expect_success LIBPCRE 'grep -P pattern with grep.extendedRegexp=true' '
964 git -c grep.extendedregexp=true \
965 grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
966 test_cmp expected actual
967'
968
969test_expect_success LIBPCRE 'grep -P -v pattern' '
970 {
d0042abe
MK
971 echo "ab:a+b*c"
972 echo "ab:a+bc"
f556e4af 973 } >expected &&
d0042abe 974 git grep -P -v "abc" ab >actual &&
f556e4af
MK
975 test_cmp expected actual
976'
977
8f852ce6 978test_expect_success LIBPCRE 'grep -P -i pattern' '
93d5e0c2
JH
979 cat >expected <<-EOF &&
980 hello.c: printf("Hello world.\n");
981 EOF
8f852ce6
MK
982 git grep -P -i "PRINTF\([^\d]+\)" hello.c >actual &&
983 test_cmp expected actual
984'
985
986test_expect_success LIBPCRE 'grep -P -w pattern' '
987 {
988 echo "hello_world:Hello world"
989 echo "hello_world:HeLLo world"
990 } >expected &&
991 git grep -P -w "He((?i)ll)o" hello_world >actual &&
992 test_cmp expected actual
993'
994
f556e4af
MK
995test_expect_success 'grep -G invalidpattern properly dies ' '
996 test_must_fail git grep -G "a["
997'
998
84befcd0
S
999test_expect_success 'grep invalidpattern properly dies with grep.patternType=basic' '
1000 test_must_fail git -c grep.patterntype=basic grep "a["
1001'
1002
f556e4af
MK
1003test_expect_success 'grep -E invalidpattern properly dies ' '
1004 test_must_fail git grep -E "a["
1005'
1006
84befcd0
S
1007test_expect_success 'grep invalidpattern properly dies with grep.patternType=extended' '
1008 test_must_fail git -c grep.patterntype=extended grep "a["
1009'
1010
f556e4af
MK
1011test_expect_success LIBPCRE 'grep -P invalidpattern properly dies ' '
1012 test_must_fail git grep -P "a["
1013'
1014
84befcd0
S
1015test_expect_success LIBPCRE 'grep invalidpattern properly dies with grep.patternType=perl' '
1016 test_must_fail git -c grep.patterntype=perl grep "a["
1017'
1018
d0042abe
MK
1019test_expect_success 'grep -G -E -F pattern' '
1020 echo "ab:a+b*c" >expected &&
1021 git grep -G -E -F "a+b*c" ab >actual &&
f556e4af
MK
1022 test_cmp expected actual
1023'
1024
84befcd0
S
1025test_expect_success 'grep pattern with grep.patternType=basic, =extended, =fixed' '
1026 echo "ab:a+b*c" >expected &&
1027 git \
1028 -c grep.patterntype=basic \
1029 -c grep.patterntype=extended \
1030 -c grep.patterntype=fixed \
1031 grep "a+b*c" ab >actual &&
1032 test_cmp expected actual
1033'
1034
f556e4af 1035test_expect_success 'grep -E -F -G pattern' '
d0042abe
MK
1036 echo "ab:a+bc" >expected &&
1037 git grep -E -F -G "a+b*c" ab >actual &&
f556e4af
MK
1038 test_cmp expected actual
1039'
1040
84befcd0
S
1041test_expect_success 'grep pattern with grep.patternType=extended, =fixed, =basic' '
1042 echo "ab:a+bc" >expected &&
1043 git \
1044 -c grep.patterntype=extended \
1045 -c grep.patterntype=fixed \
1046 -c grep.patterntype=basic \
1047 grep "a+b*c" ab >actual &&
1048 test_cmp expected actual
1049'
1050
d0042abe
MK
1051test_expect_success 'grep -F -G -E pattern' '
1052 echo "ab:abc" >expected &&
1053 git grep -F -G -E "a+b*c" ab >actual &&
f556e4af
MK
1054 test_cmp expected actual
1055'
1056
84befcd0
S
1057test_expect_success 'grep pattern with grep.patternType=fixed, =basic, =extended' '
1058 echo "ab:abc" >expected &&
1059 git \
1060 -c grep.patterntype=fixed \
1061 -c grep.patterntype=basic \
1062 -c grep.patterntype=extended \
1063 grep "a+b*c" ab >actual &&
1064 test_cmp expected actual
1065'
1066
d0042abe
MK
1067test_expect_success 'grep -G -F -P -E pattern' '
1068 >empty &&
1069 test_must_fail git grep -G -F -P -E "a\x{2b}b\x{2a}c" ab >actual &&
1070 test_cmp empty actual
f556e4af
MK
1071'
1072
84befcd0
S
1073test_expect_success 'grep pattern with grep.patternType=fixed, =basic, =perl, =extended' '
1074 >empty &&
1075 test_must_fail git \
1076 -c grep.patterntype=fixed \
1077 -c grep.patterntype=basic \
1078 -c grep.patterntype=perl \
1079 -c grep.patterntype=extended \
1080 grep "a\x{2b}b\x{2a}c" ab >actual &&
1081 test_cmp empty actual
1082'
1083
d0042abe
MK
1084test_expect_success LIBPCRE 'grep -G -F -E -P pattern' '
1085 echo "ab:a+b*c" >expected &&
1086 git grep -G -F -E -P "a\x{2b}b\x{2a}c" ab >actual &&
f556e4af
MK
1087 test_cmp expected actual
1088'
1089
84befcd0
S
1090test_expect_success LIBPCRE 'grep pattern with grep.patternType=fixed, =basic, =extended, =perl' '
1091 echo "ab:a+b*c" >expected &&
1092 git \
1093 -c grep.patterntype=fixed \
1094 -c grep.patterntype=basic \
1095 -c grep.patterntype=extended \
1096 -c grep.patterntype=perl \
1097 grep "a\x{2b}b\x{2a}c" ab >actual &&
1098 test_cmp expected actual
1099'
1100
1101test_expect_success LIBPCRE 'grep -P pattern with grep.patternType=fixed' '
1102 echo "ab:a+b*c" >expected &&
1103 git \
1104 -c grep.patterntype=fixed \
1105 grep -P "a\x{2b}b\x{2a}c" ab >actual &&
1106 test_cmp expected actual
1107'
1108
1109test_expect_success 'grep -F pattern with grep.patternType=basic' '
1110 echo "ab:a+b*c" >expected &&
1111 git \
1112 -c grep.patterntype=basic \
1113 grep -F "*c" ab >actual &&
1114 test_cmp expected actual
1115'
1116
1117test_expect_success 'grep -G pattern with grep.patternType=fixed' '
1118 {
1119 echo "ab:a+b*c"
1120 echo "ab:a+bc"
1121 } >expected &&
1122 git \
1123 -c grep.patterntype=fixed \
1124 grep -G "a+b" ab >actual &&
1125 test_cmp expected actual
1126'
1127
1128test_expect_success 'grep -E pattern with grep.patternType=fixed' '
1129 {
1130 echo "ab:a+b*c"
1131 echo "ab:a+bc"
1132 echo "ab:abc"
1133 } >expected &&
1134 git \
1135 -c grep.patterntype=fixed \
1136 grep -E "a+" ab >actual &&
1137 test_cmp expected actual
1138'
1139
08303c36
RS
1140cat >expected <<EOF
1141hello.c<RED>:<RESET>int main(int argc, const char **argv)
1142hello.c<RED>-<RESET>{
1143<RED>--<RESET>
1144hello.c<RED>:<RESET> /* char ?? */
1145hello.c<RED>-<RESET>}
1146<RED>--<RESET>
1147hello_world<RED>:<RESET>Hello_world
1148hello_world<RED>-<RESET>HeLLo_world
1149EOF
1150
1151test_expect_success 'grep --color, separator' '
1152 test_config color.grep.context normal &&
1153 test_config color.grep.filename normal &&
1154 test_config color.grep.function normal &&
1155 test_config color.grep.linenumber normal &&
1156 test_config color.grep.match normal &&
1157 test_config color.grep.selected normal &&
1158 test_config color.grep.separator red &&
1159
1160 git grep --color=always -A1 -e char -e lo_w hello.c hello_world |
1161 test_decode_color >actual &&
1162 test_cmp expected actual
1163'
1164
a8f0e764
RS
1165cat >expected <<EOF
1166hello.c:int main(int argc, const char **argv)
1167hello.c: /* char ?? */
1168
1169hello_world:Hello_world
1170EOF
1171
1172test_expect_success 'grep --break' '
1173 git grep --break -e char -e lo_w hello.c hello_world >actual &&
1174 test_cmp expected actual
1175'
1176
1177cat >expected <<EOF
1178hello.c:int main(int argc, const char **argv)
1179hello.c-{
1180--
1181hello.c: /* char ?? */
1182hello.c-}
1183
1184hello_world:Hello_world
1185hello_world-HeLLo_world
1186EOF
1187
1188test_expect_success 'grep --break with context' '
1189 git grep --break -A1 -e char -e lo_w hello.c hello_world >actual &&
1190 test_cmp expected actual
1191'
1192
1d84f72e
RS
1193cat >expected <<EOF
1194hello.c
1195int main(int argc, const char **argv)
1196 /* char ?? */
1197hello_world
1198Hello_world
1199EOF
1200
1201test_expect_success 'grep --heading' '
1202 git grep --heading -e char -e lo_w hello.c hello_world >actual &&
1203 test_cmp expected actual
1204'
1205
1206cat >expected <<EOF
1207<BOLD;GREEN>hello.c<RESET>
12082:int main(int argc, const <BLACK;BYELLOW>char<RESET> **argv)
12096: /* <BLACK;BYELLOW>char<RESET> ?? */
1210
1211<BOLD;GREEN>hello_world<RESET>
12123:Hel<BLACK;BYELLOW>lo_w<RESET>orld
1213EOF
1214
1215test_expect_success 'mimic ack-grep --group' '
1216 test_config color.grep.context normal &&
1217 test_config color.grep.filename "bold green" &&
1218 test_config color.grep.function normal &&
1219 test_config color.grep.linenumber normal &&
1220 test_config color.grep.match "black yellow" &&
1221 test_config color.grep.selected normal &&
1222 test_config color.grep.separator normal &&
1223
1224 git grep --break --heading -n --color \
1225 -e char -e lo_w hello.c hello_world |
1226 test_decode_color >actual &&
1227 test_cmp expected actual
1228'
1229
d29d787c
MK
1230cat >expected <<EOF
1231space: line with leading space1
1232space: line with leading space2
1233space: line with leading space3
1234EOF
1235
1236test_expect_success LIBPCRE 'grep -E "^ "' '
1237 git grep -E "^ " space >actual &&
1238 test_cmp expected actual
1239'
1240
1241test_expect_success LIBPCRE 'grep -P "^ "' '
1242 git grep -P "^ " space >actual &&
1243 test_cmp expected actual
1244'
1245
79a77109
RS
1246cat >expected <<EOF
1247space-line without leading space1
1248space: line <RED>with <RESET>leading space1
1249space: line <RED>with <RESET>leading <RED>space2<RESET>
1250space: line <RED>with <RESET>leading space3
1251space:line without leading <RED>space2<RESET>
1252EOF
1253
1254test_expect_success 'grep --color -e A -e B with context' '
1255 test_config color.grep.context normal &&
1256 test_config color.grep.filename normal &&
1257 test_config color.grep.function normal &&
1258 test_config color.grep.linenumber normal &&
1259 test_config color.grep.matchContext normal &&
1260 test_config color.grep.matchSelected red &&
1261 test_config color.grep.selected normal &&
1262 test_config color.grep.separator normal &&
1263
1264 git grep --color=always -C2 -e "with " -e space2 space |
1265 test_decode_color >actual &&
1266 test_cmp expected actual
1267'
1268
1269cat >expected <<EOF
1270space-line without leading space1
1271space- line with leading space1
1272space: line <RED>with <RESET>leading <RED>space2<RESET>
1273space- line with leading space3
1274space-line without leading space2
1275EOF
1276
1277test_expect_success 'grep --color -e A --and -e B with context' '
1278 test_config color.grep.context normal &&
1279 test_config color.grep.filename normal &&
1280 test_config color.grep.function normal &&
1281 test_config color.grep.linenumber normal &&
1282 test_config color.grep.matchContext normal &&
1283 test_config color.grep.matchSelected red &&
1284 test_config color.grep.selected normal &&
1285 test_config color.grep.separator normal &&
1286
1287 git grep --color=always -C2 -e "with " --and -e space2 space |
1288 test_decode_color >actual &&
1289 test_cmp expected actual
1290'
1291
1292cat >expected <<EOF
1293space-line without leading space1
1294space: line <RED>with <RESET>leading space1
1295space- line with leading space2
1296space: line <RED>with <RESET>leading space3
1297space-line without leading space2
1298EOF
1299
1300test_expect_success 'grep --color -e A --and --not -e B with context' '
1301 test_config color.grep.context normal &&
1302 test_config color.grep.filename normal &&
1303 test_config color.grep.function normal &&
1304 test_config color.grep.linenumber normal &&
1305 test_config color.grep.matchContext normal &&
1306 test_config color.grep.matchSelected red &&
1307 test_config color.grep.selected normal &&
1308 test_config color.grep.separator normal &&
1309
1310 git grep --color=always -C2 -e "with " --and --not -e space2 space |
1311 test_decode_color >actual &&
1312 test_cmp expected actual
1313'
1314
1315cat >expected <<EOF
1316hello.c-#include <stdio.h>
1317hello.c=int main(int argc, const char **argv)
1318hello.c-{
1319hello.c: pr<RED>int<RESET>f("<RED>Hello<RESET> world.\n");
1320hello.c- return 0;
1321hello.c- /* char ?? */
1322hello.c-}
1323EOF
1324
1325test_expect_success 'grep --color -e A --and -e B -p with context' '
1326 test_config color.grep.context normal &&
1327 test_config color.grep.filename normal &&
1328 test_config color.grep.function normal &&
1329 test_config color.grep.linenumber normal &&
1330 test_config color.grep.matchContext normal &&
1331 test_config color.grep.matchSelected red &&
1332 test_config color.grep.selected normal &&
1333 test_config color.grep.separator normal &&
1334
1335 git grep --color=always -p -C3 -e int --and -e Hello --no-index hello.c |
1336 test_decode_color >actual &&
1337 test_cmp expected actual
1338'
1339
f25b7939 1340test_done