2010-05-22 23:26:39 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='git grep in binary files'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' "
|
2010-09-09 21:15:57 +02:00
|
|
|
echo 'binaryQfile' | q_to_nul >a &&
|
2010-05-22 23:26:39 +02:00
|
|
|
git add a &&
|
|
|
|
git commit -m.
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'git grep ina a' '
|
|
|
|
echo Binary file a matches >expect &&
|
|
|
|
git grep ina a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git grep -ah ina a' '
|
|
|
|
git grep -ah ina a >actual &&
|
|
|
|
test_cmp a actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git grep -I ina a' '
|
|
|
|
: >expect &&
|
|
|
|
test_must_fail git grep -I ina a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:29:35 +02:00
|
|
|
test_expect_success 'git grep -c ina a' '
|
|
|
|
echo a:1 >expect &&
|
|
|
|
git grep -c ina a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:30:48 +02:00
|
|
|
test_expect_success 'git grep -l ina a' '
|
|
|
|
echo a >expect &&
|
|
|
|
git grep -l ina a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:26:39 +02:00
|
|
|
test_expect_success 'git grep -L bar a' '
|
|
|
|
echo a >expect &&
|
|
|
|
git grep -L bar a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'git grep -q ina a' '
|
|
|
|
: >expect &&
|
|
|
|
git grep -q ina a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:32:43 +02:00
|
|
|
test_expect_success 'git grep -F ile a' '
|
|
|
|
git grep -F ile a
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:34:06 +02:00
|
|
|
test_expect_success 'git grep -Fi iLE a' '
|
|
|
|
git grep -Fi iLE a
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:35:07 +02:00
|
|
|
# This test actually passes on platforms where regexec() supports the
|
|
|
|
# flag REG_STARTEND.
|
2010-08-17 11:24:41 +02:00
|
|
|
test_expect_success 'git grep ile a' '
|
2010-05-22 23:35:07 +02:00
|
|
|
git grep ile a
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_failure 'git grep .fi a' '
|
|
|
|
git grep .fi a
|
|
|
|
'
|
|
|
|
|
2010-05-22 23:43:43 +02:00
|
|
|
test_expect_success 'git grep -F y<NUL>f a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'yQf' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
git grep -f f -F a
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'git grep -F y<NUL>x a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'yQx' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
test_must_fail git grep -f f -F a
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'git grep -Fi Y<NUL>f a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'YQf' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
git grep -f f -Fi a
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_failure 'git grep -Fi Y<NUL>x a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'YQx' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
test_must_fail git grep -f f -Fi a
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'git grep y<NUL>f a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'yQf' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
git grep -f f a
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_failure 'git grep y<NUL>x a' "
|
2010-09-09 21:15:57 +02:00
|
|
|
printf 'yQx' | q_to_nul >f &&
|
2010-05-22 23:43:43 +02:00
|
|
|
test_must_fail git grep -f f a
|
|
|
|
"
|
|
|
|
|
2010-05-22 23:26:39 +02:00
|
|
|
test_done
|