3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='git grep various.
13 int main(int argc, const char **argv)
15 printf("Hello world.\n");
21 test_expect_success setup
'
25 echo foo_mmap bar mmap
26 echo foo mmap bar_mmap
27 echo foo_mmap bar mmap baz
55 test_expect_success
'grep should not segfault with a bad input' '
56 test_must_fail git grep "("
62 HEAD
) HC
='HEAD:' L
='HEAD' ;;
63 '') HC
= L
='in working tree' ;;
66 test_expect_success
"grep -w $L" '
68 echo ${HC}file:1:foo mmap bar
69 echo ${HC}file:3:foo_mmap bar mmap
70 echo ${HC}file:4:foo mmap bar_mmap
71 echo ${HC}file:5:foo_mmap bar mmap baz
73 git -c grep.linenumber=false grep -n -w -e mmap $H >actual &&
74 test_cmp expected actual
77 test_expect_success
"grep -w $L" '
79 echo ${HC}file:1:foo mmap bar
80 echo ${HC}file:3:foo_mmap bar mmap
81 echo ${HC}file:4:foo mmap bar_mmap
82 echo ${HC}file:5:foo_mmap bar mmap baz
84 git -c grep.linenumber=true grep -w -e mmap $H >actual &&
85 test_cmp expected actual
88 test_expect_success
"grep -w $L" '
90 echo ${HC}file:foo mmap bar
91 echo ${HC}file:foo_mmap bar mmap
92 echo ${HC}file:foo mmap bar_mmap
93 echo ${HC}file:foo_mmap bar mmap baz
95 git -c grep.linenumber=true grep --no-line-number -w -e mmap $H >actual &&
96 test_cmp expected actual
99 test_expect_success
"grep -w $L (w)" '
101 test_must_fail git grep -n -w -e "^w" >actual &&
102 test_cmp expected actual
105 test_expect_success
"grep -w $L (x)" '
107 echo ${HC}x:1:x x xx x
109 git grep -n -w -e "x xx* x" $H >actual &&
110 test_cmp expected actual
113 test_expect_success
"grep -w $L (y-1)" '
117 git grep -n -w -e "^y" $H >actual &&
118 test_cmp expected actual
121 test_expect_success
"grep -w $L (y-2)" '
123 if git grep -n -w -e "^y y" $H >actual
125 echo should not have matched
129 test_cmp expected actual
133 test_expect_success
"grep -w $L (z)" '
135 if git grep -n -w -e "^z" $H >actual
137 echo should not have matched
141 test_cmp expected actual
145 test_expect_success
"grep $L (t-1)" '
146 echo "${HC}t/t:1:test" >expected &&
147 git grep -n -e test $H >actual &&
148 test_cmp expected actual
151 test_expect_success
"grep $L (t-2)" '
152 echo "${HC}t:1:test" >expected &&
155 git grep -n -e test $H
157 test_cmp expected actual
160 test_expect_success
"grep $L (t-3)" '
161 echo "${HC}t/t:1:test" >expected &&
164 git grep --full-name -n -e test $H
166 test_cmp expected actual
169 test_expect_success
"grep -c $L (no /dev/null)" '
170 ! git grep -c test $H | grep /dev/null
173 test_expect_success
"grep --max-depth -1 $L" '
175 echo ${HC}t/a/v:1:vvv
179 git grep --max-depth -1 -n -e vvv $H >actual &&
180 test_cmp expected actual
183 test_expect_success
"grep --max-depth 0 $L" '
187 git grep --max-depth 0 -n -e vvv $H >actual &&
188 test_cmp expected actual
191 test_expect_success
"grep --max-depth 0 -- '*' $L" '
193 echo ${HC}t/a/v:1:vvv
197 git grep --max-depth 0 -n -e vvv $H -- "*" >actual &&
198 test_cmp expected actual
201 test_expect_success
"grep --max-depth 1 $L" '
206 git grep --max-depth 1 -n -e vvv $H >actual &&
207 test_cmp expected actual
210 test_expect_success
"grep --max-depth 0 -- t $L" '
214 git grep --max-depth 0 -n -e vvv $H -- t >actual &&
215 test_cmp expected actual
218 test_expect_success
"grep --max-depth 0 -- . t $L" '
223 git grep --max-depth 0 -n -e vvv $H -- . t >actual &&
224 test_cmp expected actual
227 test_expect_success
"grep --max-depth 0 -- t . $L" '
232 git grep --max-depth 0 -n -e vvv $H -- t . >actual &&
233 test_cmp expected actual
235 test_expect_success
"grep $L with grep.extendedRegexp=false" '
236 echo "ab:a+bc" >expected &&
237 git -c grep.extendedRegexp=false grep "a+b*c" ab >actual &&
238 test_cmp expected actual
241 test_expect_success
"grep $L with grep.extendedRegexp=true" '
242 echo "ab:abc" >expected &&
243 git -c grep.extendedRegexp=true grep "a+b*c" ab >actual &&
244 test_cmp expected actual
249 file:foo mmap bar_mmap
252 test_expect_success
'grep -e A --and -e B' '
253 git grep -e "foo mmap" --and -e bar_mmap >actual &&
254 test_cmp expected actual
258 file:foo_mmap bar mmap
259 file:foo_mmap bar mmap baz
263 test_expect_success
'grep ( -e A --or -e B ) --and -e B' '
264 git grep \( -e foo_ --or -e baz \) \
265 --and -e " mmap" >actual &&
266 test_cmp expected actual
273 test_expect_success
'grep -e A --and --not -e B' '
274 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
275 test_cmp expected actual
278 test_expect_success
'grep should ignore GREP_OPTIONS' '
279 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
280 test_cmp expected actual
283 test_expect_success
'grep -f, non-existent file' '
284 test_must_fail git grep -f patterns
290 file:foo_mmap bar mmap
291 file:foo mmap bar_mmap
292 file:foo_mmap bar mmap baz
299 test_expect_success
'grep -f, one pattern' '
300 git grep -f pattern >actual &&
301 test_cmp expected actual
307 file:foo_mmap bar mmap
308 file:foo mmap bar_mmap
309 file:foo_mmap bar mmap baz
320 test_expect_success
'grep -f, multiple patterns' '
321 git grep -f patterns >actual &&
322 test_cmp expected actual
328 file:foo_mmap bar mmap
329 file:foo mmap bar_mmap
330 file:foo_mmap bar mmap baz
344 test_expect_success
'grep -f, ignore empty lines' '
345 git grep -f patterns >actual &&
346 test_cmp expected actual
349 test_expect_success
'grep -f, ignore empty lines, read patterns from stdin' '
350 git grep -f - <patterns >actual &&
351 test_cmp expected actual
360 test_expect_success
'grep -q, silently report matches' '
362 git grep -q mmap >actual &&
363 test_cmp empty actual &&
364 test_must_fail git grep -q qfwfq >actual &&
365 test_cmp empty actual
368 # Create 1024 file names that sort between "y" and "z" to make sure
369 # the two files are handled by different calls to an external grep.
370 # This depends on MAXARGS in builtin-grep.c being 1024 or less.
371 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"
372 test_expect_success
'grep -C1, hunk mark between files' '
373 for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
375 git grep -C1 "^[yz]" >actual &&
376 test_cmp expected actual
379 test_expect_success
'grep -C1 hunk mark between files' '
380 git grep -C1 "^[yz]" >actual &&
381 test_cmp expected actual
384 test_expect_success
'log grep setup' '
387 GIT_AUTHOR_NAME="With * Asterisk" \
388 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
389 git commit -a -m "second" &&
393 git commit -a -m "third" &&
397 GIT_AUTHOR_NAME="Night Fall" \
398 GIT_AUTHOR_EMAIL="nitfol@frobozz.com" \
399 git commit -a -m "fourth"
402 test_expect_success
'log grep (1)' '
403 git log --author=author --pretty=tformat:%s >actual &&
404 ( echo third ; echo initial ) >expect &&
405 test_cmp expect actual
408 test_expect_success
'log grep (2)' '
409 git log --author=" * " -F --pretty=tformat:%s >actual &&
410 ( echo second ) >expect &&
411 test_cmp expect actual
414 test_expect_success
'log grep (3)' '
415 git log --author="^A U" --pretty=tformat:%s >actual &&
416 ( echo third ; echo initial ) >expect &&
417 test_cmp expect actual
420 test_expect_success
'log grep (4)' '
421 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
422 ( echo second ) >expect &&
423 test_cmp expect actual
426 test_expect_success
'log grep (5)' '
427 git log --author=Thor -F --pretty=tformat:%s >actual &&
428 ( echo third ; echo initial ) >expect &&
429 test_cmp expect actual
432 test_expect_success
'log grep (6)' '
433 git log --author=-0700 --pretty=tformat:%s >actual &&
435 test_cmp expect actual
438 test_expect_success
'log --grep --author implicitly uses all-match' '
439 # grep matches initial and second but not third
440 # author matches only initial and third
441 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
442 echo initial >expect &&
443 test_cmp expect actual
446 test_expect_success
'log with multiple --author uses union' '
447 git log --author="Thor" --author="Aster" --format=%s >actual &&
449 echo third && echo second && echo initial
451 test_cmp expect actual
454 test_expect_success
'log with --grep and multiple --author uses all-match' '
455 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
457 echo third && echo initial
459 test_cmp expect actual
462 test_expect_success
'log with --grep and multiple --author uses all-match' '
463 git log --author="Thor" --author="Night" --grep=q --format=%s >actual &&
465 test_cmp expect actual
468 test_expect_success
'grep with CE_VALID file' '
469 git update-index --assume-unchanged t/t &&
471 test "$(git grep test)" = "t/t:test" &&
472 git update-index --no-assume-unchanged t/t &&
477 hello.c=#include <stdio.h>
481 test_expect_success
'grep -p with userdiff' '
482 git config diff.custom.funcname "^#" &&
483 echo "hello.c diff=custom" >.gitattributes &&
484 git grep -p return >actual &&
485 test_cmp expected actual
489 hello.c=int main(int argc, const char **argv)
493 test_expect_success
'grep -p' '
494 rm -f .gitattributes &&
495 git grep -p return >actual &&
496 test_cmp expected actual
500 hello.c-#include <stdio.h>
501 hello.c=int main(int argc, const char **argv)
503 hello.c- printf("Hello world.\n");
507 test_expect_success
'grep -p -B5' '
508 git grep -p -B5 return >actual &&
509 test_cmp expected actual
512 test_expect_success
'grep from a subdirectory to search wider area (1)' '
515 cd s && git grep "x x x" ..
519 test_expect_success
'grep from a subdirectory to search wider area (2)' '
523 ( git grep xxyyzz .. >out ; echo $? >status )
525 test 1 = $(cat status)
530 hello.c:int main(int argc, const char **argv)
533 test_expect_success
'grep -Fi' '
534 git grep -Fi "CHAR *" >actual &&
535 test_cmp expected actual
538 test_expect_success
'outside of git repository' '
540 mkdir -p non/git/sub &&
541 echo hello >non/git/file1 &&
542 echo world >non/git/sub/file2 &&
543 echo ".*o*" >non/git/.gitignore &&
547 } >non/expect.full &&
548 echo file2:world >non/expect.sub &&
550 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
551 export GIT_CEILING_DIRECTORIES &&
553 test_must_fail git grep o &&
554 git grep --no-index o >../actual.full &&
555 test_cmp ../expect.full ../actual.full
557 test_must_fail git grep o &&
558 git grep --no-index o >../../actual.sub &&
559 test_cmp ../../expect.sub ../../actual.sub
563 test_expect_success
'inside git repository but with --no-index' '
565 mkdir -p is/git/sub &&
566 echo hello >is/git/file1 &&
567 echo world >is/git/sub/file2 &&
568 echo ".*o*" >is/git/.gitignore &&
573 : >is/expect.empty &&
574 echo file2:world >is/expect.sub &&
578 test_must_fail git grep o >../actual.full &&
579 test_cmp ../expect.empty ../actual.full &&
580 git grep --no-index o >../actual.full &&
581 test_cmp ../expect.full ../actual.full &&
583 test_must_fail git grep o >../../actual.sub &&
584 test_cmp ../../expect.empty ../../actual.sub &&
585 git grep --no-index o >../../actual.sub &&
586 test_cmp ../../expect.sub ../../actual.sub
590 test_expect_success
'setup double-dash tests' '
591 cat >double-dash <<EOF &&
602 test_expect_success
'grep -- pattern' '
603 git grep -- "->" >actual &&
604 test_cmp expected actual
606 test_expect_success
'grep -- pattern -- pathspec' '
607 git grep -- "->" -- double-dash >actual &&
608 test_cmp expected actual
610 test_expect_success
'grep -e pattern -- path' '
611 git grep -e "->" -- double-dash >actual &&
612 test_cmp expected actual
618 test_expect_success
'grep -e -- -- path' '
619 git grep -e -- -- double-dash >actual &&
620 test_cmp expected actual
624 hello.c:int main(int argc, const char **argv)
625 hello.c: printf("Hello world.\n");
628 test_expect_success LIBPCRE
'grep --perl-regexp pattern' '
629 git grep --perl-regexp "\p{Ps}.*?\p{Pe}" hello.c >actual &&
630 test_cmp expected actual
633 test_expect_success LIBPCRE
'grep -P pattern' '
634 git grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
635 test_cmp expected actual
638 test_expect_success
'grep pattern with grep.extendedRegexp=true' '
640 test_must_fail git -c grep.extendedregexp=true \
641 grep "\p{Ps}.*?\p{Pe}" hello.c >actual &&
642 test_cmp empty actual
645 test_expect_success LIBPCRE
'grep -P pattern with grep.extendedRegexp=true' '
646 git -c grep.extendedregexp=true \
647 grep -P "\p{Ps}.*?\p{Pe}" hello.c >actual &&
648 test_cmp expected actual
651 test_expect_success LIBPCRE
'grep -P -v pattern' '
656 git grep -P -v "abc" ab >actual &&
657 test_cmp expected actual
660 test_expect_success LIBPCRE
'grep -P -i pattern' '
662 echo "hello.c: printf(\"Hello world.\n\");"
664 git grep -P -i "PRINTF\([^\d]+\)" hello.c >actual &&
665 test_cmp expected actual
668 test_expect_success LIBPCRE
'grep -P -w pattern' '
670 echo "hello_world:Hello world"
671 echo "hello_world:HeLLo world"
673 git grep -P -w "He((?i)ll)o" hello_world >actual &&
674 test_cmp expected actual
677 test_expect_success
'grep -G invalidpattern properly dies ' '
678 test_must_fail git grep -G "a["
681 test_expect_success
'grep -E invalidpattern properly dies ' '
682 test_must_fail git grep -E "a["
685 test_expect_success LIBPCRE
'grep -P invalidpattern properly dies ' '
686 test_must_fail git grep -P "a["
689 test_expect_success
'grep -G -E -F pattern' '
690 echo "ab:a+b*c" >expected &&
691 git grep -G -E -F "a+b*c" ab >actual &&
692 test_cmp expected actual
695 test_expect_success
'grep -E -F -G pattern' '
696 echo "ab:a+bc" >expected &&
697 git grep -E -F -G "a+b*c" ab >actual &&
698 test_cmp expected actual
701 test_expect_success
'grep -F -G -E pattern' '
702 echo "ab:abc" >expected &&
703 git grep -F -G -E "a+b*c" ab >actual &&
704 test_cmp expected actual
707 test_expect_success
'grep -G -F -P -E pattern' '
709 test_must_fail git grep -G -F -P -E "a\x{2b}b\x{2a}c" ab >actual &&
710 test_cmp empty actual
713 test_expect_success LIBPCRE
'grep -G -F -E -P pattern' '
714 echo "ab:a+b*c" >expected &&
715 git grep -G -F -E -P "a\x{2b}b\x{2a}c" ab >actual &&
716 test_cmp expected actual