summaryrefslogtreecommitdiff
path: root/src/test/java/bjc/everge/StringUtilsTest.java
blob: bba5e110bd028a46e1dcb35db9d62a09f2564df9 (plain)
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
package bjc.everge;

import java.util.Arrays;
import java.util.ArrayList;
import java.util.List;

import org.junit.Test;

import static bjc.everge.TestUtils.*;

import static org.junit.Assert.*;

/**
 * Test for StringUtils.
 *
 * @author Ben Culkin
 */
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");
	}

}