Code

Merge branch 'jc/checkout-detached'
[git.git] / t / t7002-grep.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Junio C Hamano
4 #
6 test_description='git grep various.
7 '
9 . ./test-lib.sh
11 cat >hello.c <<EOF
12 #include <stdio.h>
13 int main(int argc, const char **argv)
14 {
15         printf("Hello world.\n");
16         return 0;
17         /* char ?? */
18 }
19 EOF
21 test_expect_success setup '
22         {
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 &&
29         echo vvv >v &&
30         echo ww w >w &&
31         echo x x xx x >x &&
32         echo y yy >y &&
33         echo zzz > z &&
34         mkdir t &&
35         echo test >t/t &&
36         echo vvv >t/v &&
37         mkdir t/a &&
38         echo vvv >t/a/v &&
39         git add . &&
40         test_tick &&
41         git commit -m initial
42 '
44 test_expect_success 'grep should not segfault with a bad input' '
45         test_must_fail git grep "("
46 '
48 for H in HEAD ''
49 do
50         case "$H" in
51         HEAD)   HC='HEAD:' L='HEAD' ;;
52         '')     HC= L='in working tree' ;;
53         esac
55         test_expect_success "grep -w $L" '
56                 {
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
61                 } >expected &&
62                 git grep -n -w -e mmap $H >actual &&
63                 diff expected actual
64         '
66         test_expect_success "grep -w $L (w)" '
67                 : >expected &&
68                 ! git grep -n -w -e "^w" >actual &&
69                 test_cmp expected actual
70         '
72         test_expect_success "grep -w $L (x)" '
73                 {
74                         echo ${HC}x:1:x x xx x
75                 } >expected &&
76                 git grep -n -w -e "x xx* x" $H >actual &&
77                 diff expected actual
78         '
80         test_expect_success "grep -w $L (y-1)" '
81                 {
82                         echo ${HC}y:1:y yy
83                 } >expected &&
84                 git grep -n -w -e "^y" $H >actual &&
85                 diff expected actual
86         '
88         test_expect_success "grep -w $L (y-2)" '
89                 : >expected &&
90                 if git grep -n -w -e "^y y" $H >actual
91                 then
92                         echo should not have matched
93                         cat actual
94                         false
95                 else
96                         diff expected actual
97                 fi
98         '
100         test_expect_success "grep -w $L (z)" '
101                 : >expected &&
102                 if git grep -n -w -e "^z" $H >actual
103                 then
104                         echo should not have matched
105                         cat actual
106                         false
107                 else
108                         diff expected actual
109                 fi
110         '
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                 diff expected actual
116         '
118         test_expect_success "grep $L (t-2)" '
119                 echo "${HC}t:1:test" >expected &&
120                 (
121                         cd t &&
122                         git grep -n -e test $H
123                 ) >actual &&
124                 diff expected actual
125         '
127         test_expect_success "grep $L (t-3)" '
128                 echo "${HC}t/t:1:test" >expected &&
129                 (
130                         cd t &&
131                         git grep --full-name -n -e test $H
132                 ) >actual &&
133                 diff expected actual
134         '
136         test_expect_success "grep -c $L (no /dev/null)" '
137                 ! git grep -c test $H | grep /dev/null
138         '
140         test_expect_success "grep --max-depth -1 $L" '
141                 {
142                         echo ${HC}t/a/v:1:vvv
143                         echo ${HC}t/v:1:vvv
144                         echo ${HC}v:1:vvv
145                 } >expected &&
146                 git grep --max-depth -1 -n -e vvv $H >actual &&
147                 test_cmp expected actual
148         '
150         test_expect_success "grep --max-depth 0 $L" '
151                 {
152                         echo ${HC}v:1:vvv
153                 } >expected &&
154                 git grep --max-depth 0 -n -e vvv $H >actual &&
155                 test_cmp expected actual
156         '
158         test_expect_success "grep --max-depth 0 -- '*' $L" '
159                 {
160                         echo ${HC}t/a/v:1:vvv
161                         echo ${HC}t/v:1:vvv
162                         echo ${HC}v:1:vvv
163                 } >expected &&
164                 git grep --max-depth 0 -n -e vvv $H -- "*" >actual &&
165                 test_cmp expected actual
166         '
168         test_expect_success "grep --max-depth 1 $L" '
169                 {
170                         echo ${HC}t/v:1:vvv
171                         echo ${HC}v:1:vvv
172                 } >expected &&
173                 git grep --max-depth 1 -n -e vvv $H >actual &&
174                 test_cmp expected actual
175         '
177         test_expect_success "grep --max-depth 0 -- t $L" '
178                 {
179                         echo ${HC}t/v:1:vvv
180                 } >expected &&
181                 git grep --max-depth 0 -n -e vvv $H -- t >actual &&
182                 test_cmp expected actual
183         '
185 done
187 cat >expected <<EOF
188 file:foo mmap bar_mmap
189 EOF
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
196 cat >expected <<EOF
197 file:foo_mmap bar mmap
198 file:foo_mmap bar mmap baz
199 EOF
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
208 cat >expected <<EOF
209 file:foo mmap bar
210 EOF
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
226 cat >expected <<EOF
227 file:foo mmap bar
228 file:foo_mmap bar
229 file:foo_mmap bar mmap
230 file:foo mmap bar_mmap
231 file:foo_mmap bar mmap baz
232 EOF
234 cat >pattern <<EOF
235 mmap
236 EOF
238 test_expect_success 'grep -f, one pattern' '
239         git grep -f pattern >actual &&
240         test_cmp expected actual
243 cat >expected <<EOF
244 file:foo mmap bar
245 file:foo_mmap bar
246 file:foo_mmap bar mmap
247 file:foo mmap bar_mmap
248 file:foo_mmap bar mmap baz
249 t/a/v:vvv
250 t/v:vvv
251 v:vvv
252 EOF
254 cat >patterns <<EOF
255 mmap
256 vvv
257 EOF
259 test_expect_success 'grep -f, multiple patterns' '
260         git grep -f patterns >actual &&
261         test_cmp expected actual
264 cat >expected <<EOF
265 file:foo mmap bar
266 file:foo_mmap bar
267 file:foo_mmap bar mmap
268 file:foo mmap bar_mmap
269 file:foo_mmap bar mmap baz
270 t/a/v:vvv
271 t/v:vvv
272 v:vvv
273 EOF
275 cat >patterns <<EOF
277 mmap
279 vvv
281 EOF
283 test_expect_success 'grep -f, ignore empty lines' '
284         git grep -f patterns >actual &&
285         test_cmp expected actual
288 cat >expected <<EOF
289 y:y yy
290 --
291 z:zzz
292 EOF
294 test_expect_success 'grep -q, silently report matches' '
295         >empty &&
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 &&
308         git add y-?? &&
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' '
319         echo a >>file &&
320         test_tick &&
321         GIT_AUTHOR_NAME="With * Asterisk" \
322         GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
323         git commit -a -m "second" &&
325         echo a >>file &&
326         test_tick &&
327         git commit -a -m "third"
331 test_expect_success 'log grep (1)' '
332         git log --author=author --pretty=tformat:%s >actual &&
333         ( echo third ; echo initial ) >expect &&
334         test_cmp expect actual
337 test_expect_success 'log grep (2)' '
338         git log --author=" * " -F --pretty=tformat:%s >actual &&
339         ( echo second ) >expect &&
340         test_cmp expect actual
343 test_expect_success 'log grep (3)' '
344         git log --author="^A U" --pretty=tformat:%s >actual &&
345         ( echo third ; echo initial ) >expect &&
346         test_cmp expect actual
349 test_expect_success 'log grep (4)' '
350         git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
351         ( echo second ) >expect &&
352         test_cmp expect actual
355 test_expect_success 'log grep (5)' '
356         git log --author=Thor -F --grep=Thu --pretty=tformat:%s >actual &&
357         ( echo third ; echo initial ) >expect &&
358         test_cmp expect actual
361 test_expect_success 'log grep (6)' '
362         git log --author=-0700  --pretty=tformat:%s >actual &&
363         >expect &&
364         test_cmp expect actual
367 test_expect_success 'grep with CE_VALID file' '
368         git update-index --assume-unchanged t/t &&
369         rm t/t &&
370         test "$(git grep test)" = "t/t:test" &&
371         git update-index --no-assume-unchanged t/t &&
372         git checkout t/t
375 cat >expected <<EOF
376 hello.c=#include <stdio.h>
377 hello.c:        return 0;
378 EOF
380 test_expect_success 'grep -p with userdiff' '
381         git config diff.custom.funcname "^#" &&
382         echo "hello.c diff=custom" >.gitattributes &&
383         git grep -p return >actual &&
384         test_cmp expected actual
387 cat >expected <<EOF
388 hello.c=int main(int argc, const char **argv)
389 hello.c:        return 0;
390 EOF
392 test_expect_success 'grep -p' '
393         rm -f .gitattributes &&
394         git grep -p return >actual &&
395         test_cmp expected actual
398 cat >expected <<EOF
399 hello.c-#include <stdio.h>
400 hello.c=int main(int argc, const char **argv)
401 hello.c-{
402 hello.c-        printf("Hello world.\n");
403 hello.c:        return 0;
404 EOF
406 test_expect_success 'grep -p -B5' '
407         git grep -p -B5 return >actual &&
408         test_cmp expected actual
411 test_expect_success 'grep from a subdirectory to search wider area (1)' '
412         mkdir -p s &&
413         (
414                 cd s && git grep "x x x" ..
415         )
418 test_expect_success 'grep from a subdirectory to search wider area (2)' '
419         mkdir -p s &&
420         (
421                 cd s || exit 1
422                 ( git grep xxyyzz .. >out ; echo $? >status )
423                 ! test -s out &&
424                 test 1 = $(cat status)
425         )
428 cat >expected <<EOF
429 hello.c:int main(int argc, const char **argv)
430 EOF
432 test_expect_success 'grep -Fi' '
433         git grep -Fi "CHAR *" >actual &&
434         test_cmp expected actual
437 test_expect_success 'outside of git repository' '
438         rm -fr non &&
439         mkdir -p non/git/sub &&
440         echo hello >non/git/file1 &&
441         echo world >non/git/sub/file2 &&
442         echo ".*o*" >non/git/.gitignore &&
443         {
444                 echo file1:hello &&
445                 echo sub/file2:world
446         } >non/expect.full &&
447         echo file2:world >non/expect.sub
448         (
449                 GIT_CEILING_DIRECTORIES="$(pwd)/non/git" &&
450                 export GIT_CEILING_DIRECTORIES &&
451                 cd non/git &&
452                 test_must_fail git grep o &&
453                 git grep --no-index o >../actual.full &&
454                 test_cmp ../expect.full ../actual.full
455                 cd sub &&
456                 test_must_fail git grep o &&
457                 git grep --no-index o >../../actual.sub &&
458                 test_cmp ../../expect.sub ../../actual.sub
459         )
462 test_expect_success 'inside git repository but with --no-index' '
463         rm -fr is &&
464         mkdir -p is/git/sub &&
465         echo hello >is/git/file1 &&
466         echo world >is/git/sub/file2 &&
467         echo ".*o*" >is/git/.gitignore &&
468         {
469                 echo file1:hello &&
470                 echo sub/file2:world
471         } >is/expect.full &&
472         : >is/expect.empty &&
473         echo file2:world >is/expect.sub
474         (
475                 cd is/git &&
476                 git init &&
477                 test_must_fail git grep o >../actual.full &&
478                 test_cmp ../expect.empty ../actual.full &&
479                 git grep --no-index o >../actual.full &&
480                 test_cmp ../expect.full ../actual.full &&
481                 cd sub &&
482                 test_must_fail git grep o >../../actual.sub &&
483                 test_cmp ../../expect.empty ../../actual.sub &&
484                 git grep --no-index o >../../actual.sub &&
485                 test_cmp ../../expect.sub ../../actual.sub
486         )
489 test_expect_success 'setup double-dash tests' '
490 cat >double-dash <<EOF &&
491 --
492 ->
493 other
494 EOF
495 git add double-dash
498 cat >expected <<EOF
499 double-dash:->
500 EOF
501 test_expect_success 'grep -- pattern' '
502         git grep -- "->" >actual &&
503         test_cmp expected actual
505 test_expect_success 'grep -- pattern -- pathspec' '
506         git grep -- "->" -- double-dash >actual &&
507         test_cmp expected actual
509 test_expect_success 'grep -e pattern -- path' '
510         git grep -e "->" -- double-dash >actual &&
511         test_cmp expected actual
514 cat >expected <<EOF
515 double-dash:--
516 EOF
517 test_expect_success 'grep -e -- -- path' '
518         git grep -e -- -- double-dash >actual &&
519         test_cmp expected actual
522 test_done