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
44 test_expect_success
'grep should not segfault with a bad input' '
45 test_must_fail git grep "("
51 HEAD
) HC
='HEAD:' L
='HEAD' ;;
52 '') HC
= L
='in working tree' ;;
55 test_expect_success
"grep -w $L" '
57 echo ${HC}file:1:foo mmap bar
58 echo ${HC}file:3:foo_mmap bar mmap
59 echo ${HC}file:4:foo mmap bar_mmap
60 echo ${HC}file:5:foo_mmap bar mmap baz
62 git grep -n -w -e mmap $H >actual &&
63 test_cmp expected actual
66 test_expect_success
"grep -w $L (w)" '
68 test_must_fail git grep -n -w -e "^w" >actual &&
69 test_cmp expected actual
72 test_expect_success
"grep -w $L (x)" '
74 echo ${HC}x:1:x x xx x
76 git grep -n -w -e "x xx* x" $H >actual &&
77 test_cmp expected actual
80 test_expect_success
"grep -w $L (y-1)" '
84 git grep -n -w -e "^y" $H >actual &&
85 test_cmp expected actual
88 test_expect_success
"grep -w $L (y-2)" '
90 if git grep -n -w -e "^y y" $H >actual
92 echo should not have matched
96 test_cmp expected actual
100 test_expect_success
"grep -w $L (z)" '
102 if git grep -n -w -e "^z" $H >actual
104 echo should not have matched
108 test_cmp expected actual
112 test_expect_success
"grep $L (t-1)" '
113 echo "${HC}t/t:1:test" >expected &&
114 git grep -n -e test $H >actual &&
115 test_cmp expected actual
118 test_expect_success
"grep $L (t-2)" '
119 echo "${HC}t:1:test" >expected &&
122 git grep -n -e test $H
124 test_cmp expected actual
127 test_expect_success
"grep $L (t-3)" '
128 echo "${HC}t/t:1:test" >expected &&
131 git grep --full-name -n -e test $H
133 test_cmp expected actual
136 test_expect_success
"grep -c $L (no /dev/null)" '
137 ! git grep -c test $H | grep /dev/null
140 test_expect_success
"grep --max-depth -1 $L" '
142 echo ${HC}t/a/v:1:vvv
146 git grep --max-depth -1 -n -e vvv $H >actual &&
147 test_cmp expected actual
150 test_expect_success
"grep --max-depth 0 $L" '
154 git grep --max-depth 0 -n -e vvv $H >actual &&
155 test_cmp expected actual
158 test_expect_success
"grep --max-depth 0 -- '*' $L" '
160 echo ${HC}t/a/v:1:vvv
164 git grep --max-depth 0 -n -e vvv $H -- "*" >actual &&
165 test_cmp expected actual
168 test_expect_success
"grep --max-depth 1 $L" '
173 git grep --max-depth 1 -n -e vvv $H >actual &&
174 test_cmp expected actual
177 test_expect_success
"grep --max-depth 0 -- t $L" '
181 git grep --max-depth 0 -n -e vvv $H -- t >actual &&
182 test_cmp expected actual
185 test_expect_success
"grep --max-depth 0 -- . t $L" '
190 git grep --max-depth 0 -n -e vvv $H -- . t >actual &&
191 test_cmp expected actual
194 test_expect_success
"grep --max-depth 0 -- t . $L" '
199 git grep --max-depth 0 -n -e vvv $H -- t . >actual &&
200 test_cmp expected actual
206 file:foo mmap bar_mmap
209 test_expect_success
'grep -e A --and -e B' '
210 git grep -e "foo mmap" --and -e bar_mmap >actual &&
211 test_cmp expected actual
215 file:foo_mmap bar mmap
216 file:foo_mmap bar mmap baz
220 test_expect_success
'grep ( -e A --or -e B ) --and -e B' '
221 git grep \( -e foo_ --or -e baz \) \
222 --and -e " mmap" >actual &&
223 test_cmp expected actual
230 test_expect_success
'grep -e A --and --not -e B' '
231 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
232 test_cmp expected actual
235 test_expect_success
'grep should ignore GREP_OPTIONS' '
236 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
237 test_cmp expected actual
240 test_expect_success
'grep -f, non-existent file' '
241 test_must_fail git grep -f patterns
247 file:foo_mmap bar mmap
248 file:foo mmap bar_mmap
249 file:foo_mmap bar mmap baz
256 test_expect_success
'grep -f, one pattern' '
257 git grep -f pattern >actual &&
258 test_cmp expected actual
264 file:foo_mmap bar mmap
265 file:foo mmap bar_mmap
266 file:foo_mmap bar mmap baz
277 test_expect_success
'grep -f, multiple patterns' '
278 git grep -f patterns >actual &&
279 test_cmp expected actual
285 file:foo_mmap bar mmap
286 file:foo mmap bar_mmap
287 file:foo_mmap bar mmap baz
301 test_expect_success
'grep -f, ignore empty lines' '
302 git grep -f patterns >actual &&
303 test_cmp expected actual
306 test_expect_success
'grep -f, ignore empty lines, read patterns from stdin' '
307 git grep -f - <patterns >actual &&
308 test_cmp expected actual
317 test_expect_success
'grep -q, silently report matches' '
319 git grep -q mmap >actual &&
320 test_cmp empty actual &&
321 test_must_fail git grep -q qfwfq >actual &&
322 test_cmp empty actual
325 # Create 1024 file names that sort between "y" and "z" to make sure
326 # the two files are handled by different calls to an external grep.
327 # This depends on MAXARGS in builtin-grep.c being 1024 or less.
328 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"
329 test_expect_success
'grep -C1, hunk mark between files' '
330 for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
332 git grep -C1 "^[yz]" >actual &&
333 test_cmp expected actual
336 test_expect_success
'grep -C1 hunk mark between files' '
337 git grep -C1 "^[yz]" >actual &&
338 test_cmp expected actual
341 test_expect_success
'log grep setup' '
344 GIT_AUTHOR_NAME="With * Asterisk" \
345 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
346 git commit -a -m "second" &&
350 git commit -a -m "third" &&
354 GIT_AUTHOR_NAME="Night Fall" \
355 GIT_AUTHOR_EMAIL="nitfol@frobozz.com" \
356 git commit -a -m "fourth"
359 test_expect_success
'log grep (1)' '
360 git log --author=author --pretty=tformat:%s >actual &&
361 ( echo third ; echo initial ) >expect &&
362 test_cmp expect actual
365 test_expect_success
'log grep (2)' '
366 git log --author=" * " -F --pretty=tformat:%s >actual &&
367 ( echo second ) >expect &&
368 test_cmp expect actual
371 test_expect_success
'log grep (3)' '
372 git log --author="^A U" --pretty=tformat:%s >actual &&
373 ( echo third ; echo initial ) >expect &&
374 test_cmp expect actual
377 test_expect_success
'log grep (4)' '
378 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
379 ( echo second ) >expect &&
380 test_cmp expect actual
383 test_expect_success
'log grep (5)' '
384 git log --author=Thor -F --pretty=tformat:%s >actual &&
385 ( echo third ; echo initial ) >expect &&
386 test_cmp expect actual
389 test_expect_success
'log grep (6)' '
390 git log --author=-0700 --pretty=tformat:%s >actual &&
392 test_cmp expect actual
395 test_expect_success
'log --grep --author implicitly uses all-match' '
396 # grep matches initial and second but not third
397 # author matches only initial and third
398 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
399 echo initial >expect &&
400 test_cmp expect actual
403 test_expect_success
'log with multiple --author uses union' '
404 git log --author="Thor" --author="Aster" --format=%s >actual &&
406 echo third && echo second && echo initial
408 test_cmp expect actual
411 test_expect_success
'log with --grep and multiple --author uses all-match' '
412 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
414 echo third && echo initial
416 test_cmp expect actual
419 test_expect_success
'log with --grep and multiple --author uses all-match' '
420 git log --author="Thor" --author="Night" --grep=q --format=%s >actual &&
422 test_cmp expect actual
425 test_expect_success
'grep with CE_VALID file' '
426 git update-index --assume-unchanged t/t &&
428 test "$(git grep test)" = "t/t:test" &&
429 git update-index --no-assume-unchanged t/t &&
434 hello.c=#include <stdio.h>
438 test_expect_success
'grep -p with userdiff' '
439 git config diff.custom.funcname "^#" &&
440 echo "hello.c diff=custom" >.gitattributes &&
441 git grep -p return >actual &&
442 test_cmp expected actual
446 hello.c=int main(int argc, const char **argv)
450 test_expect_success
'grep -p' '
451 rm -f .gitattributes &&
452 git grep -p return >actual &&
453 test_cmp expected actual
457 hello.c-#include <stdio.h>
458 hello.c=int main(int argc, const char **argv)
460 hello.c- printf("Hello world.\n");
464 test_expect_success
'grep -p -B5' '
465 git grep -p -B5 return >actual &&
466 test_cmp expected actual
469 test_expect_success
'grep from a subdirectory to search wider area (1)' '
472 cd s && git grep "x x x" ..
476 test_expect_success
'grep from a subdirectory to search wider area (2)' '
480 ( git grep xxyyzz .. >out ; echo $? >status )
482 test 1 = $(cat status)
487 hello.c:int main(int argc, const char **argv)
490 test_expect_success
'grep -Fi' '
491 git grep -Fi "CHAR *" >actual &&
492 test_cmp expected actual
495 test_expect_success
'outside of git repository' '
497 mkdir -p non/git/sub &&
498 echo hello >non/git/file1 &&
499 echo world >non/git/sub/file2 &&
500 echo ".*o*" >non/git/.gitignore &&
504 } >non/expect.full &&
505 echo file2:world >non/expect.sub &&
507 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
508 export GIT_CEILING_DIRECTORIES &&
510 test_must_fail git grep o &&
511 git grep --no-index o >../actual.full &&
512 test_cmp ../expect.full ../actual.full
514 test_must_fail git grep o &&
515 git grep --no-index o >../../actual.sub &&
516 test_cmp ../../expect.sub ../../actual.sub
520 test_expect_success
'inside git repository but with --no-index' '
522 mkdir -p is/git/sub &&
523 echo hello >is/git/file1 &&
524 echo world >is/git/sub/file2 &&
525 echo ".*o*" >is/git/.gitignore &&
530 : >is/expect.empty &&
531 echo file2:world >is/expect.sub &&
535 test_must_fail git grep o >../actual.full &&
536 test_cmp ../expect.empty ../actual.full &&
537 git grep --no-index o >../actual.full &&
538 test_cmp ../expect.full ../actual.full &&
540 test_must_fail git grep o >../../actual.sub &&
541 test_cmp ../../expect.empty ../../actual.sub &&
542 git grep --no-index o >../../actual.sub &&
543 test_cmp ../../expect.sub ../../actual.sub
547 test_expect_success
'setup double-dash tests' '
548 cat >double-dash <<EOF &&
559 test_expect_success
'grep -- pattern' '
560 git grep -- "->" >actual &&
561 test_cmp expected actual
563 test_expect_success
'grep -- pattern -- pathspec' '
564 git grep -- "->" -- double-dash >actual &&
565 test_cmp expected actual
567 test_expect_success
'grep -e pattern -- path' '
568 git grep -e "->" -- double-dash >actual &&
569 test_cmp expected actual
575 test_expect_success
'grep -e -- -- path' '
576 git grep -e -- -- double-dash >actual &&
577 test_cmp expected actual