-
Notifications
You must be signed in to change notification settings - Fork 19.6k
/
Copy pathHorspoolSearchTest.java
87 lines (71 loc) · 2.37 KB
/
HorspoolSearchTest.java
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
83
84
85
86
87
package com.thealgorithms.strings;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;
class HorspoolSearchTest {
@Test
void testFindFirstMatch() {
int index = HorspoolSearch.findFirst("World", "Hello World");
assertEquals(6, index);
}
@Test
void testFindFirstNotMatch() {
int index = HorspoolSearch.findFirst("hell", "Hello World");
assertEquals(-1, index);
}
@Test
void testFindFirstPatternLongerText() {
int index = HorspoolSearch.findFirst("Hello World!!!", "Hello World");
assertEquals(-1, index);
}
@Test
void testFindFirstPatternEmpty() {
int index = HorspoolSearch.findFirst("", "Hello World");
assertEquals(-1, index);
}
@Test
void testFindFirstTextEmpty() {
int index = HorspoolSearch.findFirst("Hello", "");
assertEquals(-1, index);
}
@Test
void testFindFirstPatternAndTextEmpty() {
int index = HorspoolSearch.findFirst("", "");
assertEquals(-1, index);
}
@Test
void testFindFirstSpecialCharacter() {
int index = HorspoolSearch.findFirst("$3**", "Hello $3**$ World");
assertEquals(6, index);
}
@Test
void testFindFirstInsensitiveMatch() {
int index = HorspoolSearch.findFirstInsensitive("hello", "Hello World");
assertEquals(0, index);
}
@Test
void testFindFirstInsensitiveNotMatch() {
int index = HorspoolSearch.findFirstInsensitive("helo", "Hello World");
assertEquals(-1, index);
}
@Test
void testGetLastComparisons() {
HorspoolSearch.findFirst("World", "Hello World");
int lastSearchNumber = HorspoolSearch.getLastComparisons();
assertEquals(7, lastSearchNumber);
}
@Test
void testGetLastComparisonsNotMatch() {
HorspoolSearch.findFirst("Word", "Hello World");
int lastSearchNumber = HorspoolSearch.getLastComparisons();
assertEquals(3, lastSearchNumber);
}
@Test
void testFindFirstPatternNull() {
assertThrows(NullPointerException.class, () -> HorspoolSearch.findFirst(null, "Hello World"));
}
@Test
void testFindFirstTextNull() {
assertThrows(NullPointerException.class, () -> HorspoolSearch.findFirst("Hello", null));
}
}