@ -868,6 +868,84 @@ public class IgnoreRuleSpecialCasesTest {
assertMatch ( "\\]a?c\\*\\[d\\?\\]" , "]abc*[d?]" , true ) ;
assertMatch ( "\\]a?c\\*\\[d\\?\\]" , "]abc*[d?]" , true ) ;
}
}
@Test
public void testDollar ( ) throws Exception {
assertMatch ( "$" , "$" , true ) ;
assertMatch ( "$x" , "$x" , true ) ;
assertMatch ( "$x" , "x$" , false ) ;
assertMatch ( "$x" , "$" , false ) ;
assertMatch ( "$x.*" , "$x.a" , true ) ;
assertMatch ( "*$" , "x$" , true ) ;
assertMatch ( "*.$" , "x.$" , true ) ;
assertMatch ( "$*x" , "$ax" , true ) ;
assertMatch ( "x*$" , "xa$" , true ) ;
assertMatch ( "x*$" , "xa" , false ) ;
assertMatch ( "[a$b]" , "$" , true ) ;
}
@Test
public void testCaret ( ) throws Exception {
assertMatch ( "^" , "^" , true ) ;
assertMatch ( "^x" , "^x" , true ) ;
assertMatch ( "^x" , "x^" , false ) ;
assertMatch ( "^x" , "^" , false ) ;
assertMatch ( "^x.*" , "^x.a" , true ) ;
assertMatch ( "*^" , "x^" , true ) ;
assertMatch ( "*.^" , "x.^" , true ) ;
assertMatch ( "x*^" , "xa^" , true ) ;
assertMatch ( "^*x" , "^ax" , true ) ;
assertMatch ( "^*x" , "ax" , false ) ;
assertMatch ( "[a^b]" , "^" , true ) ;
}
@Test
public void testPlus ( ) throws Exception {
assertMatch ( "+" , "+" , true ) ;
assertMatch ( "+x" , "+x" , true ) ;
assertMatch ( "+x" , "x+" , false ) ;
assertMatch ( "+x" , "+" , false ) ;
assertMatch ( "x+" , "xx" , false ) ;
assertMatch ( "+x.*" , "+x.a" , true ) ;
assertMatch ( "*+" , "x+" , true ) ;
assertMatch ( "*.+" , "x.+" , true ) ;
assertMatch ( "x*+" , "xa+" , true ) ;
assertMatch ( "+*x" , "+ax" , true ) ;
assertMatch ( "+*x" , "ax" , false ) ;
assertMatch ( "[a+b]" , "+" , true ) ;
}
@Test
public void testPipe ( ) throws Exception {
assertMatch ( "|" , "|" , true ) ;
assertMatch ( "|x" , "|x" , true ) ;
assertMatch ( "|x" , "x|" , false ) ;
assertMatch ( "|x" , "|" , false ) ;
assertMatch ( "x|x" , "xx" , false ) ;
assertMatch ( "x|x.*" , "x|x.a" , true ) ;
assertMatch ( "*|" , "x|" , true ) ;
assertMatch ( "*.|" , "x.|" , true ) ;
assertMatch ( "x*|a" , "xb|a" , true ) ;
assertMatch ( "b|*x" , "b|ax" , true ) ;
assertMatch ( "b|*x" , "ax" , false ) ;
assertMatch ( "[a|b]" , "|" , true ) ;
}
@Test
public void testBrackets ( ) throws Exception {
assertMatch ( "{}*()" , "{}x()" , true ) ;
assertMatch ( "[a{}()b][a{}()b]?[a{}()b][a{}()b]" , "{}x()" , true ) ;
assertMatch ( "x*{x}3" , "xa{x}3" , true ) ;
assertMatch ( "a*{x}3" , "axxx" , false ) ;
}
@Test
@Test
public void testFilePathSimpleCase ( ) throws Exception {
public void testFilePathSimpleCase ( ) throws Exception {
assertFileNameMatch ( "a/b" , "a/b" , true ) ;
assertFileNameMatch ( "a/b" , "a/b" , true ) ;