Start the 2.46 cycle
[git/gitster.git] / t / t7810-grep.sh
blob875dcfd98f3a0eb5e47b7f32b15da43b27a50577
1 #!/bin/sh
3 # Copyright (c) 2006 Junio C Hamano
6 test_description='git grep various.
9 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
10 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
12 . ./test-lib.sh
14 test_invalid_grep_expression() {
15 params="$@" &&
16 test_expect_success "invalid expression: grep $params" '
17 test_must_fail git grep $params -- nonexisting
21 LC_ALL=en_US.UTF-8 test-tool regex '^.$' '¿' &&
22 test_set_prereq MB_REGEX
24 cat >hello.c <<EOF
25 #include <assert.h>
26 #include <stdio.h>
28 int main(int argc, const char **argv)
30 printf("Hello world.\n");
31 return 0;
32 /* char ?? */
34 EOF
36 test_expect_success setup '
37 cat >file <<-\EOF &&
38 foo mmap bar
39 foo_mmap bar
40 foo_mmap bar mmap
41 foo mmap bar_mmap
42 foo_mmap bar mmap baz
43 EOF
44 cat >hello_world <<-\EOF &&
45 Hello world
46 HeLLo world
47 Hello_world
48 HeLLo_world
49 EOF
50 cat >ab <<-\EOF &&
51 a+b*c
52 a+bc
53 abc
54 EOF
55 cat >d0 <<-\EOF &&
58 EOF
59 echo vvv >v &&
60 echo ww w >w &&
61 echo x x xx x >x &&
62 echo y yy >y &&
63 echo zzz > z &&
64 mkdir t &&
65 echo test >t/t &&
66 echo vvv >t/v &&
67 mkdir t/a &&
68 echo vvv >t/a/v &&
69 qz_to_tab_space >space <<-\EOF &&
70 line without leading space1
71 Zline with leading space1
72 Zline with leading space2
73 Zline with leading space3
74 line without leading space2
75 EOF
76 cat >hello.ps1 <<-\EOF &&
77 # No-op.
78 function dummy() {}
80 # Say hello.
81 function hello() {
82 echo "Hello world."
83 echo "Hello again."
84 } # hello
86 # Still a no-op.
87 function dummy() {}
88 EOF
89 if test_have_prereq FUNNYNAMES
90 then
91 echo unusual >"\"unusual\" pathname" &&
92 echo unusual >"t/nested \"unusual\" pathname"
93 fi &&
94 if test_have_prereq MB_REGEX
95 then
96 echo "¿" >reverse-question-mark
97 fi &&
98 git add . &&
99 test_tick &&
100 git commit -m initial
103 test_expect_success 'grep should not segfault with a bad input' '
104 test_must_fail git grep "("
107 test_invalid_grep_expression --and -e A
109 test_pattern_type () {
110 H=$1 &&
111 HC=$2 &&
112 L=$3 &&
113 type=$4 &&
114 shift 4 &&
116 expected_str= &&
117 case "$type" in
118 BRE)
119 expected_str="${HC}ab:a+bc"
121 ERE)
122 expected_str="${HC}ab:abc"
124 FIX)
125 expected_str="${HC}ab:a+b*c"
128 BUG "unknown pattern type '$type'"
130 esac &&
131 config_str="$@" &&
133 test_expect_success "grep $L with '$config_str' interpreted as $type" '
134 echo $expected_str >expected &&
135 git $config_str grep "a+b*c" $H ab >actual &&
136 test_cmp expected actual
140 for H in HEAD ''
142 case "$H" in
143 HEAD) HC='HEAD:' L='HEAD' ;;
144 '') HC= L='in working tree' ;;
145 esac
147 test_expect_success "grep -w $L" '
148 cat >expected <<-EOF &&
149 ${HC}file:1:foo mmap bar
150 ${HC}file:3:foo_mmap bar mmap
151 ${HC}file:4:foo mmap bar_mmap
152 ${HC}file:5:foo_mmap bar mmap baz
154 git -c grep.linenumber=false grep -n -w -e mmap $H >actual &&
155 test_cmp expected actual
158 test_expect_success "grep -w $L (with --column)" '
159 cat >expected <<-EOF &&
160 ${HC}file:5:foo mmap bar
161 ${HC}file:14:foo_mmap bar mmap
162 ${HC}file:5:foo mmap bar_mmap
163 ${HC}file:14:foo_mmap bar mmap baz
165 git grep --column -w -e mmap $H >actual &&
166 test_cmp expected actual
169 test_expect_success "grep -w $L (with --column, extended OR)" '
170 cat >expected <<-EOF &&
171 ${HC}file:14:foo_mmap bar mmap
172 ${HC}file:19:foo_mmap bar mmap baz
174 git grep --column -w -e mmap$ --or -e baz $H >actual &&
175 test_cmp expected actual
178 test_expect_success "grep -w $L (with --column, --invert-match)" '
179 cat >expected <<-EOF &&
180 ${HC}file:1:foo mmap bar
181 ${HC}file:1:foo_mmap bar
182 ${HC}file:1:foo_mmap bar mmap
183 ${HC}file:1:foo mmap bar_mmap
185 git grep --column --invert-match -w -e baz $H -- file >actual &&
186 test_cmp expected actual
189 test_expect_success "grep $L (with --column, --invert-match, extended OR)" '
190 cat >expected <<-EOF &&
191 ${HC}hello_world:6:HeLLo_world
193 git grep --column --invert-match -e ll --or --not -e _ $H -- hello_world \
194 >actual &&
195 test_cmp expected actual
198 test_expect_success "grep $L (with --column, --invert-match, extended AND)" '
199 cat >expected <<-EOF &&
200 ${HC}hello_world:3:Hello world
201 ${HC}hello_world:3:Hello_world
202 ${HC}hello_world:6:HeLLo_world
204 git grep --column --invert-match --not -e _ --and --not -e ll $H -- hello_world \
205 >actual &&
206 test_cmp expected actual
209 test_expect_success "grep $L (with --column, double-negation)" '
210 cat >expected <<-EOF &&
211 ${HC}file:1:foo_mmap bar mmap baz
213 git grep --column --not \( --not -e foo --or --not -e baz \) $H -- file \
214 >actual &&
215 test_cmp expected actual
218 test_expect_success "grep -w $L (with --column, -C)" '
219 cat >expected <<-EOF &&
220 ${HC}file:5:foo mmap bar
221 ${HC}file-foo_mmap bar
222 ${HC}file:14:foo_mmap bar mmap
223 ${HC}file:5:foo mmap bar_mmap
224 ${HC}file:14:foo_mmap bar mmap baz
226 git grep --column -w -C1 -e mmap $H >actual &&
227 test_cmp expected actual
230 test_expect_success "grep -w $L (with --line-number, --column)" '
231 cat >expected <<-EOF &&
232 ${HC}file:1:5:foo mmap bar
233 ${HC}file:3:14:foo_mmap bar mmap
234 ${HC}file:4:5:foo mmap bar_mmap
235 ${HC}file:5:14:foo_mmap bar mmap baz
237 git grep -n --column -w -e mmap $H >actual &&
238 test_cmp expected actual
241 test_expect_success "grep -w $L (with non-extended patterns, --column)" '
242 cat >expected <<-EOF &&
243 ${HC}file:5:foo mmap bar
244 ${HC}file:10:foo_mmap bar
245 ${HC}file:10:foo_mmap bar mmap
246 ${HC}file:5:foo mmap bar_mmap
247 ${HC}file:10:foo_mmap bar mmap baz
249 git grep --column -w -e bar -e mmap $H >actual &&
250 test_cmp expected actual
253 test_expect_success "grep -w $L" '
254 cat >expected <<-EOF &&
255 ${HC}file:1:foo mmap bar
256 ${HC}file:3:foo_mmap bar mmap
257 ${HC}file:4:foo mmap bar_mmap
258 ${HC}file:5:foo_mmap bar mmap baz
260 git -c grep.linenumber=true grep -w -e mmap $H >actual &&
261 test_cmp expected actual
264 test_expect_success "grep -w $L" '
265 cat >expected <<-EOF &&
266 ${HC}file:foo mmap bar
267 ${HC}file:foo_mmap bar mmap
268 ${HC}file:foo mmap bar_mmap
269 ${HC}file:foo_mmap bar mmap baz
271 git -c grep.linenumber=true grep --no-line-number -w -e mmap $H >actual &&
272 test_cmp expected actual
275 test_expect_success "grep -w $L (w)" '
276 test_must_fail git grep -n -w -e "^w" $H >actual &&
277 test_must_be_empty actual
280 test_expect_success "grep -w $L (x)" '
281 cat >expected <<-EOF &&
282 ${HC}x:1:x x xx x
284 git grep -n -w -e "x xx* x" $H >actual &&
285 test_cmp expected actual
288 test_expect_success "grep -w $L (y-1)" '
289 cat >expected <<-EOF &&
290 ${HC}y:1:y yy
292 git grep -n -w -e "^y" $H >actual &&
293 test_cmp expected actual
296 test_expect_success "grep -w $L (y-2)" '
297 if git grep -n -w -e "^y y" $H >actual
298 then
299 echo should not have matched
300 cat actual
301 false
302 else
303 test_must_be_empty actual
307 test_expect_success "grep -w $L (z)" '
308 if git grep -n -w -e "^z" $H >actual
309 then
310 echo should not have matched
311 cat actual
312 false
313 else
314 test_must_be_empty actual
318 test_expect_success "grep $L (with --column, --only-matching)" '
319 cat >expected <<-EOF &&
320 ${HC}file:1:5:mmap
321 ${HC}file:2:5:mmap
322 ${HC}file:3:5:mmap
323 ${HC}file:3:13:mmap
324 ${HC}file:4:5:mmap
325 ${HC}file:4:13:mmap
326 ${HC}file:5:5:mmap
327 ${HC}file:5:13:mmap
329 git grep --column -n -o -e mmap $H >actual &&
330 test_cmp expected actual
333 test_expect_success "grep $L (t-1)" '
334 echo "${HC}t/t:1:test" >expected &&
335 git grep -n -e test $H >actual &&
336 test_cmp expected actual
339 test_expect_success "grep $L (t-2)" '
340 echo "${HC}t:1:test" >expected &&
342 cd t &&
343 git grep -n -e test $H
344 ) >actual &&
345 test_cmp expected actual
348 test_expect_success "grep $L (t-3)" '
349 echo "${HC}t/t:1:test" >expected &&
351 cd t &&
352 git grep --full-name -n -e test $H
353 ) >actual &&
354 test_cmp expected actual
357 test_expect_success "grep -c $L (no /dev/null)" '
358 ! git grep -c test $H | grep /dev/null
361 test_expect_success "grep --max-depth -1 $L" '
362 cat >expected <<-EOF &&
363 ${HC}t/a/v:1:vvv
364 ${HC}t/v:1:vvv
365 ${HC}v:1:vvv
367 git grep --max-depth -1 -n -e vvv $H >actual &&
368 test_cmp expected actual &&
369 git grep --recursive -n -e vvv $H >actual &&
370 test_cmp expected actual
373 test_expect_success "grep --max-depth 0 $L" '
374 cat >expected <<-EOF &&
375 ${HC}v:1:vvv
377 git grep --max-depth 0 -n -e vvv $H >actual &&
378 test_cmp expected actual &&
379 git grep --no-recursive -n -e vvv $H >actual &&
380 test_cmp expected actual
383 test_expect_success "grep --max-depth 0 -- '*' $L" '
384 cat >expected <<-EOF &&
385 ${HC}t/a/v:1:vvv
386 ${HC}t/v:1:vvv
387 ${HC}v:1:vvv
389 git grep --max-depth 0 -n -e vvv $H -- "*" >actual &&
390 test_cmp expected actual &&
391 git grep --no-recursive -n -e vvv $H -- "*" >actual &&
392 test_cmp expected actual
395 test_expect_success "grep --max-depth 1 $L" '
396 cat >expected <<-EOF &&
397 ${HC}t/v:1:vvv
398 ${HC}v:1:vvv
400 git grep --max-depth 1 -n -e vvv $H >actual &&
401 test_cmp expected actual
404 test_expect_success "grep --max-depth 0 -- t $L" '
405 cat >expected <<-EOF &&
406 ${HC}t/v:1:vvv
408 git grep --max-depth 0 -n -e vvv $H -- t >actual &&
409 test_cmp expected actual &&
410 git grep --no-recursive -n -e vvv $H -- t >actual &&
411 test_cmp expected actual
414 test_expect_success "grep --max-depth 0 -- . t $L" '
415 cat >expected <<-EOF &&
416 ${HC}t/v:1:vvv
417 ${HC}v:1:vvv
419 git grep --max-depth 0 -n -e vvv $H -- . t >actual &&
420 test_cmp expected actual &&
421 git grep --no-recursive -n -e vvv $H -- . t >actual &&
422 test_cmp expected actual
425 test_expect_success "grep --max-depth 0 -- t . $L" '
426 cat >expected <<-EOF &&
427 ${HC}t/v:1:vvv
428 ${HC}v:1:vvv
430 git grep --max-depth 0 -n -e vvv $H -- t . >actual &&
431 test_cmp expected actual &&
432 git grep --no-recursive -n -e vvv $H -- t . >actual &&
433 test_cmp expected actual
437 test_pattern_type "$H" "$HC" "$L" BRE -c grep.extendedRegexp=false
438 test_pattern_type "$H" "$HC" "$L" ERE -c grep.extendedRegexp=true
439 test_pattern_type "$H" "$HC" "$L" BRE -c grep.patternType=basic
440 test_pattern_type "$H" "$HC" "$L" ERE -c grep.patternType=extended
441 test_pattern_type "$H" "$HC" "$L" FIX -c grep.patternType=fixed
443 test_expect_success PCRE "grep $L with grep.patterntype=perl" '
444 echo "${HC}ab:a+b*c" >expected &&
445 git -c grep.patterntype=perl grep "a\x{2b}b\x{2a}c" $H ab >actual &&
446 test_cmp expected actual
449 test_expect_success !FAIL_PREREQS,!PCRE "grep $L with grep.patterntype=perl errors without PCRE" '
450 test_must_fail git -c grep.patterntype=perl grep "foo.*bar"
453 test_pattern_type "$H" "$HC" "$L" ERE \
454 -c grep.patternType=default \
455 -c grep.extendedRegexp=true
456 test_pattern_type "$H" "$HC" "$L" ERE \
457 -c grep.extendedRegexp=true \
458 -c grep.patternType=default
459 test_pattern_type "$H" "$HC" "$L" ERE \
460 -c grep.patternType=extended \
461 -c grep.extendedRegexp=false
462 test_pattern_type "$H" "$HC" "$L" BRE \
463 -c grep.patternType=basic \
464 -c grep.extendedRegexp=true
465 test_pattern_type "$H" "$HC" "$L" ERE \
466 -c grep.extendedRegexp=false \
467 -c grep.patternType=extended
468 test_pattern_type "$H" "$HC" "$L" BRE \
469 -c grep.extendedRegexp=true \
470 -c grep.patternType=basic
472 # grep.extendedRegexp is last-one-wins
473 test_pattern_type "$H" "$HC" "$L" BRE \
474 -c grep.extendedRegexp=true \
475 -c grep.extendedRegexp=false
477 # grep.patternType=basic pays no attention to grep.extendedRegexp
478 test_pattern_type "$H" "$HC" "$L" BRE \
479 -c grep.extendedRegexp=true \
480 -c grep.patternType=basic \
481 -c grep.extendedRegexp=false
483 # grep.patternType=extended pays no attention to grep.extendedRegexp
484 test_pattern_type "$H" "$HC" "$L" ERE \
485 -c grep.extendedRegexp=true \
486 -c grep.patternType=extended \
487 -c grep.extendedRegexp=false
489 # grep.extendedRegexp is used with a last-one-wins grep.patternType=default
490 test_pattern_type "$H" "$HC" "$L" ERE \
491 -c grep.patternType=fixed \
492 -c grep.extendedRegexp=true \
493 -c grep.patternType=default
495 # grep.extendedRegexp is used with earlier grep.patternType=default
496 test_pattern_type "$H" "$HC" "$L" ERE \
497 -c grep.extendedRegexp=false \
498 -c grep.patternType=default \
499 -c grep.extendedRegexp=true
501 # grep.extendedRegexp is used with a last-one-loses grep.patternType=default
502 test_pattern_type "$H" "$HC" "$L" ERE \
503 -c grep.extendedRegexp=false \
504 -c grep.extendedRegexp=true \
505 -c grep.patternType=default
507 # grep.extendedRegexp and grep.patternType are both last-one-wins independently
508 test_pattern_type "$H" "$HC" "$L" BRE \
509 -c grep.patternType=default \
510 -c grep.extendedRegexp=true \
511 -c grep.patternType=basic
513 # grep.patternType=extended and grep.patternType=default
514 test_pattern_type "$H" "$HC" "$L" BRE \
515 -c grep.patternType=extended \
516 -c grep.patternType=default
518 # grep.patternType=[extended -> default -> fixed] (BRE)" '
519 test_pattern_type "$H" "$HC" "$L" FIX \
520 -c grep.patternType=extended \
521 -c grep.patternType=default \
522 -c grep.patternType=fixed
524 test_expect_success "grep --count $L" '
525 echo ${HC}ab:3 >expected &&
526 git grep --count -e b $H -- ab >actual &&
527 test_cmp expected actual
530 test_expect_success "grep --count -h $L" '
531 echo 3 >expected &&
532 git grep --count -h -e b $H -- ab >actual &&
533 test_cmp expected actual
536 test_expect_success FUNNYNAMES "grep $L should quote unusual pathnames" '
537 cat >expected <<-EOF &&
538 ${HC}"\"unusual\" pathname":unusual
539 ${HC}"t/nested \"unusual\" pathname":unusual
541 git grep unusual $H >actual &&
542 test_cmp expected actual
545 test_expect_success FUNNYNAMES "grep $L in subdir should quote unusual relative pathnames" '
546 cat >expected <<-EOF &&
547 ${HC}"nested \"unusual\" pathname":unusual
550 cd t &&
551 git grep unusual $H
552 ) >actual &&
553 test_cmp expected actual
556 test_expect_success FUNNYNAMES "grep -z $L with unusual pathnames" '
557 cat >expected <<-EOF &&
558 ${HC}"unusual" pathname:unusual
559 ${HC}t/nested "unusual" pathname:unusual
561 git grep -z unusual $H >actual &&
562 tr "\0" ":" <actual >actual-replace-null &&
563 test_cmp expected actual-replace-null
566 test_expect_success FUNNYNAMES "grep -z $L in subdir with unusual relative pathnames" '
567 cat >expected <<-EOF &&
568 ${HC}nested "unusual" pathname:unusual
571 cd t &&
572 git grep -z unusual $H
573 ) >actual &&
574 tr "\0" ":" <actual >actual-replace-null &&
575 test_cmp expected actual-replace-null
577 done
579 test_expect_success MB_REGEX 'grep exactly one char in single-char multibyte file' '
580 LC_ALL=en_US.UTF-8 git grep "^.$" reverse-question-mark
583 test_expect_success MB_REGEX 'grep two chars in single-char multibyte file' '
584 LC_ALL=en_US.UTF-8 test_expect_code 1 git grep ".." reverse-question-mark
587 cat >expected <<EOF
588 file
590 test_expect_success 'grep -l -C' '
591 git grep -l -C1 foo >actual &&
592 test_cmp expected actual
595 cat >expected <<EOF
596 file:5
598 test_expect_success 'grep -c -C' '
599 git grep -c -C1 foo >actual &&
600 test_cmp expected actual
603 test_expect_success 'grep -L -C' '
604 git ls-files >expected &&
605 git grep -L -C1 nonexistent_string >actual &&
606 test_cmp expected actual
609 test_expect_success 'grep --files-without-match --quiet' '
610 git grep --files-without-match --quiet nonexistent_string >actual &&
611 test_must_be_empty actual
614 test_expect_success 'grep --max-count 0 (must exit with non-zero)' '
615 test_must_fail git grep --max-count 0 foo >actual &&
616 test_must_be_empty actual
619 test_expect_success 'grep --max-count 3' '
620 cat >expected <<-EOF &&
621 file:foo mmap bar
622 file:foo_mmap bar
623 file:foo_mmap bar mmap
625 git grep --max-count 3 foo >actual &&
626 test_cmp expected actual
629 test_expect_success 'grep --max-count -1 (no limit)' '
630 cat >expected <<-EOF &&
631 file:foo mmap bar
632 file:foo_mmap bar
633 file:foo_mmap bar mmap
634 file:foo mmap bar_mmap
635 file:foo_mmap bar mmap baz
637 git grep --max-count -1 foo >actual &&
638 test_cmp expected actual
641 test_expect_success 'grep --max-count 1 --context 2' '
642 cat >expected <<-EOF &&
643 file-foo mmap bar
644 file:foo_mmap bar
645 file-foo_mmap bar mmap
647 git grep --max-count 1 --context 1 foo_mmap >actual &&
648 test_cmp expected actual
651 test_expect_success 'grep --max-count 1 --show-function' '
652 cat >expected <<-EOF &&
653 hello.ps1=function hello() {
654 hello.ps1: echo "Hello world."
656 git grep --max-count 1 --show-function Hello hello.ps1 >actual &&
657 test_cmp expected actual
660 test_expect_success 'grep --max-count 2 --show-function' '
661 cat >expected <<-EOF &&
662 hello.ps1=function hello() {
663 hello.ps1: echo "Hello world."
664 hello.ps1: echo "Hello again."
666 git grep --max-count 2 --show-function Hello hello.ps1 >actual &&
667 test_cmp expected actual
670 test_expect_success 'grep --max-count 1 --count' '
671 cat >expected <<-EOF &&
672 hello.ps1:1
674 git grep --max-count 1 --count Hello hello.ps1 >actual &&
675 test_cmp expected actual
678 test_expect_success 'grep --max-count 1 (multiple files)' '
679 cat >expected <<-EOF &&
680 hello.c:#include <stdio.h>
681 hello.ps1:# No-op.
683 git grep --max-count 1 -e o -- hello.\* >actual &&
684 test_cmp expected actual
687 test_expect_success 'grep --max-count 1 --context 1 (multiple files)' '
688 cat >expected <<-EOF &&
689 hello.c-#include <assert.h>
690 hello.c:#include <stdio.h>
691 hello.c-
693 hello.ps1:# No-op.
694 hello.ps1-function dummy() {}
696 git grep --max-count 1 --context 1 -e o -- hello.\* >actual &&
697 test_cmp expected actual
700 cat >expected <<EOF
701 file:foo mmap bar_mmap
704 test_expect_success 'grep -e A --and -e B' '
705 git grep -e "foo mmap" --and -e bar_mmap >actual &&
706 test_cmp expected actual
709 cat >expected <<EOF
710 file:foo_mmap bar mmap
711 file:foo_mmap bar mmap baz
715 test_expect_success 'grep ( -e A --or -e B ) --and -e B' '
716 git grep \( -e foo_ --or -e baz \) \
717 --and -e " mmap" >actual &&
718 test_cmp expected actual
721 cat >expected <<EOF
722 file:foo mmap bar
725 test_expect_success 'grep -e A --and --not -e B' '
726 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
727 test_cmp expected actual
730 test_expect_success 'grep should ignore GREP_OPTIONS' '
731 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
732 test_cmp expected actual
735 test_expect_success 'grep -f, non-existent file' '
736 test_must_fail git grep -f patterns
739 cat >expected <<EOF
740 file:foo mmap bar
741 file:foo_mmap bar
742 file:foo_mmap bar mmap
743 file:foo mmap bar_mmap
744 file:foo_mmap bar mmap baz
747 cat >pattern <<EOF
748 mmap
751 test_expect_success 'grep -f, one pattern' '
752 git grep -f pattern >actual &&
753 test_cmp expected actual
756 cat >expected <<EOF
757 file:foo mmap bar
758 file:foo_mmap bar
759 file:foo_mmap bar mmap
760 file:foo mmap bar_mmap
761 file:foo_mmap bar mmap baz
762 t/a/v:vvv
763 t/v:vvv
764 v:vvv
767 cat >patterns <<EOF
768 mmap
772 test_expect_success 'grep -f, multiple patterns' '
773 git grep -f patterns >actual &&
774 test_cmp expected actual
777 test_expect_success 'grep, multiple patterns' '
778 git grep "$(cat patterns)" >actual &&
779 test_cmp expected actual
782 cat >expected <<EOF
783 file:foo mmap bar
784 file:foo_mmap bar
785 file:foo_mmap bar mmap
786 file:foo mmap bar_mmap
787 file:foo_mmap bar mmap baz
788 t/a/v:vvv
789 t/v:vvv
790 v:vvv
793 cat >patterns <<EOF
795 mmap
801 test_expect_success 'grep -f, ignore empty lines' '
802 git grep -f patterns >actual &&
803 test_cmp expected actual
806 test_expect_success 'grep -f, ignore empty lines, read patterns from stdin' '
807 git grep -f - <patterns >actual &&
808 test_cmp expected actual
811 test_expect_success 'grep -f, use cwd relative file' '
812 test_when_finished "git rm -f sub/dir/file" &&
813 mkdir -p sub/dir &&
814 echo hit >sub/dir/file &&
815 git add sub/dir/file &&
816 echo hit >sub/dir/pattern &&
817 echo miss >pattern &&
819 cd sub/dir && git grep -f pattern file
820 ) &&
821 git -C sub/dir grep -f pattern file
824 cat >expected <<EOF
825 y:y yy
827 z:zzz
830 test_expect_success 'grep -q, silently report matches' '
831 git grep -q mmap >actual &&
832 test_must_be_empty actual &&
833 test_must_fail git grep -q qfwfq >actual &&
834 test_must_be_empty actual
837 test_expect_success 'grep -C1 hunk mark between files' '
838 git grep -C1 "^[yz]" >actual &&
839 test_cmp expected actual
842 test_expect_success 'log grep setup' '
843 test_commit --append --author "With * Asterisk <xyzzy@frotz.com>" second file a &&
844 test_commit --append third file a &&
845 test_commit --append --author "Night Fall <nitfol@frobozz.com>" fourth file a
848 test_expect_success 'log grep (1)' '
849 git log --author=author --pretty=tformat:%s >actual &&
851 echo third && echo initial
852 } >expect &&
853 test_cmp expect actual
856 test_expect_success 'log grep (2)' '
857 git log --author=" * " -F --pretty=tformat:%s >actual &&
859 echo second
860 } >expect &&
861 test_cmp expect actual
864 test_expect_success 'log grep (3)' '
865 git log --author="^A U" --pretty=tformat:%s >actual &&
867 echo third && echo initial
868 } >expect &&
869 test_cmp expect actual
872 test_expect_success 'log grep (4)' '
873 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
875 echo second
876 } >expect &&
877 test_cmp expect actual
880 test_expect_success 'log grep (5)' '
881 git log --author=Thor -F --pretty=tformat:%s >actual &&
883 echo third && echo initial
884 } >expect &&
885 test_cmp expect actual
888 test_expect_success 'log grep (6)' '
889 git log --author=-0700 --pretty=tformat:%s >actual &&
890 test_must_be_empty actual
893 test_expect_success 'log grep (7)' '
894 git log -g --grep-reflog="commit: third" --pretty=tformat:%s >actual &&
895 echo third >expect &&
896 test_cmp expect actual
899 test_expect_success 'log grep (8)' '
900 git log -g --grep-reflog="commit: third" --grep-reflog="commit: second" --pretty=tformat:%s >actual &&
902 echo third && echo second
903 } >expect &&
904 test_cmp expect actual
907 test_expect_success 'log grep (9)' '
908 git log -g --grep-reflog="commit: third" --author="Thor" --pretty=tformat:%s >actual &&
909 echo third >expect &&
910 test_cmp expect actual
913 test_expect_success 'log grep (9)' '
914 git log -g --grep-reflog="commit: third" --author="non-existent" --pretty=tformat:%s >actual &&
915 test_must_be_empty actual
918 test_expect_success 'log --grep-reflog can only be used under -g' '
919 test_must_fail git log --grep-reflog="commit: third"
922 test_expect_success 'log with multiple --grep uses union' '
923 git log --grep=i --grep=r --format=%s >actual &&
925 echo fourth && echo third && echo initial
926 } >expect &&
927 test_cmp expect actual
930 test_expect_success 'log --all-match with multiple --grep uses intersection' '
931 git log --all-match --grep=i --grep=r --format=%s >actual &&
933 echo third
934 } >expect &&
935 test_cmp expect actual
938 test_expect_success 'log with multiple --author uses union' '
939 git log --author="Thor" --author="Aster" --format=%s >actual &&
941 echo third && echo second && echo initial
942 } >expect &&
943 test_cmp expect actual
946 test_expect_success 'log --all-match with multiple --author still uses union' '
947 git log --all-match --author="Thor" --author="Aster" --format=%s >actual &&
949 echo third && echo second && echo initial
950 } >expect &&
951 test_cmp expect actual
954 test_expect_success 'log --grep --author uses intersection' '
955 # grep matches only third and fourth
956 # author matches only initial and third
957 git log --author="A U Thor" --grep=r --format=%s >actual &&
959 echo third
960 } >expect &&
961 test_cmp expect actual
964 test_expect_success 'log --grep --grep --author takes union of greps and intersects with author' '
965 # grep matches initial and second but not third
966 # author matches only initial and third
967 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
969 echo initial
970 } >expect &&
971 test_cmp expect actual
974 test_expect_success 'log ---all-match -grep --author --author still takes union of authors and intersects with grep' '
975 # grep matches only initial and third
976 # author matches all but second
977 git log --all-match --author="Thor" --author="Night" --grep=i --format=%s >actual &&
979 echo third && echo initial
980 } >expect &&
981 test_cmp expect actual
984 test_expect_success 'log --grep --author --author takes union of authors and intersects with grep' '
985 # grep matches only initial and third
986 # author matches all but second
987 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
989 echo third && echo initial
990 } >expect &&
991 test_cmp expect actual
994 test_expect_success 'log --all-match --grep --grep --author takes intersection' '
995 # grep matches only third
996 # author matches only initial and third
997 git log --all-match --author="A U Thor" --grep=i --grep=r --format=%s >actual &&
999 echo third
1000 } >expect &&
1001 test_cmp expect actual
1004 test_expect_success 'log --author does not search in timestamp' '
1005 git log --author="$GIT_AUTHOR_DATE" >actual &&
1006 test_must_be_empty actual
1009 test_expect_success 'log --committer does not search in timestamp' '
1010 git log --committer="$GIT_COMMITTER_DATE" >actual &&
1011 test_must_be_empty actual
1014 test_expect_success 'grep with CE_VALID file' '
1015 git update-index --assume-unchanged t/t &&
1016 rm t/t &&
1017 echo "t/t:test" >expect &&
1018 git grep test >actual &&
1019 test_cmp expect actual &&
1020 git update-index --no-assume-unchanged t/t &&
1021 git checkout t/t
1024 cat >expected <<EOF
1025 hello.c=#include <stdio.h>
1026 hello.c: return 0;
1029 test_expect_success 'grep -p with userdiff' '
1030 git config diff.custom.funcname "^#" &&
1031 echo "hello.c diff=custom" >.gitattributes &&
1032 git grep -p return >actual &&
1033 test_cmp expected actual
1036 cat >expected <<EOF
1037 hello.c=int main(int argc, const char **argv)
1038 hello.c: return 0;
1041 test_expect_success 'grep -p' '
1042 rm -f .gitattributes &&
1043 git grep -p return >actual &&
1044 test_cmp expected actual
1047 cat >expected <<EOF
1048 hello.c-#include <stdio.h>
1049 hello.c-
1050 hello.c=int main(int argc, const char **argv)
1051 hello.c-{
1052 hello.c- printf("Hello world.\n");
1053 hello.c: return 0;
1056 test_expect_success 'grep -p -B5' '
1057 git grep -p -B5 return >actual &&
1058 test_cmp expected actual
1061 cat >expected <<EOF
1062 hello.c=int main(int argc, const char **argv)
1063 hello.c-{
1064 hello.c- printf("Hello world.\n");
1065 hello.c: return 0;
1066 hello.c- /* char ?? */
1067 hello.c-}
1070 test_expect_success 'grep -W' '
1071 git grep -W return >actual &&
1072 test_cmp expected actual
1075 cat >expected <<EOF
1076 hello.c-#include <assert.h>
1077 hello.c:#include <stdio.h>
1080 test_expect_success 'grep -W shows no trailing empty lines' '
1081 git grep -W stdio >actual &&
1082 test_cmp expected actual
1085 test_expect_success 'grep -W with userdiff' '
1086 test_when_finished "rm -f .gitattributes" &&
1087 git config diff.custom.xfuncname "^function .*$" &&
1088 echo "hello.ps1 diff=custom" >.gitattributes &&
1089 git grep -W echo >function-context-userdiff-actual
1092 test_expect_success ' includes preceding comment' '
1093 grep "# Say hello" function-context-userdiff-actual
1096 test_expect_success ' includes function line' '
1097 grep "=function hello" function-context-userdiff-actual
1100 test_expect_success ' includes matching line' '
1101 grep ": echo" function-context-userdiff-actual
1104 test_expect_success ' includes last line of the function' '
1105 grep "} # hello" function-context-userdiff-actual
1108 for threads in $(test_seq 0 10)
1110 test_expect_success "grep --threads=$threads & -c grep.threads=$threads" "
1111 git grep --threads=$threads . >actual.$threads &&
1112 if test $threads -ge 1
1113 then
1114 test_cmp actual.\$(($threads - 1)) actual.$threads
1115 fi &&
1116 git -c grep.threads=$threads grep . >actual.$threads &&
1117 if test $threads -ge 1
1118 then
1119 test_cmp actual.\$(($threads - 1)) actual.$threads
1122 done
1124 test_expect_success !PTHREADS,!FAIL_PREREQS \
1125 'grep --threads=N or pack.threads=N warns when no pthreads' '
1126 git grep --threads=2 Hello hello_world 2>err &&
1127 grep ^warning: err >warnings &&
1128 test_line_count = 1 warnings &&
1129 grep -F "no threads support, ignoring --threads" err &&
1130 git -c grep.threads=2 grep Hello hello_world 2>err &&
1131 grep ^warning: err >warnings &&
1132 test_line_count = 1 warnings &&
1133 grep -F "no threads support, ignoring grep.threads" err &&
1134 git -c grep.threads=2 grep --threads=4 Hello hello_world 2>err &&
1135 grep ^warning: err >warnings &&
1136 test_line_count = 2 warnings &&
1137 grep -F "no threads support, ignoring --threads" err &&
1138 grep -F "no threads support, ignoring grep.threads" err &&
1139 git -c grep.threads=0 grep --threads=0 Hello hello_world 2>err &&
1140 test_line_count = 0 err
1143 test_expect_success 'grep from a subdirectory to search wider area (1)' '
1144 mkdir -p s &&
1146 cd s && git grep "x x x" ..
1150 test_expect_success 'grep from a subdirectory to search wider area (2)' '
1151 mkdir -p s &&
1153 cd s &&
1154 test_expect_code 1 git grep xxyyzz .. >out &&
1155 test_must_be_empty out
1159 cat >expected <<EOF
1160 hello.c:int main(int argc, const char **argv)
1163 test_expect_success 'grep -Fi' '
1164 git grep -Fi "CHAR *" >actual &&
1165 test_cmp expected actual
1168 test_expect_success 'outside of git repository' '
1169 rm -fr non &&
1170 mkdir -p non/git/sub &&
1171 echo hello >non/git/file1 &&
1172 echo world >non/git/sub/file2 &&
1174 echo file1:hello &&
1175 echo sub/file2:world
1176 } >non/expect.full &&
1177 echo file2:world >non/expect.sub &&
1179 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1180 export GIT_CEILING_DIRECTORIES &&
1181 cd non/git &&
1182 test_must_fail git grep o &&
1183 git grep --no-index o >../actual.full &&
1184 test_cmp ../expect.full ../actual.full &&
1185 cd sub &&
1186 test_must_fail git grep o &&
1187 git grep --no-index o >../../actual.sub &&
1188 test_cmp ../../expect.sub ../../actual.sub
1189 ) &&
1191 echo ".*o*" >non/git/.gitignore &&
1193 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1194 export GIT_CEILING_DIRECTORIES &&
1195 cd non/git &&
1196 test_must_fail git grep o &&
1197 git grep --no-index --exclude-standard o >../actual.full &&
1198 test_cmp ../expect.full ../actual.full &&
1201 echo ".gitignore:.*o*" &&
1202 cat ../expect.full
1203 } >../expect.with.ignored &&
1204 git grep --no-index --no-exclude-standard o >../actual.full &&
1205 test_cmp ../expect.with.ignored ../actual.full
1209 test_expect_success 'outside of git repository with fallbackToNoIndex' '
1210 rm -fr non &&
1211 mkdir -p non/git/sub &&
1212 echo hello >non/git/file1 &&
1213 echo world >non/git/sub/file2 &&
1214 cat <<-\EOF >non/expect.full &&
1215 file1:hello
1216 sub/file2:world
1218 echo file2:world >non/expect.sub &&
1220 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1221 export GIT_CEILING_DIRECTORIES &&
1222 cd non/git &&
1223 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
1224 git -c grep.fallbackToNoIndex=true grep o >../actual.full &&
1225 test_cmp ../expect.full ../actual.full &&
1226 cd sub &&
1227 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
1228 git -c grep.fallbackToNoIndex=true grep o >../../actual.sub &&
1229 test_cmp ../../expect.sub ../../actual.sub
1230 ) &&
1232 echo ".*o*" >non/git/.gitignore &&
1234 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1235 export GIT_CEILING_DIRECTORIES &&
1236 cd non/git &&
1237 test_must_fail git -c grep.fallbackToNoIndex=false grep o &&
1238 git -c grep.fallbackToNoIndex=true grep --exclude-standard o >../actual.full &&
1239 test_cmp ../expect.full ../actual.full &&
1242 echo ".gitignore:.*o*" &&
1243 cat ../expect.full
1244 } >../expect.with.ignored &&
1245 git -c grep.fallbackToNoIndex grep --no-exclude-standard o >../actual.full &&
1246 test_cmp ../expect.with.ignored ../actual.full
1250 test_expect_success 'no repository with path outside $cwd' '
1251 test_when_finished rm -fr non &&
1252 rm -fr non &&
1253 mkdir -p non/git/sub non/tig &&
1255 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1256 export GIT_CEILING_DIRECTORIES &&
1257 cd non/git &&
1258 test_expect_code 128 git grep --no-index search .. 2>error &&
1259 grep "is outside the directory tree" error
1260 ) &&
1262 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1263 export GIT_CEILING_DIRECTORIES &&
1264 cd non/git &&
1265 test_expect_code 128 git grep --no-index search ../tig 2>error &&
1266 grep "is outside the directory tree" error
1267 ) &&
1269 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1270 export GIT_CEILING_DIRECTORIES &&
1271 cd non/git &&
1272 test_expect_code 128 git grep --no-index search ../non 2>error &&
1273 grep "no such path in the working tree" error
1277 test_expect_success 'inside git repository but with --no-index' '
1278 rm -fr is &&
1279 mkdir -p is/git/sub &&
1280 echo hello >is/git/file1 &&
1281 echo world >is/git/sub/file2 &&
1282 echo ".*o*" >is/git/.gitignore &&
1284 echo file1:hello &&
1285 echo sub/file2:world
1286 } >is/expect.unignored &&
1288 echo ".gitignore:.*o*" &&
1289 cat is/expect.unignored
1290 } >is/expect.full &&
1291 echo file2:world >is/expect.sub &&
1293 cd is/git &&
1294 git init &&
1295 test_must_fail git grep o >../actual.full &&
1296 test_must_be_empty ../actual.full &&
1298 git grep --untracked o >../actual.unignored &&
1299 test_cmp ../expect.unignored ../actual.unignored &&
1301 git grep --no-index o >../actual.full &&
1302 test_cmp ../expect.full ../actual.full &&
1304 git grep --no-index --exclude-standard o >../actual.unignored &&
1305 test_cmp ../expect.unignored ../actual.unignored &&
1307 cd sub &&
1308 test_must_fail git grep o >../../actual.sub &&
1309 test_must_be_empty ../../actual.sub &&
1311 git grep --no-index o >../../actual.sub &&
1312 test_cmp ../../expect.sub ../../actual.sub &&
1314 git grep --untracked o >../../actual.sub &&
1315 test_cmp ../../expect.sub ../../actual.sub
1319 test_expect_success 'grep --no-index descends into repos, but not .git' '
1320 rm -fr non &&
1321 mkdir -p non/git &&
1323 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1324 export GIT_CEILING_DIRECTORIES &&
1325 cd non/git &&
1327 echo magic >file &&
1328 git init repo &&
1330 cd repo &&
1331 echo magic >file &&
1332 git add file &&
1333 git commit -m foo &&
1334 echo magic >.git/file
1335 ) &&
1337 cat >expect <<-\EOF &&
1338 file
1339 repo/file
1341 git grep -l --no-index magic >actual &&
1342 test_cmp expect actual
1346 test_expect_success 'setup double-dash tests' '
1347 cat >double-dash <<EOF &&
1350 other
1352 git add double-dash
1355 cat >expected <<EOF
1356 double-dash:->
1358 test_expect_success 'grep -- pattern' '
1359 git grep -- "->" >actual &&
1360 test_cmp expected actual
1362 test_expect_success 'grep -- pattern -- pathspec' '
1363 git grep -- "->" -- double-dash >actual &&
1364 test_cmp expected actual
1366 test_expect_success 'grep -e pattern -- path' '
1367 git grep -e "->" -- double-dash >actual &&
1368 test_cmp expected actual
1371 cat >expected <<EOF
1372 double-dash:--
1374 test_expect_success 'grep -e -- -- path' '
1375 git grep -e -- -- double-dash >actual &&
1376 test_cmp expected actual
1379 test_expect_success 'dashdash disambiguates rev as rev' '
1380 test_when_finished "rm -f main" &&
1381 echo content >main &&
1382 echo main:hello.c >expect &&
1383 git grep -l o main -- hello.c >actual &&
1384 test_cmp expect actual
1387 test_expect_success 'dashdash disambiguates pathspec as pathspec' '
1388 test_when_finished "git rm -f main" &&
1389 echo content >main &&
1390 git add main &&
1391 echo main:content >expect &&
1392 git grep o -- main >actual &&
1393 test_cmp expect actual
1396 test_expect_success 'report bogus arg without dashdash' '
1397 test_must_fail git grep o does-not-exist
1400 test_expect_success 'report bogus rev with dashdash' '
1401 test_must_fail git grep o hello.c --
1404 test_expect_success 'allow non-existent path with dashdash' '
1405 # We need a real match so grep exits with success.
1406 tree=$(git ls-tree HEAD |
1407 sed s/hello.c/not-in-working-tree/ |
1408 git mktree) &&
1409 git grep o "$tree" -- not-in-working-tree
1412 test_expect_success 'grep --no-index pattern -- path' '
1413 rm -fr non &&
1414 mkdir -p non/git &&
1416 GIT_CEILING_DIRECTORIES="$(pwd)/non" &&
1417 export GIT_CEILING_DIRECTORIES &&
1418 cd non/git &&
1419 echo hello >hello &&
1420 echo goodbye >goodbye &&
1421 echo hello:hello >expect &&
1422 git grep --no-index o -- hello >actual &&
1423 test_cmp expect actual
1427 test_expect_success 'grep --no-index complains of revs' '
1428 test_must_fail git grep --no-index o main -- 2>err &&
1429 test_grep "cannot be used with revs" err
1432 test_expect_success 'grep --no-index prefers paths to revs' '
1433 test_when_finished "rm -f main" &&
1434 echo content >main &&
1435 echo main:content >expect &&
1436 git grep --no-index o main >actual &&
1437 test_cmp expect actual
1440 test_expect_success 'grep --no-index does not "diagnose" revs' '
1441 test_must_fail git grep --no-index o :1:hello.c 2>err &&
1442 test_grep ! -i "did you mean" err
1445 cat >expected <<EOF
1446 hello.c:int main(int argc, const char **argv)
1447 hello.c: printf("Hello world.\n");
1450 test_expect_success PCRE 'grep --perl-regexp pattern' '
1451 git grep --perl-regexp "\p{Ps}.*?\p{Pe}" hello.c >actual &&
1452 test_cmp expected actual
1455 test_expect_success !FAIL_PREREQS,!PCRE 'grep --perl-regexp pattern errors without PCRE' '
1456 test_must_fail git grep --perl-regexp "foo.*bar"
1459 test_expect_success PCRE 'grep -P pattern' '
1460 git grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
1461 test_cmp expected actual
1464 test_expect_success LIBPCRE2 "grep -P with (*NO_JIT) doesn't error out" '
1465 git grep -P "(*NO_JIT)\p{Ps}.*?\p{Pe}" hello.c >actual &&
1466 test_cmp expected actual
1470 test_expect_success !FAIL_PREREQS,!PCRE 'grep -P pattern errors without PCRE' '
1471 test_must_fail git grep -P "foo.*bar"
1474 test_expect_success 'grep pattern with grep.extendedRegexp=true' '
1475 test_must_fail git -c grep.extendedregexp=true \
1476 grep "\p{Ps}.*?\p{Pe}" hello.c >actual &&
1477 test_must_be_empty actual
1480 test_expect_success PCRE 'grep -P pattern with grep.extendedRegexp=true' '
1481 git -c grep.extendedregexp=true \
1482 grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
1483 test_cmp expected actual
1486 test_expect_success PCRE 'grep -P -v pattern' '
1487 cat >expected <<-\EOF &&
1488 ab:a+b*c
1489 ab:a+bc
1491 git grep -P -v "abc" ab >actual &&
1492 test_cmp expected actual
1495 test_expect_success PCRE 'grep -P -i pattern' '
1496 cat >expected <<-EOF &&
1497 hello.c: printf("Hello world.\n");
1499 git grep -P -i "PRINTF\([^\d]+\)" hello.c >actual &&
1500 test_cmp expected actual
1503 test_expect_success PCRE 'grep -P -w pattern' '
1504 cat >expected <<-\EOF &&
1505 hello_world:Hello world
1506 hello_world:HeLLo world
1508 git grep -P -w "He((?i)ll)o" hello_world >actual &&
1509 test_cmp expected actual
1512 test_expect_success PCRE 'grep -P backreferences work (the PCRE NO_AUTO_CAPTURE flag is not set)' '
1513 git grep -P -h "(?P<one>.)(?P=one)" hello_world >actual &&
1514 test_cmp hello_world actual &&
1515 git grep -P -h "(.)\1" hello_world >actual &&
1516 test_cmp hello_world actual
1519 test_expect_success 'grep -G invalidpattern properly dies ' '
1520 test_must_fail git grep -G "a["
1523 test_expect_success 'grep invalidpattern properly dies with grep.patternType=basic' '
1524 test_must_fail git -c grep.patterntype=basic grep "a["
1527 test_expect_success 'grep -E invalidpattern properly dies ' '
1528 test_must_fail git grep -E "a["
1531 test_expect_success 'grep invalidpattern properly dies with grep.patternType=extended' '
1532 test_must_fail git -c grep.patterntype=extended grep "a["
1535 test_expect_success PCRE 'grep -P invalidpattern properly dies ' '
1536 test_must_fail git grep -P "a["
1539 test_expect_success PCRE 'grep invalidpattern properly dies with grep.patternType=perl' '
1540 test_must_fail git -c grep.patterntype=perl grep "a["
1543 test_expect_success 'grep -G -E -F pattern' '
1544 echo "ab:a+b*c" >expected &&
1545 git grep -G -E -F "a+b*c" ab >actual &&
1546 test_cmp expected actual
1549 test_expect_success 'grep pattern with grep.patternType=basic, =extended, =fixed' '
1550 echo "ab:a+b*c" >expected &&
1551 git \
1552 -c grep.patterntype=basic \
1553 -c grep.patterntype=extended \
1554 -c grep.patterntype=fixed \
1555 grep "a+b*c" ab >actual &&
1556 test_cmp expected actual
1559 test_expect_success 'grep -E -F -G pattern' '
1560 echo "ab:a+bc" >expected &&
1561 git grep -E -F -G "a+b*c" ab >actual &&
1562 test_cmp expected actual
1565 test_expect_success 'grep pattern with grep.patternType=extended, =fixed, =basic' '
1566 echo "ab:a+bc" >expected &&
1567 git \
1568 -c grep.patterntype=extended \
1569 -c grep.patterntype=fixed \
1570 -c grep.patterntype=basic \
1571 grep "a+b*c" ab >actual &&
1572 test_cmp expected actual
1575 test_expect_success 'grep -F -G -E pattern' '
1576 echo "ab:abc" >expected &&
1577 git grep -F -G -E "a+b*c" ab >actual &&
1578 test_cmp expected actual
1581 test_expect_success 'grep pattern with grep.patternType=fixed, =basic, =extended' '
1582 echo "ab:abc" >expected &&
1583 git \
1584 -c grep.patterntype=fixed \
1585 -c grep.patterntype=basic \
1586 -c grep.patterntype=extended \
1587 grep "a+b*c" ab >actual &&
1588 test_cmp expected actual
1591 test_expect_success 'grep -G -F -P -E pattern' '
1592 echo "d0:d" >expected &&
1593 git grep -G -F -P -E "[\d]" d0 >actual &&
1594 test_cmp expected actual
1597 test_expect_success 'grep pattern with grep.patternType=fixed, =basic, =perl, =extended' '
1598 echo "d0:d" >expected &&
1599 git \
1600 -c grep.patterntype=fixed \
1601 -c grep.patterntype=basic \
1602 -c grep.patterntype=perl \
1603 -c grep.patterntype=extended \
1604 grep "[\d]" d0 >actual &&
1605 test_cmp expected actual
1608 test_expect_success PCRE 'grep -G -F -E -P pattern' '
1609 echo "d0:0" >expected &&
1610 git grep -G -F -E -P "[\d]" d0 >actual &&
1611 test_cmp expected actual
1614 test_expect_success PCRE 'grep pattern with grep.patternType=fixed, =basic, =extended, =perl' '
1615 echo "d0:0" >expected &&
1616 git \
1617 -c grep.patterntype=fixed \
1618 -c grep.patterntype=basic \
1619 -c grep.patterntype=extended \
1620 -c grep.patterntype=perl \
1621 grep "[\d]" d0 >actual &&
1622 test_cmp expected actual
1625 test_expect_success PCRE 'grep -P pattern with grep.patternType=fixed' '
1626 echo "ab:a+b*c" >expected &&
1627 git \
1628 -c grep.patterntype=fixed \
1629 grep -P "a\x{2b}b\x{2a}c" ab >actual &&
1630 test_cmp expected actual
1633 test_expect_success 'grep -F pattern with grep.patternType=basic' '
1634 echo "ab:a+b*c" >expected &&
1635 git \
1636 -c grep.patterntype=basic \
1637 grep -F "*c" ab >actual &&
1638 test_cmp expected actual
1641 test_expect_success 'grep -G pattern with grep.patternType=fixed' '
1642 cat >expected <<-\EOF &&
1643 ab:a+b*c
1644 ab:a+bc
1646 git \
1647 -c grep.patterntype=fixed \
1648 grep -G "a+b" ab >actual &&
1649 test_cmp expected actual
1652 test_expect_success 'grep -E pattern with grep.patternType=fixed' '
1653 cat >expected <<-\EOF &&
1654 ab:a+b*c
1655 ab:a+bc
1656 ab:abc
1658 git \
1659 -c grep.patterntype=fixed \
1660 grep -E "a+" ab >actual &&
1661 test_cmp expected actual
1664 cat >expected <<EOF
1665 hello.c<RED>:<RESET>int main(int argc, const char **argv)
1666 hello.c<RED>-<RESET>{
1667 <RED>--<RESET>
1668 hello.c<RED>:<RESET> /* char ?? */
1669 hello.c<RED>-<RESET>}
1670 <RED>--<RESET>
1671 hello_world<RED>:<RESET>Hello_world
1672 hello_world<RED>-<RESET>HeLLo_world
1675 test_expect_success 'grep --color, separator' '
1676 test_config color.grep.context normal &&
1677 test_config color.grep.filename normal &&
1678 test_config color.grep.function normal &&
1679 test_config color.grep.linenumber normal &&
1680 test_config color.grep.match normal &&
1681 test_config color.grep.selected normal &&
1682 test_config color.grep.separator red &&
1684 git grep --color=always -A1 -e char -e lo_w hello.c hello_world |
1685 test_decode_color >actual &&
1686 test_cmp expected actual
1689 cat >expected <<EOF
1690 hello.c:int main(int argc, const char **argv)
1691 hello.c: /* char ?? */
1693 hello_world:Hello_world
1696 test_expect_success 'grep --break' '
1697 git grep --break -e char -e lo_w hello.c hello_world >actual &&
1698 test_cmp expected actual
1701 cat >expected <<EOF
1702 hello.c:int main(int argc, const char **argv)
1703 hello.c-{
1705 hello.c: /* char ?? */
1706 hello.c-}
1708 hello_world:Hello_world
1709 hello_world-HeLLo_world
1712 test_expect_success 'grep --break with context' '
1713 git grep --break -A1 -e char -e lo_w hello.c hello_world >actual &&
1714 test_cmp expected actual
1717 cat >expected <<EOF
1718 hello.c
1719 int main(int argc, const char **argv)
1720 /* char ?? */
1721 hello_world
1722 Hello_world
1725 test_expect_success 'grep --heading' '
1726 git grep --heading -e char -e lo_w hello.c hello_world >actual &&
1727 test_cmp expected actual
1730 cat >expected <<EOF
1731 <BOLD;GREEN>hello.c<RESET>
1732 4:int main(int argc, const <BLACK;BYELLOW>char<RESET> **argv)
1733 8: /* <BLACK;BYELLOW>char<RESET> ?? */
1735 <BOLD;GREEN>hello_world<RESET>
1736 3:Hel<BLACK;BYELLOW>lo_w<RESET>orld
1739 test_expect_success 'mimic ack-grep --group' '
1740 test_config color.grep.context normal &&
1741 test_config color.grep.filename "bold green" &&
1742 test_config color.grep.function normal &&
1743 test_config color.grep.linenumber normal &&
1744 test_config color.grep.match "black yellow" &&
1745 test_config color.grep.selected normal &&
1746 test_config color.grep.separator normal &&
1748 git grep --break --heading -n --color \
1749 -e char -e lo_w hello.c hello_world |
1750 test_decode_color >actual &&
1751 test_cmp expected actual
1754 cat >expected <<EOF
1755 space: line with leading space1
1756 space: line with leading space2
1757 space: line with leading space3
1760 test_expect_success PCRE 'grep -E "^ "' '
1761 git grep -E "^ " space >actual &&
1762 test_cmp expected actual
1765 test_expect_success PCRE 'grep -P "^ "' '
1766 git grep -P "^ " space >actual &&
1767 test_cmp expected actual
1770 cat >expected <<EOF
1771 space-line without leading space1
1772 space: line <RED>with <RESET>leading space1
1773 space: line <RED>with <RESET>leading <RED>space2<RESET>
1774 space: line <RED>with <RESET>leading space3
1775 space:line without leading <RED>space2<RESET>
1778 test_expect_success 'grep --color -e A -e B with context' '
1779 test_config color.grep.context normal &&
1780 test_config color.grep.filename normal &&
1781 test_config color.grep.function normal &&
1782 test_config color.grep.linenumber normal &&
1783 test_config color.grep.matchContext normal &&
1784 test_config color.grep.matchSelected red &&
1785 test_config color.grep.selected normal &&
1786 test_config color.grep.separator normal &&
1788 git grep --color=always -C2 -e "with " -e space2 space |
1789 test_decode_color >actual &&
1790 test_cmp expected actual
1793 cat >expected <<EOF
1794 space-line without leading space1
1795 space- line with leading space1
1796 space: line <RED>with <RESET>leading <RED>space2<RESET>
1797 space- line with leading space3
1798 space-line without leading space2
1801 test_expect_success 'grep --color -e A --and -e B with context' '
1802 test_config color.grep.context normal &&
1803 test_config color.grep.filename normal &&
1804 test_config color.grep.function normal &&
1805 test_config color.grep.linenumber normal &&
1806 test_config color.grep.matchContext normal &&
1807 test_config color.grep.matchSelected red &&
1808 test_config color.grep.selected normal &&
1809 test_config color.grep.separator normal &&
1811 git grep --color=always -C2 -e "with " --and -e space2 space |
1812 test_decode_color >actual &&
1813 test_cmp expected actual
1816 cat >expected <<EOF
1817 space-line without leading space1
1818 space: line <RED>with <RESET>leading space1
1819 space- line with leading space2
1820 space: line <RED>with <RESET>leading space3
1821 space-line without leading space2
1824 test_expect_success 'grep --color -e A --and --not -e B with context' '
1825 test_config color.grep.context normal &&
1826 test_config color.grep.filename normal &&
1827 test_config color.grep.function normal &&
1828 test_config color.grep.linenumber normal &&
1829 test_config color.grep.matchContext normal &&
1830 test_config color.grep.matchSelected red &&
1831 test_config color.grep.selected normal &&
1832 test_config color.grep.separator normal &&
1834 git grep --color=always -C2 -e "with " --and --not -e space2 space |
1835 test_decode_color >actual &&
1836 test_cmp expected actual
1839 cat >expected <<EOF
1840 hello.c-
1841 hello.c=int main(int argc, const char **argv)
1842 hello.c-{
1843 hello.c: pr<RED>int<RESET>f("<RED>Hello<RESET> world.\n");
1844 hello.c- return 0;
1845 hello.c- /* char ?? */
1846 hello.c-}
1849 test_expect_success 'grep --color -e A --and -e B -p with context' '
1850 test_config color.grep.context normal &&
1851 test_config color.grep.filename normal &&
1852 test_config color.grep.function normal &&
1853 test_config color.grep.linenumber normal &&
1854 test_config color.grep.matchContext normal &&
1855 test_config color.grep.matchSelected red &&
1856 test_config color.grep.selected normal &&
1857 test_config color.grep.separator normal &&
1859 git grep --color=always -p -C3 -e int --and -e Hello --no-index hello.c |
1860 test_decode_color >actual &&
1861 test_cmp expected actual
1864 test_expect_success 'grep can find things only in the work tree' '
1865 : >work-tree-only &&
1866 git add work-tree-only &&
1867 test_when_finished "git rm -f work-tree-only" &&
1868 echo "find in work tree" >work-tree-only &&
1869 git grep --quiet "find in work tree" &&
1870 test_must_fail git grep --quiet --cached "find in work tree" &&
1871 test_must_fail git grep --quiet "find in work tree" HEAD
1874 test_expect_success 'grep can find things only in the work tree (i-t-a)' '
1875 echo "intend to add this" >intend-to-add &&
1876 git add -N intend-to-add &&
1877 test_when_finished "git rm -f intend-to-add" &&
1878 git grep --quiet "intend to add this" &&
1879 test_must_fail git grep --quiet --cached "intend to add this" &&
1880 test_must_fail git grep --quiet "intend to add this" HEAD
1883 test_expect_success 'grep does not search work tree with assume unchanged' '
1884 echo "intend to add this" >intend-to-add &&
1885 git add -N intend-to-add &&
1886 git update-index --assume-unchanged intend-to-add &&
1887 test_when_finished "git rm -f intend-to-add" &&
1888 test_must_fail git grep --quiet "intend to add this" &&
1889 test_must_fail git grep --quiet --cached "intend to add this" &&
1890 test_must_fail git grep --quiet "intend to add this" HEAD
1893 test_expect_success 'grep can find things only in the index' '
1894 echo "only in the index" >cache-this &&
1895 git add cache-this &&
1896 rm cache-this &&
1897 test_when_finished "git rm --cached cache-this" &&
1898 test_must_fail git grep --quiet "only in the index" &&
1899 git grep --quiet --cached "only in the index" &&
1900 test_must_fail git grep --quiet "only in the index" HEAD
1903 test_expect_success 'grep does not report i-t-a with -L --cached' '
1904 echo "intend to add this" >intend-to-add &&
1905 git add -N intend-to-add &&
1906 test_when_finished "git rm -f intend-to-add" &&
1907 git ls-files | grep -v "^intend-to-add\$" >expected &&
1908 git grep -L --cached "nonexistent_string" >actual &&
1909 test_cmp expected actual
1912 test_expect_success 'grep does not report i-t-a and assume unchanged with -L' '
1913 echo "intend to add this" >intend-to-add-assume-unchanged &&
1914 git add -N intend-to-add-assume-unchanged &&
1915 test_when_finished "git rm -f intend-to-add-assume-unchanged" &&
1916 git update-index --assume-unchanged intend-to-add-assume-unchanged &&
1917 git ls-files | grep -v "^intend-to-add-assume-unchanged\$" >expected &&
1918 git grep -L "nonexistent_string" >actual &&
1919 test_cmp expected actual
1922 test_done