2007-07-06 15:45:10 +08:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Johannes E. Schindelin
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='Test custom diff function name patterns'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
LF='
|
|
|
|
'
|
2011-05-22 03:25:14 +08:00
|
|
|
cat >Beer.java <<\EOF
|
2007-07-06 15:45:10 +08:00
|
|
|
public class Beer
|
|
|
|
{
|
|
|
|
int special;
|
|
|
|
public static void main(String args[])
|
|
|
|
{
|
|
|
|
String s=" ";
|
|
|
|
for(int x = 99; x > 0; x--)
|
|
|
|
{
|
|
|
|
System.out.print(x + " bottles of beer on the wall "
|
|
|
|
+ x + " bottles of beer\n"
|
|
|
|
+ "Take one down, pass it around, " + (x - 1)
|
|
|
|
+ " bottles of beer on the wall.\n");
|
|
|
|
}
|
|
|
|
System.out.print("Go to the store, buy some more,\n"
|
|
|
|
+ "99 bottles of beer on the wall.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|
2011-05-22 03:25:14 +08:00
|
|
|
sed 's/beer\\/beer,\\/' <Beer.java >Beer-correct.java
|
2007-07-06 15:45:10 +08:00
|
|
|
|
2011-05-22 03:22:28 +08:00
|
|
|
test_config () {
|
|
|
|
git config "$1" "$2" &&
|
|
|
|
test_when_finished "git config --unset $1"
|
|
|
|
}
|
|
|
|
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_funcname () {
|
|
|
|
test_expect_code 1 git diff --no-index \
|
|
|
|
Beer.java Beer-correct.java >diff &&
|
|
|
|
grep "^@@.*@@ $1" diff
|
|
|
|
}
|
|
|
|
|
|
|
|
for p in bibtex cpp csharp fortran html java objc pascal perl php python ruby tex
|
2008-09-23 07:19:05 +08:00
|
|
|
do
|
|
|
|
test_expect_success "builtin $p pattern compiles" '
|
2011-05-22 03:11:33 +08:00
|
|
|
echo "*.java diff=$p" >.gitattributes &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_code 1 git diff --no-index \
|
|
|
|
Beer.java Beer-correct.java 2>msg &&
|
|
|
|
! grep fatal msg &&
|
|
|
|
! grep error msg
|
2008-09-23 07:19:05 +08:00
|
|
|
'
|
2010-09-10 03:02:47 +08:00
|
|
|
test_expect_success "builtin $p wordRegex pattern compiles" '
|
2011-05-22 03:11:33 +08:00
|
|
|
echo "*.java diff=$p" >.gitattributes &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_code 1 git diff --no-index --word-diff \
|
|
|
|
Beer.java Beer-correct.java 2>msg &&
|
|
|
|
! grep fatal msg &&
|
|
|
|
! grep error msg
|
2010-09-10 03:02:47 +08:00
|
|
|
'
|
2008-09-23 07:19:05 +08:00
|
|
|
done
|
|
|
|
|
2007-07-06 15:45:10 +08:00
|
|
|
test_expect_success 'default behaviour' '
|
2008-09-23 07:19:05 +08:00
|
|
|
rm -f .gitattributes &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_funcname "public class Beer\$"
|
2007-07-06 15:45:10 +08:00
|
|
|
'
|
|
|
|
|
2011-05-22 03:11:33 +08:00
|
|
|
test_expect_success 'set up .gitattributes declaring drivers to test' '
|
|
|
|
echo "*.java diff=java" >.gitattributes
|
|
|
|
'
|
|
|
|
|
2007-07-06 15:45:10 +08:00
|
|
|
test_expect_success 'preset java pattern' '
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_funcname "public static void main("
|
2007-07-06 15:45:10 +08:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'custom pattern' '
|
2011-05-22 03:22:28 +08:00
|
|
|
test_config diff.java.funcname "!static
|
|
|
|
!String
|
|
|
|
[^ ].*s.*" &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_funcname "int special;\$"
|
2007-07-06 15:45:10 +08:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'last regexp must not be negated' '
|
2011-05-22 03:22:28 +08:00
|
|
|
test_config diff.java.funcname "!static" &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_code 128 git diff --no-index Beer.java Beer-correct.java 2>msg &&
|
|
|
|
grep ": Last expression must not be negated:" msg
|
2007-07-06 15:45:10 +08:00
|
|
|
'
|
|
|
|
|
2008-10-02 03:28:26 +08:00
|
|
|
test_expect_success 'pattern which matches to end of line' '
|
2011-05-22 03:25:14 +08:00
|
|
|
test_config diff.java.funcname "Beer\$" &&
|
|
|
|
test_expect_funcname "Beer\$"
|
2007-07-06 15:45:10 +08:00
|
|
|
'
|
|
|
|
|
2008-09-08 02:45:37 +08:00
|
|
|
test_expect_success 'alternation in pattern' '
|
2011-05-22 03:22:28 +08:00
|
|
|
test_config diff.java.funcname "Beer$" &&
|
|
|
|
test_config diff.java.xfuncname "^[ ]*((public|static).*)$" &&
|
2011-05-22 03:25:14 +08:00
|
|
|
test_expect_funcname "public static void main("
|
2008-09-08 02:45:37 +08:00
|
|
|
'
|
|
|
|
|
2007-07-06 15:45:10 +08:00
|
|
|
test_done
|