2007-07-06 07:45:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Johannes E. Schindelin
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='Test custom diff function name patterns'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2014-03-21 21:07:18 +00:00
|
|
|
test_expect_success 'setup' '
|
|
|
|
# a non-trivial custom pattern
|
|
|
|
git config diff.custom1.funcname "!static
|
|
|
|
!String
|
|
|
|
[^ ].*s.*" &&
|
|
|
|
|
|
|
|
# a custom pattern which matches to end of line
|
|
|
|
git config diff.custom2.funcname "......Beer\$" &&
|
|
|
|
|
|
|
|
# alternation in pattern
|
|
|
|
git config diff.custom3.funcname "Beer$" &&
|
2014-03-21 21:07:19 +00:00
|
|
|
git config diff.custom3.xfuncname "^[ ]*((public|static).*)$" &&
|
|
|
|
|
|
|
|
# for regexp compilation tests
|
|
|
|
echo A >A.java &&
|
|
|
|
echo B >B.java
|
2014-03-21 21:07:18 +00:00
|
|
|
'
|
2011-05-21 19:25:14 +00:00
|
|
|
|
2021-04-08 15:04:21 +00:00
|
|
|
test_expect_success 'setup: test-tool userdiff' '
|
|
|
|
# Make sure additions to builtin_drivers are sorted
|
|
|
|
test_when_finished "rm builtin-drivers.sorted" &&
|
|
|
|
test-tool userdiff list-builtin-drivers >builtin-drivers &&
|
|
|
|
test_file_not_empty builtin-drivers &&
|
|
|
|
sort <builtin-drivers >builtin-drivers.sorted &&
|
|
|
|
test_cmp builtin-drivers.sorted builtin-drivers &&
|
|
|
|
|
|
|
|
# Ditto, but "custom" requires the .git directory and config
|
|
|
|
# to be setup and read.
|
|
|
|
test_when_finished "rm custom-drivers.sorted" &&
|
|
|
|
test-tool userdiff list-custom-drivers >custom-drivers &&
|
|
|
|
test_file_not_empty custom-drivers &&
|
|
|
|
sort <custom-drivers >custom-drivers.sorted &&
|
|
|
|
test_cmp custom-drivers.sorted custom-drivers
|
|
|
|
'
|
|
|
|
|
2014-03-21 21:07:15 +00:00
|
|
|
diffpatterns="
|
2021-04-08 15:04:21 +00:00
|
|
|
$(cat builtin-drivers)
|
|
|
|
$(cat custom-drivers)
|
2014-03-21 21:07:15 +00:00
|
|
|
"
|
|
|
|
|
|
|
|
for p in $diffpatterns
|
2008-09-22 23:19:05 +00:00
|
|
|
do
|
|
|
|
test_expect_success "builtin $p pattern compiles" '
|
2011-05-21 19:11:33 +00:00
|
|
|
echo "*.java diff=$p" >.gitattributes &&
|
2011-05-21 19:25:14 +00:00
|
|
|
test_expect_code 1 git diff --no-index \
|
2014-03-21 21:07:19 +00:00
|
|
|
A.java B.java 2>msg &&
|
2014-08-13 19:30:11 +00:00
|
|
|
test_i18ngrep ! fatal msg &&
|
|
|
|
test_i18ngrep ! error msg
|
2008-09-22 23:19:05 +00:00
|
|
|
'
|
2010-09-09 19:02:47 +00:00
|
|
|
test_expect_success "builtin $p wordRegex pattern compiles" '
|
2011-05-21 19:11:33 +00:00
|
|
|
echo "*.java diff=$p" >.gitattributes &&
|
2011-05-21 19:25:14 +00:00
|
|
|
test_expect_code 1 git diff --no-index --word-diff \
|
2014-03-21 21:07:19 +00:00
|
|
|
A.java B.java 2>msg &&
|
2014-08-13 19:30:11 +00:00
|
|
|
test_i18ngrep ! fatal msg &&
|
|
|
|
test_i18ngrep ! error msg
|
2010-09-09 19:02:47 +00:00
|
|
|
'
|
2023-05-06 04:15:29 +00:00
|
|
|
|
|
|
|
test_expect_success "builtin $p pattern compiles on bare repo with --attr-source" '
|
|
|
|
test_when_finished "rm -rf bare.git" &&
|
|
|
|
git checkout -B master &&
|
|
|
|
git add . &&
|
|
|
|
echo "*.java diff=notexist" >.gitattributes &&
|
|
|
|
git add .gitattributes &&
|
|
|
|
git commit -am "changing gitattributes" &&
|
|
|
|
git checkout -B branchA &&
|
|
|
|
echo "*.java diff=$p" >.gitattributes &&
|
|
|
|
git add .gitattributes &&
|
|
|
|
git commit -am "changing gitattributes" &&
|
|
|
|
git clone --bare --no-local . bare.git &&
|
|
|
|
git -C bare.git symbolic-ref HEAD refs/heads/master &&
|
|
|
|
test_expect_code 1 git -C bare.git --attr-source=branchA \
|
|
|
|
diff --exit-code HEAD:A.java HEAD:B.java 2>msg &&
|
|
|
|
test_i18ngrep ! fatal msg &&
|
|
|
|
test_i18ngrep ! error msg
|
|
|
|
'
|
2008-09-22 23:19:05 +00:00
|
|
|
done
|
|
|
|
|
2007-07-06 07:45:10 +00:00
|
|
|
test_expect_success 'last regexp must not be negated' '
|
2014-03-21 21:07:19 +00:00
|
|
|
echo "*.java diff=java" >.gitattributes &&
|
2011-05-21 19:22:28 +00:00
|
|
|
test_config diff.java.funcname "!static" &&
|
2014-03-21 21:07:19 +00:00
|
|
|
test_expect_code 128 git diff --no-index A.java B.java 2>msg &&
|
|
|
|
test_i18ngrep ": Last expression must not be negated:" msg
|
2007-07-06 07:45:10 +00:00
|
|
|
'
|
|
|
|
|
2014-03-21 21:07:15 +00:00
|
|
|
test_expect_success 'setup hunk header tests' '
|
|
|
|
for i in $diffpatterns
|
|
|
|
do
|
2021-12-09 05:11:13 +00:00
|
|
|
echo "$i-* diff=$i" || return 1
|
2014-03-21 21:07:15 +00:00
|
|
|
done > .gitattributes &&
|
|
|
|
|
|
|
|
# add all test files to the index
|
|
|
|
(
|
|
|
|
cd "$TEST_DIRECTORY"/t4018 &&
|
|
|
|
git --git-dir="$TRASH_DIRECTORY/.git" add .
|
|
|
|
) &&
|
|
|
|
|
|
|
|
# place modified files in the worktree
|
|
|
|
for i in $(git ls-files)
|
|
|
|
do
|
|
|
|
sed -e "s/ChangeMe/IWasChanged/" <"$TEST_DIRECTORY/t4018/$i" >"$i" || return 1
|
|
|
|
done
|
|
|
|
'
|
|
|
|
|
|
|
|
# check each individual file
|
|
|
|
for i in $(git ls-files)
|
|
|
|
do
|
2021-04-08 15:04:22 +00:00
|
|
|
test_expect_success "hunk header: $i" "
|
2014-03-21 21:07:15 +00:00
|
|
|
git diff -U1 $i >actual &&
|
|
|
|
grep '@@ .* @@.*RIGHT' actual
|
|
|
|
"
|
|
|
|
done
|
|
|
|
|
2007-07-06 07:45:10 +00:00
|
|
|
test_done
|