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
188 file:foo mmap bar_mmap
191 test_expect_success
'grep -e A --and -e B' '
192 git grep -e "foo mmap" --and -e bar_mmap >actual &&
193 test_cmp expected actual
197 file:foo_mmap bar mmap
198 file:foo_mmap bar mmap baz
202 test_expect_success
'grep ( -e A --or -e B ) --and -e B' '
203 git grep \( -e foo_ --or -e baz \) \
204 --and -e " mmap" >actual &&
205 test_cmp expected actual
212 test_expect_success
'grep -e A --and --not -e B' '
213 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
214 test_cmp expected actual
217 test_expect_success
'grep should ignore GREP_OPTIONS' '
218 GREP_OPTIONS=-v git grep " mmap bar\$" >actual &&
219 test_cmp expected actual
222 test_expect_success
'grep -f, non-existent file' '
223 test_must_fail git grep -f patterns
229 file:foo_mmap bar mmap
230 file:foo mmap bar_mmap
231 file:foo_mmap bar mmap baz
238 test_expect_success
'grep -f, one pattern' '
239 git grep -f pattern >actual &&
240 test_cmp expected actual
246 file:foo_mmap bar mmap
247 file:foo mmap bar_mmap
248 file:foo_mmap bar mmap baz
259 test_expect_success
'grep -f, multiple patterns' '
260 git grep -f patterns >actual &&
261 test_cmp expected actual
267 file:foo_mmap bar mmap
268 file:foo mmap bar_mmap
269 file:foo_mmap bar mmap baz
283 test_expect_success
'grep -f, ignore empty lines' '
284 git grep -f patterns >actual &&
285 test_cmp expected actual
294 test_expect_success
'grep -q, silently report matches' '
296 git grep -q mmap >actual &&
297 test_cmp empty actual &&
298 test_must_fail git grep -q qfwfq >actual &&
299 test_cmp empty actual
302 # Create 1024 file names that sort between "y" and "z" to make sure
303 # the two files are handled by different calls to an external grep.
304 # This depends on MAXARGS in builtin-grep.c being 1024 or less.
305 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"
306 test_expect_success
'grep -C1, hunk mark between files' '
307 for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
309 git grep -C1 "^[yz]" >actual &&
310 test_cmp expected actual
313 test_expect_success
'grep -C1 hunk mark between files' '
314 git grep -C1 "^[yz]" >actual &&
315 test_cmp expected actual
318 test_expect_success
'log grep setup' '
321 GIT_AUTHOR_NAME="With * Asterisk" \
322 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
323 git commit -a -m "second" &&
327 git commit -a -m "third" &&
331 GIT_AUTHOR_NAME="Night Fall" \
332 GIT_AUTHOR_EMAIL="nitfol@frobozz.com" \
333 git commit -a -m "fourth"
336 test_expect_success
'log grep (1)' '
337 git log --author=author --pretty=tformat:%s >actual &&
338 ( echo third ; echo initial ) >expect &&
339 test_cmp expect actual
342 test_expect_success
'log grep (2)' '
343 git log --author=" * " -F --pretty=tformat:%s >actual &&
344 ( echo second ) >expect &&
345 test_cmp expect actual
348 test_expect_success
'log grep (3)' '
349 git log --author="^A U" --pretty=tformat:%s >actual &&
350 ( echo third ; echo initial ) >expect &&
351 test_cmp expect actual
354 test_expect_success
'log grep (4)' '
355 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
356 ( echo second ) >expect &&
357 test_cmp expect actual
360 test_expect_success
'log grep (5)' '
361 git log --author=Thor -F --pretty=tformat:%s >actual &&
362 ( echo third ; echo initial ) >expect &&
363 test_cmp expect actual
366 test_expect_success
'log grep (6)' '
367 git log --author=-0700 --pretty=tformat:%s >actual &&
369 test_cmp expect actual
372 test_expect_success
'log --grep --author implicitly uses all-match' '
373 # grep matches initial and second but not third
374 # author matches only initial and third
375 git log --author="A U Thor" --grep=s --grep=l --format=%s >actual &&
376 echo initial >expect &&
377 test_cmp expect actual
380 test_expect_success
'log with multiple --author uses union' '
381 git log --author="Thor" --author="Aster" --format=%s >actual &&
383 echo third && echo second && echo initial
385 test_cmp expect actual
388 test_expect_success
'log with --grep and multiple --author uses all-match' '
389 git log --author="Thor" --author="Night" --grep=i --format=%s >actual &&
391 echo third && echo initial
393 test_cmp expect actual
396 test_expect_success
'log with --grep and multiple --author uses all-match' '
397 git log --author="Thor" --author="Night" --grep=q --format=%s >actual &&
399 test_cmp expect actual
402 test_expect_success
'grep with CE_VALID file' '
403 git update-index --assume-unchanged t/t &&
405 test "$(git grep test)" = "t/t:test" &&
406 git update-index --no-assume-unchanged t/t &&
411 hello.c=#include <stdio.h>
415 test_expect_success
'grep -p with userdiff' '
416 git config diff.custom.funcname "^#" &&
417 echo "hello.c diff=custom" >.gitattributes &&
418 git grep -p return >actual &&
419 test_cmp expected actual
423 hello.c=int main(int argc, const char **argv)
427 test_expect_success
'grep -p' '
428 rm -f .gitattributes &&
429 git grep -p return >actual &&
430 test_cmp expected actual
434 hello.c-#include <stdio.h>
435 hello.c=int main(int argc, const char **argv)
437 hello.c- printf("Hello world.\n");
441 test_expect_success
'grep -p -B5' '
442 git grep -p -B5 return >actual &&
443 test_cmp expected actual
446 test_expect_success
'grep from a subdirectory to search wider area (1)' '
449 cd s && git grep "x x x" ..
453 test_expect_success
'grep from a subdirectory to search wider area (2)' '
457 ( git grep xxyyzz .. >out ; echo $? >status )
459 test 1 = $(cat status)
464 hello.c:int main(int argc, const char **argv)
467 test_expect_success
'grep -Fi' '
468 git grep -Fi "CHAR *" >actual &&
469 test_cmp expected actual
472 test_expect_success
'outside of git repository' '
474 mkdir -p non/git/sub &&
475 echo hello >non/git/file1 &&
476 echo world >non/git/sub/file2 &&
477 echo ".*o*" >non/git/.gitignore &&
481 } >non/expect.full &&
482 echo file2:world >non/expect.sub &&
484 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
485 export GIT_CEILING_DIRECTORIES &&
487 test_must_fail git grep o &&
488 git grep --no-index o >../actual.full &&
489 test_cmp ../expect.full ../actual.full
491 test_must_fail git grep o &&
492 git grep --no-index o >../../actual.sub &&
493 test_cmp ../../expect.sub ../../actual.sub
497 test_expect_success
'inside git repository but with --no-index' '
499 mkdir -p is/git/sub &&
500 echo hello >is/git/file1 &&
501 echo world >is/git/sub/file2 &&
502 echo ".*o*" >is/git/.gitignore &&
507 : >is/expect.empty &&
508 echo file2:world >is/expect.sub &&
512 test_must_fail git grep o >../actual.full &&
513 test_cmp ../expect.empty ../actual.full &&
514 git grep --no-index o >../actual.full &&
515 test_cmp ../expect.full ../actual.full &&
517 test_must_fail git grep o >../../actual.sub &&
518 test_cmp ../../expect.empty ../../actual.sub &&
519 git grep --no-index o >../../actual.sub &&
520 test_cmp ../../expect.sub ../../actual.sub
524 test_expect_success
'setup double-dash tests' '
525 cat >double-dash <<EOF &&
536 test_expect_success
'grep -- pattern' '
537 git grep -- "->" >actual &&
538 test_cmp expected actual
540 test_expect_success
'grep -- pattern -- pathspec' '
541 git grep -- "->" -- double-dash >actual &&
542 test_cmp expected actual
544 test_expect_success
'grep -e pattern -- path' '
545 git grep -e "->" -- double-dash >actual &&
546 test_cmp expected actual
552 test_expect_success
'grep -e -- -- path' '
553 git grep -e -- -- double-dash >actual &&
554 test_cmp expected actual