3 # Copyright (c) 2007 Johannes E. Schindelin
6 test_description
='Test custom diff function name patterns'
10 test_expect_success
'setup' '
11 # a non-trivial custom pattern
12 git config diff.custom1.funcname "!static
16 # a custom pattern which matches to end of line
17 git config diff.custom2.funcname "......Beer\$" &&
19 # alternation in pattern
20 git config diff.custom3.funcname "Beer$" &&
21 git config diff.custom3.xfuncname "^[ ]*((public|static).*)$" &&
23 # for regexp compilation tests
50 for p
in $diffpatterns
52 test_expect_success
"builtin $p pattern compiles" '
53 echo "*.java diff=$p" >.gitattributes &&
54 test_expect_code 1 git diff --no-index \
55 A.java B.java 2>msg &&
56 test_i18ngrep ! fatal msg &&
57 test_i18ngrep ! error msg
59 test_expect_success
"builtin $p wordRegex pattern compiles" '
60 echo "*.java diff=$p" >.gitattributes &&
61 test_expect_code 1 git diff --no-index --word-diff \
62 A.java B.java 2>msg &&
63 test_i18ngrep ! fatal msg &&
64 test_i18ngrep ! error msg
68 test_expect_success
'last regexp must not be negated' '
69 echo "*.java diff=java" >.gitattributes &&
70 test_config diff.java.funcname "!static" &&
71 test_expect_code 128 git diff --no-index A.java B.java 2>msg &&
72 test_i18ngrep ": Last expression must not be negated:" msg
75 test_expect_success
'setup hunk header tests' '
76 for i in $diffpatterns
79 done > .gitattributes &&
81 # add all test files to the index
83 cd "$TEST_DIRECTORY"/t4018 &&
84 git --git-dir="$TRASH_DIRECTORY/.git" add .
87 # place modified files in the worktree
88 for i in $(git ls-files)
90 sed -e "s/ChangeMe/IWasChanged/" <"$TEST_DIRECTORY/t4018/$i" >"$i" || return 1
94 # check each individual file
95 for i
in $
(git ls-files
)
97 if grep broken
"$i" >/dev
/null
2>&1
103 test_expect_
$result "hunk header: $i" "
104 test_when_finished 'cat actual' && # for debugging only
105 git diff -U1 $i >actual &&
106 grep '@@ .* @@.*RIGHT' actual