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");
20 test_expect_success setup
'
24 echo foo_mmap bar mmap
25 echo foo mmap bar_mmap
26 echo foo_mmap bar mmap baz
34 git add file w x y z t/t hello.c &&
39 test_expect_success
'grep should not segfault with a bad input' '
40 test_must_fail git grep "("
46 HEAD
) HC
='HEAD:' L
='HEAD' ;;
47 '') HC
= L
='in working tree' ;;
50 test_expect_success
"grep -w $L" '
52 echo ${HC}file:1:foo mmap bar
53 echo ${HC}file:3:foo_mmap bar mmap
54 echo ${HC}file:4:foo mmap bar_mmap
55 echo ${HC}file:5:foo_mmap bar mmap baz
57 git grep -n -w -e mmap $H >actual &&
61 test_expect_success
"grep -w $L (w)" '
63 ! git grep -n -w -e "^w" >actual &&
64 test_cmp expected actual
67 test_expect_success
"grep -w $L (x)" '
69 echo ${HC}x:1:x x xx x
71 git grep -n -w -e "x xx* x" $H >actual &&
75 test_expect_success
"grep -w $L (y-1)" '
79 git grep -n -w -e "^y" $H >actual &&
83 test_expect_success
"grep -w $L (y-2)" '
85 if git grep -n -w -e "^y y" $H >actual
87 echo should not have matched
95 test_expect_success
"grep -w $L (z)" '
97 if git grep -n -w -e "^z" $H >actual
99 echo should not have matched
107 test_expect_success
"grep $L (t-1)" '
108 echo "${HC}t/t:1:test" >expected &&
109 git grep -n -e test $H >actual &&
113 test_expect_success
"grep $L (t-2)" '
114 echo "${HC}t:1:test" >expected &&
117 git grep -n -e test $H
122 test_expect_success
"grep $L (t-3)" '
123 echo "${HC}t/t:1:test" >expected &&
126 git grep --full-name -n -e test $H
131 test_expect_success
"grep -c $L (no /dev/null)" '
132 ! git grep -c test $H | grep /dev/null
138 file:foo mmap bar_mmap
141 test_expect_success
'grep -e A --and -e B' '
142 git grep -e "foo mmap" --and -e bar_mmap >actual &&
143 test_cmp expected actual
147 file:foo_mmap bar mmap
148 file:foo_mmap bar mmap baz
152 test_expect_success
'grep ( -e A --or -e B ) --and -e B' '
153 git grep \( -e foo_ --or -e baz \) \
154 --and -e " mmap" >actual &&
155 test_cmp expected actual
162 test_expect_success
'grep -e A --and --not -e B' '
163 git grep -e "foo mmap" --and --not -e bar_mmap >actual &&
164 test_cmp expected actual
173 # Create 1024 file names that sort between "y" and "z" to make sure
174 # the two files are handled by different calls to an external grep.
175 # This depends on MAXARGS in builtin-grep.c being 1024 or less.
176 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"
177 test_expect_success
'grep -C1, hunk mark between files' '
178 for a in $c32; do for b in $c32; do : >y-$a$b; done; done &&
180 git grep -C1 "^[yz]" >actual &&
181 test_cmp expected actual
184 test_expect_success
'grep -C1 --no-ext-grep, hunk mark between files' '
185 git grep -C1 --no-ext-grep "^[yz]" >actual &&
186 test_cmp expected actual
189 test_expect_success
'log grep setup' '
192 GIT_AUTHOR_NAME="With * Asterisk" \
193 GIT_AUTHOR_EMAIL="xyzzy@frotz.com" \
194 git commit -a -m "second" &&
198 git commit -a -m "third"
202 test_expect_success
'log grep (1)' '
203 git log --author=author --pretty=tformat:%s >actual &&
204 ( echo third ; echo initial ) >expect &&
205 test_cmp expect actual
208 test_expect_success
'log grep (2)' '
209 git log --author=" * " -F --pretty=tformat:%s >actual &&
210 ( echo second ) >expect &&
211 test_cmp expect actual
214 test_expect_success
'log grep (3)' '
215 git log --author="^A U" --pretty=tformat:%s >actual &&
216 ( echo third ; echo initial ) >expect &&
217 test_cmp expect actual
220 test_expect_success
'log grep (4)' '
221 git log --author="frotz\.com>$" --pretty=tformat:%s >actual &&
222 ( echo second ) >expect &&
223 test_cmp expect actual
226 test_expect_success
'log grep (5)' '
227 git log --author=Thor -F --grep=Thu --pretty=tformat:%s >actual &&
228 ( echo third ; echo initial ) >expect &&
229 test_cmp expect actual
232 test_expect_success
'log grep (6)' '
233 git log --author=-0700 --pretty=tformat:%s >actual &&
235 test_cmp expect actual
238 test_expect_success
'grep with CE_VALID file' '
239 git update-index --assume-unchanged t/t &&
241 test "$(git grep --no-ext-grep test)" = "t/t:test" &&
242 git update-index --no-assume-unchanged t/t &&
247 hello.c=#include <stdio.h>
251 test_expect_success
'grep -p with userdiff' '
252 git config diff.custom.funcname "^#" &&
253 echo "hello.c diff=custom" >.gitattributes &&
254 git grep -p return >actual &&
255 test_cmp expected actual
259 hello.c=int main(int argc, const char **argv)
263 test_expect_success
'grep -p' '
264 rm -f .gitattributes &&
265 git grep -p return >actual &&
266 test_cmp expected actual
270 hello.c-#include <stdio.h>
271 hello.c=int main(int argc, const char **argv)
273 hello.c- printf("Hello world.\n");
277 test_expect_success
'grep -p -B5' '
278 git grep -p -B5 return >actual &&
279 test_cmp expected actual