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>
tags/v4.10.0.201712302008-r
Matthias Sohn 6 years ago
parent
commit
32775124d1

+ 33
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/AttributesMatcherTest.java View File

@@ -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
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/attributes/CGitAttributesTest.java View File

@@ -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
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/ignore/CGitIgnoreTest.java View File

@@ -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();
}
}

+ 4
- 1
org.eclipse.jgit/src/org/eclipse/jgit/ignore/internal/Strings.java View File

@@ -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