t7810-grep: test --all-match with multiple --grep and --author options
[git/jrn.git] / t / t7810-grep.sh
blobb5c488e3a55304125548afafd8f94ac442930045
1 #!/bin/sh
3 # Copyright (c) 2006 Junio C Hamano
6 test_description='git grep various.
9 . ./test-lib.sh
11 cat >hello.c <<EOF
12 #include <stdio.h>
13 int main(int argc, const char **argv)
15 printf("Hello world.\n");
16 return 0;
17 /* char ?? */
19 EOF
21 test_expect_success setup '
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 &&
30 echo Hello world
31 echo HeLLo world
32 echo Hello_world
33 echo HeLLo_world
34 } >hello_world &&
36 echo "a+b*c"
37 echo "a+bc"
38 echo "abc"
39 } >ab &&
40 echo vvv >v &&
41 echo ww w >w &&
42 echo x x xx x >x &&
43 echo y yy >y &&
44 echo zzz > z &&
45 mkdir t &&
46 echo test >t/t &&
47 echo vvv >t/v &&
48 mkdir t/a &&
49 echo vvv >t/a/v &&
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 &&
57 git add . &&
58 test_tick &&
59 git commit -m initial
62 test_expect_success 'grep should not segfault with a bad input' '
63 test_must_fail git grep "("
66 for H in HEAD ''
68 case "$H" in
69 HEAD) HC='HEAD:' L='HEAD' ;;
70 '') HC= L='in working tree' ;;
71 esac
73 test_expect_success "grep -w $L" '
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 &&
80 git -c grep.linenumber=false grep -n -w -e mmap $H >actual &&
81 test_cmp expected actual
84 test_expect_success "grep -w $L" '
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
95 test_expect_success "grep -w $L" '
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 &&
103 test_cmp expected actual
106 test_expect_success "grep -w $L (w)" '
107 : >expected &&
108 test_must_fail git grep -n -w -e "^w" >actual &&
109 test_cmp expected actual
112 test_expect_success "grep -w $L (x)" '
114 echo ${HC}x:1:x x xx x
115 } >expected &&
116 git grep -n -w -e "x xx* x" $H >actual &&
117 test_cmp expected actual
120 test_expect_success "grep -w $L (y-1)" '
122 echo ${HC}y:1:y yy
123 } >expected &&
124 git grep -n -w -e "^y" $H >actual &&
125 test_cmp expected actual
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
136 test_cmp expected actual
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
148 test_cmp expected actual
152 test_expect_success "grep $L (t-1)" '
153 echo "${HC}t/t:1:test" >expected &&
154 git grep -n -e test $H >actual &&
155 test_cmp expected actual
158 test_expect_success "grep $L (t-2)" '
159 echo "${HC}t:1:test" >expected &&
161 cd t &&
162 git grep -n -e test $H
163 ) >actual &&
164 test_cmp expected actual
167 test_expect_success "grep $L (t-3)" '
168 echo "${HC}t/t:1:test" >expected &&
170 cd t &&
171 git grep --full-name -n -e test $H
172 ) >actual &&
173 test_cmp expected actual
176 test_expect_success "grep -c $L (no /dev/null)" '
177 ! git grep -c test $H | grep /dev/null
180 test_expect_success "grep --max-depth -1 $L" '
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
190 test_expect_success "grep --max-depth 0 $L" '
192 echo ${HC}v:1:vvv
193 } >expected &&
194 git grep --max-depth 0 -n -e vvv $H >actual &&
195 test_cmp expected actual
198 test_expect_success "grep --max-depth 0 -- '*' $L" '
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
208 test_expect_success "grep --max-depth 1 $L" '
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
217 test_expect_success "grep --max-depth 0 -- t $L" '
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
225 test_expect_success "grep --max-depth 0 -- . t $L" '
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
234 test_expect_success "grep --max-depth 0 -- t . $L" '
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
242 test_expect_success "grep $L with grep.extendedRegexp=false" '
243 echo "ab:a+bc" >expected &&
244 git -c grep.extendedRegexp=false grep "a+b*c" ab >actual &&
245 test_cmp expected actual
248 test_expect_success "grep $L with grep.extendedRegexp=true" '
249 echo "ab:abc" >expected &&
250 git -c grep.extendedRegexp=true grep "a+b*c" ab >actual &&
251 test_cmp expected actual
253 done
255 cat >expected <<EOF
256 file
258 test_expect_success 'grep -l -C' '
259 git grep -l -C1 foo >actual &&
260 test_cmp expected actual
263 cat >expected <<EOF
264 file:5
266 test_expect_success 'grep -l -C' '
267 git grep -c -C1 foo >actual &&
268 test_cmp expected actual
271 test_expect_success 'grep -L -C' '
272 git ls-files >expected &&
273 git grep -L -C1 nonexistent_string >actual &&
274 test_cmp expected actual
277 cat >expected <<EOF
278 file:foo mmap bar_mmap
281 test_expect_success 'grep -e A --and -e B' '
282 git grep -e "foo mmap" --and -e bar_mmap >actual &&
283 test_cmp expected actual
286 cat >expected <<EOF
287 file:foo_mmap bar mmap
288 file:foo_mmap bar mmap baz
292 test_expect_success 'grep ( -e A --or -e B ) --and -e B' '
293 git grep \( -e foo_ --or -e baz \) \
294 --and -e " mmap" >actual &&
295 test_cmp expected actual
298 cat >expected <<EOF
299 file:foo mmap bar
302 test_expect_success 'grep -e A --and --not -e B' '
303 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
304 test_cmp expected actual
307 test_expect_success 'grep should ignore GREP_OPTIONS' '
308 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
309 test_cmp expected actual
312 test_expect_success 'grep -f, non-existent file' '
313 test_must_fail git grep -f patterns
316 cat >expected <<EOF
317 file:foo mmap bar
318 file:foo_mmap bar
319 file:foo_mmap bar mmap
320 file:foo mmap bar_mmap
321 file:foo_mmap bar mmap baz
324 cat >pattern <<EOF
325 mmap
328 test_expect_success 'grep -f, one pattern' '
329 git grep -f pattern >actual &&
330 test_cmp expected actual
333 cat >expected <<EOF
334 file:foo mmap bar
335 file:foo_mmap bar
336 file:foo_mmap bar mmap
337 file:foo mmap bar_mmap
338 file:foo_mmap bar mmap baz
339 t/a/v:vvv
340 t/v:vvv
341 v:vvv
344 cat >patterns <<EOF
345 mmap
349 test_expect_success 'grep -f, multiple patterns' '
350 git grep -f patterns >actual &&
351 test_cmp expected actual
354 test_expect_success 'grep, multiple patterns' '
355 git grep "$(cat patterns)" >actual &&
356 test_cmp expected actual
359 cat >expected <<EOF
360 file:foo mmap bar
361 file:foo_mmap bar
362 file:foo_mmap bar mmap
363 file:foo mmap bar_mmap
364 file:foo_mmap bar mmap baz
365 t/a/v:vvv
366 t/v:vvv
367 v:vvv
370 cat >patterns <<EOF
372 mmap
378 test_expect_success 'grep -f, ignore empty lines' '
379 git grep -f patterns >actual &&
380 test_cmp expected actual
383 test_expect_success 'grep -f, ignore empty lines, read patterns from stdin' '
384 git grep -f - <patterns >actual &&
385 test_cmp expected actual
388 cat >expected <<EOF
389 y:y yy
391 z:zzz
394 test_expect_success 'grep -q, silently report matches' '
395 >empty &&
396 git grep -q mmap >actual &&
397 test_cmp empty actual &&
398 test_must_fail git grep -q qfwfq >actual &&
399 test_cmp empty actual
402 # Create 1024 file names that sort between "y" and "z" to make sure
403 # the two files are handled by different calls to an external grep.
404 # This depends on MAXARGS in builtin-grep.c being 1024 or less.
405 c32="0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v"
406 test_expect_success 'grep -C1, hunk mark between files' '
407 for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
408 git add y-?? &&
409 git grep -C1 "^[yz]" >actual &&
410 test_cmp expected actual
413 test_expect_success 'grep -C1 hunk mark between files' '
414 git grep -C1 "^[yz]" >actual &&
415 test_cmp expected actual
418 test_expect_success 'log grep setup' '
419 echo a >>file &&
420 test_tick &&
421 GIT_AUTHOR_NAME="With * Asterisk" \
422 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
423 git commit -a -m "second" &&
425 echo a >>file &&
426 test_tick &&
427 git commit -a -m "third" &&
429 echo a >>file &&
430 test_tick &&
431 GIT_AUTHOR_NAME="Night Fall" \
432 GIT_AUTHOR_EMAIL="nitfol@frobozz.com" \
433 git commit -a -m "fourth"
436 test_expect_success 'log grep (1)' '
437 git log --author=author --pretty=tformat:%s >actual &&
439 echo third && echo initial
440 } >expect &&
441 test_cmp expect actual
444 test_expect_success 'log grep (2)' '
445 git log --author=" * " -F --pretty=tformat:%s >actual &&
447 echo second
448 } >expect &&
449 test_cmp expect actual
452 test_expect_success 'log grep (3)' '
453 git log --author="^A U" --pretty=tformat:%s >actual &&
455 echo third && echo initial
456 } >expect &&
457 test_cmp expect actual
460 test_expect_success 'log grep (4)' '
461 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
463 echo second
464 } >expect &&
465 test_cmp expect actual
468 test_expect_success 'log grep (5)' '
469 git log --author=Thor -F --pretty=tformat:%s >actual &&
471 echo third && echo initial
472 } >expect &&
473 test_cmp expect actual
476 test_expect_success 'log grep (6)' '
477 git log --author=-0700 --pretty=tformat:%s >actual &&
478 >expect &&
479 test_cmp expect actual
482 test_expect_success 'log with multiple --grep uses union' '
483 git log --grep=i --grep=r --format=%s >actual &&
485 echo fourth && echo third && echo initial
486 } >expect &&
487 test_cmp expect actual
490 test_expect_success 'log --all-match with multiple --grep uses intersection' '
491 git log --all-match --grep=i --grep=r --format=%s >actual &&
493 echo third
494 } >expect &&
495 test_cmp expect actual
498 test_expect_success 'log with multiple --author uses union' '
499 git log --author="Thor" --author="Aster" --format=%s >actual &&
501 echo third && echo second && echo initial
502 } >expect &&
503 test_cmp expect actual
506 test_expect_success 'log --all-match with multiple --author still uses union' '
507 git log --all-match --author="Thor" --author="Aster" --format=%s >actual &&
509 echo third && echo second && echo initial
510 } >expect &&
511 test_cmp expect actual
514 test_expect_success 'log --grep --author uses intersection' '
515 # grep matches only third and fourth
516 # author matches only initial and third
517 git log --author="A U Thor" --grep=r --format=%s >actual &&
519 echo third
520 } >expect &&
521 test_cmp expect actual
524 test_expect_success 'log --grep --grep --author takes union of greps and intersects with author' '
525 # grep matches initial and second but not third
526 # author matches only initial and third
527 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
529 echo initial
530 } >expect &&
531 test_cmp expect actual
534 test_expect_success 'log ---all-match -grep --author --author still takes union of authors and intersects with grep' '
535 # grep matches only initial and third
536 # author matches all but second
537 git log --all-match --author="Thor" --author="Night" --grep=i --format=%s >actual &&
539 echo third && echo initial
540 } >expect &&
541 test_cmp expect actual
544 test_expect_success 'log --grep --author --author takes union of authors and intersects with grep' '
545 # grep matches only initial and third
546 # author matches all but second
547 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
549 echo third && echo initial
550 } >expect &&
551 test_cmp expect actual
554 test_expect_success 'log --all-match --grep --grep --author takes intersection' '
555 # grep matches only third
556 # author matches only initial and third
557 git log --all-match --author="A U Thor" --grep=i --grep=r --format=%s >actual &&
559 echo third
560 } >expect &&
561 test_cmp expect actual
564 test_expect_success 'grep with CE_VALID file' '
565 git update-index --assume-unchanged t/t &&
566 rm t/t &&
567 test "$(git grep test)" = "t/t:test" &&
568 git update-index --no-assume-unchanged t/t &&
569 git checkout t/t
572 cat >expected <<EOF
573 hello.c=#include <stdio.h>
574 hello.c: return 0;
577 test_expect_success 'grep -p with userdiff' '
578 git config diff.custom.funcname "^#" &&
579 echo "hello.c diff=custom" >.gitattributes &&
580 git grep -p return >actual &&
581 test_cmp expected actual
584 cat >expected <<EOF
585 hello.c=int main(int argc, const char **argv)
586 hello.c: return 0;
589 test_expect_success 'grep -p' '
590 rm -f .gitattributes &&
591 git grep -p return >actual &&
592 test_cmp expected actual
595 cat >expected <<EOF
596 hello.c-#include <stdio.h>
597 hello.c=int main(int argc, const char **argv)
598 hello.c-{
599 hello.c- printf("Hello world.\n");
600 hello.c: return 0;
603 test_expect_success 'grep -p -B5' '
604 git grep -p -B5 return >actual &&
605 test_cmp expected actual
608 cat >expected <<EOF
609 hello.c=int main(int argc, const char **argv)
610 hello.c-{
611 hello.c- printf("Hello world.\n");
612 hello.c: return 0;
613 hello.c- /* char ?? */
614 hello.c-}
617 test_expect_success 'grep -W' '
618 git grep -W return >actual &&
619 test_cmp expected actual
622 cat >expected <<EOF
623 hello.c= printf("Hello world.\n");
624 hello.c: return 0;
625 hello.c- /* char ?? */
628 test_expect_success 'grep -W with userdiff' '
629 test_when_finished "rm -f .gitattributes" &&
630 git config diff.custom.xfuncname "(printf.*|})$" &&
631 echo "hello.c diff=custom" >.gitattributes &&
632 git grep -W return >actual &&
633 test_cmp expected actual
636 test_expect_success 'grep from a subdirectory to search wider area (1)' '
637 mkdir -p s &&
639 cd s && git grep "x x x" ..
643 test_expect_success 'grep from a subdirectory to search wider area (2)' '
644 mkdir -p s &&
646 cd s || exit 1
647 ( git grep xxyyzz .. >out ; echo $? >status )
648 ! test -s out &&
649 test 1 = $(cat status)
653 cat >expected <<EOF
654 hello.c:int main(int argc, const char **argv)
657 test_expect_success 'grep -Fi' '
658 git grep -Fi "CHAR *" >actual &&
659 test_cmp expected actual
662 test_expect_success 'outside of git repository' '
663 rm -fr non &&
664 mkdir -p non/git/sub &&
665 echo hello >non/git/file1 &&
666 echo world >non/git/sub/file2 &&
668 echo file1:hello &&
669 echo sub/file2:world
670 } >non/expect.full &&
671 echo file2:world >non/expect.sub &&
673 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
674 export GIT_CEILING_DIRECTORIES &&
675 cd non/git &&
676 test_must_fail git grep o &&
677 git grep --no-index o >../actual.full &&
678 test_cmp ../expect.full ../actual.full
679 cd sub &&
680 test_must_fail git grep o &&
681 git grep --no-index o >../../actual.sub &&
682 test_cmp ../../expect.sub ../../actual.sub
683 ) &&
685 echo ".*o*" >non/git/.gitignore &&
687 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
688 export GIT_CEILING_DIRECTORIES &&
689 cd non/git &&
690 test_must_fail git grep o &&
691 git grep --no-index --exclude-standard o >../actual.full &&
692 test_cmp ../expect.full ../actual.full &&
695 echo ".gitignore:.*o*"
696 cat ../expect.full
697 } >../expect.with.ignored &&
698 git grep --no-index --no-exclude o >../actual.full &&
699 test_cmp ../expect.with.ignored ../actual.full
703 test_expect_success 'inside git repository but with --no-index' '
704 rm -fr is &&
705 mkdir -p is/git/sub &&
706 echo hello >is/git/file1 &&
707 echo world >is/git/sub/file2 &&
708 echo ".*o*" >is/git/.gitignore &&
710 echo file1:hello &&
711 echo sub/file2:world
712 } >is/expect.unignored &&
714 echo ".gitignore:.*o*" &&
715 cat is/expect.unignored
716 } >is/expect.full &&
717 : >is/expect.empty &&
718 echo file2:world >is/expect.sub &&
720 cd is/git &&
721 git init &&
722 test_must_fail git grep o >../actual.full &&
723 test_cmp ../expect.empty ../actual.full &&
725 git grep --untracked o >../actual.unignored &&
726 test_cmp ../expect.unignored ../actual.unignored &&
728 git grep --no-index o >../actual.full &&
729 test_cmp ../expect.full ../actual.full &&
731 git grep --no-index --exclude-standard o >../actual.unignored &&
732 test_cmp ../expect.unignored ../actual.unignored &&
734 cd sub &&
735 test_must_fail git grep o >../../actual.sub &&
736 test_cmp ../../expect.empty ../../actual.sub &&
738 git grep --no-index o >../../actual.sub &&
739 test_cmp ../../expect.sub ../../actual.sub &&
741 git grep --untracked o >../../actual.sub &&
742 test_cmp ../../expect.sub ../../actual.sub
746 test_expect_success 'setup double-dash tests' '
747 cat >double-dash <<EOF &&
750 other
752 git add double-dash
755 cat >expected <<EOF
756 double-dash:->
758 test_expect_success 'grep -- pattern' '
759 git grep -- "->" >actual &&
760 test_cmp expected actual
762 test_expect_success 'grep -- pattern -- pathspec' '
763 git grep -- "->" -- double-dash >actual &&
764 test_cmp expected actual
766 test_expect_success 'grep -e pattern -- path' '
767 git grep -e "->" -- double-dash >actual &&
768 test_cmp expected actual
771 cat >expected <<EOF
772 double-dash:--
774 test_expect_success 'grep -e -- -- path' '
775 git grep -e -- -- double-dash >actual &&
776 test_cmp expected actual
779 cat >expected <<EOF
780 hello.c:int main(int argc, const char **argv)
781 hello.c: printf("Hello world.\n");
784 test_expect_success LIBPCRE 'grep --perl-regexp pattern' '
785 git grep --perl-regexp "\p{Ps}.*?\p{Pe}" hello.c >actual &&
786 test_cmp expected actual
789 test_expect_success LIBPCRE 'grep -P pattern' '
790 git grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
791 test_cmp expected actual
794 test_expect_success 'grep pattern with grep.extendedRegexp=true' '
795 >empty &&
796 test_must_fail git -c grep.extendedregexp=true \
797 grep "\p{Ps}.*?\p{Pe}" hello.c >actual &&
798 test_cmp empty actual
801 test_expect_success LIBPCRE 'grep -P pattern with grep.extendedRegexp=true' '
802 git -c grep.extendedregexp=true \
803 grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
804 test_cmp expected actual
807 test_expect_success LIBPCRE 'grep -P -v pattern' '
809 echo "ab:a+b*c"
810 echo "ab:a+bc"
811 } >expected &&
812 git grep -P -v "abc" ab >actual &&
813 test_cmp expected actual
816 test_expect_success LIBPCRE 'grep -P -i pattern' '
817 cat >expected <<-EOF &&
818 hello.c: printf("Hello world.\n");
820 git grep -P -i "PRINTF\([^\d]+\)" hello.c >actual &&
821 test_cmp expected actual
824 test_expect_success LIBPCRE 'grep -P -w pattern' '
826 echo "hello_world:Hello world"
827 echo "hello_world:HeLLo world"
828 } >expected &&
829 git grep -P -w "He((?i)ll)o" hello_world >actual &&
830 test_cmp expected actual
833 test_expect_success 'grep -G invalidpattern properly dies ' '
834 test_must_fail git grep -G "a["
837 test_expect_success 'grep -E invalidpattern properly dies ' '
838 test_must_fail git grep -E "a["
841 test_expect_success LIBPCRE 'grep -P invalidpattern properly dies ' '
842 test_must_fail git grep -P "a["
845 test_expect_success 'grep -G -E -F pattern' '
846 echo "ab:a+b*c" >expected &&
847 git grep -G -E -F "a+b*c" ab >actual &&
848 test_cmp expected actual
851 test_expect_success 'grep -E -F -G pattern' '
852 echo "ab:a+bc" >expected &&
853 git grep -E -F -G "a+b*c" ab >actual &&
854 test_cmp expected actual
857 test_expect_success 'grep -F -G -E pattern' '
858 echo "ab:abc" >expected &&
859 git grep -F -G -E "a+b*c" ab >actual &&
860 test_cmp expected actual
863 test_expect_success 'grep -G -F -P -E pattern' '
864 >empty &&
865 test_must_fail git grep -G -F -P -E "a\x{2b}b\x{2a}c" ab >actual &&
866 test_cmp empty actual
869 test_expect_success LIBPCRE 'grep -G -F -E -P pattern' '
870 echo "ab:a+b*c" >expected &&
871 git grep -G -F -E -P "a\x{2b}b\x{2a}c" ab >actual &&
872 test_cmp expected actual
875 test_config() {
876 git config "$1" "$2" &&
877 test_when_finished "git config --unset $1"
880 cat >expected <<EOF
881 hello.c<RED>:<RESET>int main(int argc, const char **argv)
882 hello.c<RED>-<RESET>{
883 <RED>--<RESET>
884 hello.c<RED>:<RESET> /* char ?? */
885 hello.c<RED>-<RESET>}
886 <RED>--<RESET>
887 hello_world<RED>:<RESET>Hello_world
888 hello_world<RED>-<RESET>HeLLo_world
891 test_expect_success 'grep --color, separator' '
892 test_config color.grep.context normal &&
893 test_config color.grep.filename normal &&
894 test_config color.grep.function normal &&
895 test_config color.grep.linenumber normal &&
896 test_config color.grep.match normal &&
897 test_config color.grep.selected normal &&
898 test_config color.grep.separator red &&
900 git grep --color=always -A1 -e char -e lo_w hello.c hello_world |
901 test_decode_color >actual &&
902 test_cmp expected actual
905 cat >expected <<EOF
906 hello.c:int main(int argc, const char **argv)
907 hello.c: /* char ?? */
909 hello_world:Hello_world
912 test_expect_success 'grep --break' '
913 git grep --break -e char -e lo_w hello.c hello_world >actual &&
914 test_cmp expected actual
917 cat >expected <<EOF
918 hello.c:int main(int argc, const char **argv)
919 hello.c-{
921 hello.c: /* char ?? */
922 hello.c-}
924 hello_world:Hello_world
925 hello_world-HeLLo_world
928 test_expect_success 'grep --break with context' '
929 git grep --break -A1 -e char -e lo_w hello.c hello_world >actual &&
930 test_cmp expected actual
933 cat >expected <<EOF
934 hello.c
935 int main(int argc, const char **argv)
936 /* char ?? */
937 hello_world
938 Hello_world
941 test_expect_success 'grep --heading' '
942 git grep --heading -e char -e lo_w hello.c hello_world >actual &&
943 test_cmp expected actual
946 cat >expected <<EOF
947 <BOLD;GREEN>hello.c<RESET>
948 2:int main(int argc, const <BLACK;BYELLOW>char<RESET> **argv)
949 6: /* <BLACK;BYELLOW>char<RESET> ?? */
951 <BOLD;GREEN>hello_world<RESET>
952 3:Hel<BLACK;BYELLOW>lo_w<RESET>orld
955 test_expect_success 'mimic ack-grep --group' '
956 test_config color.grep.context normal &&
957 test_config color.grep.filename "bold green" &&
958 test_config color.grep.function normal &&
959 test_config color.grep.linenumber normal &&
960 test_config color.grep.match "black yellow" &&
961 test_config color.grep.selected normal &&
962 test_config color.grep.separator normal &&
964 git grep --break --heading -n --color \
965 -e char -e lo_w hello.c hello_world |
966 test_decode_color >actual &&
967 test_cmp expected actual
970 cat >expected <<EOF
971 space: line with leading space1
972 space: line with leading space2
973 space: line with leading space3
976 test_expect_success LIBPCRE 'grep -E "^ "' '
977 git grep -E "^ " space >actual &&
978 test_cmp expected actual
981 test_expect_success LIBPCRE 'grep -P "^ "' '
982 git grep -P "^ " space >actual &&
983 test_cmp expected actual
986 test_done