Browse Source

Merge branch 'stable-4.9'

* stable-4.9:
  Strings#convertGlob: fix escaping of patterns like [\[].

Change-Id: I18d55537002b3153db35f8a6b60f2f5317d17248
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-4.10
Matthias Sohn 7 years ago
parent
commit
32775124d1
  1. 33
      org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/AttributesMatcherTest.java
  2. 8
      org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/CGitAttributesTest.java
  3. 27
      org.eclipse.jgit.test/tst/org/eclipse/jgit/ignore/CGitIgnoreTest.java
  4. 5
      org.eclipse.jgit/src/org/eclipse/jgit/ignore/internal/Strings.java

33
org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/AttributesMatcherTest.java

@ -382,6 +382,39 @@ public class AttributesMatcherTest {
assertEquals(r.getAttributes().get(2).toString(), "attribute3=value");
}
@Test
public void testBracketsInGroup() {
//combinations of brackets in brackets, escaped and not
String[] patterns = new String[]{"[[\\]]", "[\\[\\]]"};
for (String pattern : patterns) {
assertNotMatched(pattern, "");
assertNotMatched(pattern, "[]");
assertNotMatched(pattern, "][");
assertNotMatched(pattern, "[\\[]");
assertNotMatched(pattern, "[[]");
assertNotMatched(pattern, "[[]]");
assertNotMatched(pattern, "[\\[\\]]");
assertMatched(pattern, "[");
assertMatched(pattern, "]");
}
patterns = new String[]{"[[]]", "[\\[]]"};
for (String pattern : patterns) {
assertNotMatched(pattern, "");
assertMatched(pattern, "[]");
assertNotMatched(pattern, "][");
assertNotMatched(pattern, "[\\[]");
assertNotMatched(pattern, "[[]");
assertNotMatched(pattern, "[[]]");
assertNotMatched(pattern, "[\\[\\]]");
assertNotMatched(pattern, "[");
assertNotMatched(pattern, "]");
}
}
/**
* Check for a match. If target ends with "/", match will assume that the
* target is meant to be a directory.

8
org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/CGitAttributesTest.java

@ -378,4 +378,12 @@ public class CGitAttributesTest extends RepositoryTestCase {
writeTrashFile(".gitattributes", "new/ bar\n");
assertSameAsCGit();
}
@Test
public void testBracketsInGroup() throws Exception {
createFiles("[", "]", "[]", "][", "[[]", "[]]", "[[]]");
writeTrashFile(".gitattributes", "[[]] bar1\n" + "[\\[]] bar2\n"
+ "[[\\]] bar3\n" + "[\\[\\]] bar4\n");
assertSameAsCGit();
}
}

27
org.eclipse.jgit.test/tst/org/eclipse/jgit/ignore/CGitIgnoreTest.java

@ -241,4 +241,31 @@ public class CGitIgnoreTest extends RepositoryTestCase {
assertSameAsCGit();
}
@Test
public void testUnescapedBracketsInGroup() throws Exception {
createFiles("[", "]", "[]", "][", "[[]", "[]]", "[[]]");
writeTrashFile(".gitignore", "[[]]\n");
assertSameAsCGit();
}
@Test
public void testEscapedFirstBracketInGroup() throws Exception {
createFiles("[", "]", "[]", "][", "[[]", "[]]", "[[]]");
writeTrashFile(".gitignore", "[\\[]]\n");
assertSameAsCGit();
}
@Test
public void testEscapedSecondBracketInGroup() throws Exception {
createFiles("[", "]", "[]", "][", "[[]", "[]]", "[[]]");
writeTrashFile(".gitignore", "[[\\]]\n");
assertSameAsCGit();
}
@Test
public void testEscapedBothBracketsInGroup() throws Exception {
createFiles("[", "]", "[]", "][", "[[]", "[]]", "[[]]");
writeTrashFile(".gitignore", "[\\[\\]]\n");
assertSameAsCGit();
}
}

5
org.eclipse.jgit/src/org/eclipse/jgit/ignore/internal/Strings.java

@ -369,7 +369,10 @@ public class Strings {
case '[':
if (in_brackets > 0) {
sb.append('\\').append('[');
if (!seenEscape) {
sb.append('\\');
}
sb.append('[');
ignoreLastBracket = true;
} else {
if (!seenEscape) {

Loading…
Cancel
Save