1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
package bjc.everge;
import java.util.Arrays;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import static org.junit.Assert.*;
public class StringUtilsTest {
@Test
public void testNullSplit() {
assertSplitsTo("a", null, " ", "a");
assertSplitsTo("a b", null, " ", "a", "b");
assertSplitsTo("a b cd", null, " ", "a", "b", "cd");
}
@Test
public void testNoEscapeSplit() {
assertSplitsTo("a", "/", " ", "a");
assertSplitsTo("a b", "/", " ", "a", "b");
assertSplitsTo("a b/c", "/", " ", "a", "b/c");
}
@Test
public void testEscapeSplit() {
assertSplitsTo("a|/||b/c", "|", "/", "a/|b", "c");
assertSplitsTo("a||/b", "|", "/", "a|", "b");
}
@Test
public void testLongSplit() {
assertSplitsTo("a||b||c", " ", "||", "a", "b", "c");
assertSplitsTo("a&&||b||c", "&&", "||", "a||b", "c");
assertSplitsTo("a&&&&||b||c", "&&", "||", "a&&", "b", "c");
assertSplitsTo("a&&&&&&||b||c", "&&", "||", "a&&||b", "c");
}
@Test
public void testEdgeSplit() {
// Starting with the delimiter doesn't create a blank string
assertSplitsTo("/a", "|", "/", "", "a");
assertSplitsTo("a/", "|", "/", "a");
}
private void assertSplitsTo(String inp, String esc, String splat, String... right) {
assertSplitsTo(false, inp, esc, splat, right);
}
private void assertSplitsTo(boolean doLog, String inp, String esc, String splat, String... right) {
try {
if (doLog) StringUtils.isDebug = true;
String[] lst = StringUtils.escapeSplit(esc, splat, inp);
if (doLog) {
System.err.printf("[TRACE] Returned ");
for (String str : lst) {
System.err.printf("(%s) ", str);
}
System.err.println();
}
assertArrayEquals(right, lst);
} catch (Exception ex) {
System.err.println("EXCEPTION");
ex.printStackTrace();
System.err.println();
assertTrue(false);
} finally {
if (doLog) StringUtils.isDebug = false;
}
}
}
|