-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpcre_test.go
356 lines (331 loc) · 7.88 KB
/
pcre_test.go
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
package pcre
import (
"reflect"
"testing"
)
func TestCompile(t *testing.T) {
var check = func(p string, groups int) {
re, err := Compile(p, 0)
if err != nil {
t.Error(p, err)
}
if g := re.Groups(); g != groups {
t.Error(p, g)
}
}
check("", 0)
check("^", 0)
check("^$", 0)
check("()", 1)
check("(())", 2)
check("((?:))", 1)
}
func TestCompileFail(t *testing.T) {
var check = func(p, msg string, off int) {
_, err := Compile(p, 0)
if err == nil {
t.Error(p)
} else {
cerr := err.(*CompileError)
switch {
case cerr.Message != msg:
t.Error(p, "Message", cerr.Message)
case cerr.Offset != off:
t.Error(p, "Offset", cerr.Offset)
}
}
}
check("(", "missing )", 1)
check("\\", "\\ at end of pattern", 1)
check("abc\\", "\\ at end of pattern", 4)
check("abc\000", "NUL byte in pattern", 3)
check("a\000bc", "NUL byte in pattern", 1)
}
func strings(b [][]byte) (r []string) {
r = make([]string, len(b))
for i, v := range b {
r[i] = string(v)
}
return
}
func equal(l, r []string) bool {
if len(l) != len(r) {
return false
}
for i, lv := range l {
if lv != r[i] {
return false
}
}
return true
}
func checkmatch1(t *testing.T, dostring bool, m *Matcher,
pattern, subject string, args ...interface{}) {
re := MustCompile(pattern, 0)
var prefix string
if dostring {
if m == nil {
m = re.MatcherString(subject, 0)
} else {
m.ResetString(re, subject, 0)
}
prefix = "string"
} else {
if m == nil {
m = re.Matcher([]byte(subject), 0)
} else {
m.Reset(re, []byte(subject), 0)
}
prefix = "[]byte"
}
if len(args) == 0 {
if m.Matches() {
t.Error(prefix, pattern, subject, "!Matches")
}
} else {
if !m.Matches() {
t.Error(prefix, pattern, subject, "Matches")
return
}
if m.Groups() != len(args)-1 {
t.Error(prefix, pattern, subject, "Groups", m.Groups())
return
}
for i, arg := range args {
if s, ok := arg.(string); ok {
if !m.Present(i) {
t.Error(prefix, pattern, subject,
"Present", i)
}
if g := string(m.Group(i)); g != s {
t.Error(prefix, pattern, subject,
"Group", i, g, "!=", s)
}
if g := m.GroupString(i); g != s {
t.Error(prefix, pattern, subject,
"GroupString", i, g, "!=", s)
}
} else {
if m.Present(i) {
t.Error(prefix, pattern, subject,
"!Present", i)
}
}
}
}
}
func TestMatcher(t *testing.T) {
var m Matcher
check := func(pattern, subject string, args ...interface{}) {
checkmatch1(t, false, nil, pattern, subject, args...)
checkmatch1(t, true, nil, pattern, subject, args...)
checkmatch1(t, false, &m, pattern, subject, args...)
checkmatch1(t, true, &m, pattern, subject, args...)
}
check(`^$`, "", "")
check(`^abc$`, "abc", "abc")
check(`^(X)*ab(c)$`, "abc", "abc", nil, "c")
check(`^(X)*ab()c$`, "abc", "abc", nil, "")
check(`^.*$`, "abc", "abc")
check(`^.*$`, "a\000c", "a\000c")
check(`^(.*)$`, "a\000c", "a\000c", "a\000c")
check(`def`, "abcdefghi", "def")
}
func TestPartial(t *testing.T) {
re := MustCompile(`^abc`, 0)
defer re.FreeRegexp()
// Check we get a partial match when we should
m := re.MatcherString("ab", PARTIAL_SOFT)
if !m.Matches() {
t.Error("Failed to find any matches")
} else if !m.Partial() {
t.Error("The match was not partial")
}
// Check we get an exact match when we should
m = re.MatcherString("abc", PARTIAL_SOFT)
if !m.Matches() {
t.Error("Failed to find any matches")
} else if m.Partial() {
t.Error("Match was partial but should have been exact")
}
m = re.Matcher([]byte("ab"), PARTIAL_SOFT)
if !m.Matches() {
t.Error("Failed to find any matches")
} else if !m.Partial() {
t.Error("The match was not partial")
}
m = re.Matcher([]byte("abc"), PARTIAL_SOFT)
if !m.Matches() {
t.Error("Failed to find any matches")
} else if m.Partial() {
t.Error("Match was partial but should have been exact")
}
}
func TestCaseless(t *testing.T) {
re := MustCompile("abc", CASELESS)
defer re.FreeRegexp()
m := re.MatcherString("...Abc...", 0)
if !m.Matches() {
t.Error("CASELESS")
}
re2 := MustCompile("abc", 0)
defer re2.FreeRegexp()
m = re2.MatcherString("Abc", 0)
if m.Matches() {
t.Error("!CASELESS")
}
}
func TestNamed(t *testing.T) {
pattern := "(?<L>a)(?<M>X)*bc(?<DIGITS>\\d*)"
re := MustCompile(pattern, 0)
defer re.FreeRegexp()
m := re.MatcherString("abc12", 0)
if !m.Matches() {
t.Error("Matches")
}
if ok, err := m.NamedPresent("L"); !ok || err != nil {
t.Errorf("NamedPresent(\"L\"): %v", err)
}
if ok, err := m.NamedPresent("M"); ok || err != nil {
t.Errorf("NamedPresent(\"M\"): %v", err)
}
if ok, err := m.NamedPresent("DIGITS"); !ok || err != nil {
t.Errorf("NamedPresent(\"DIGITS\"): %v", err)
}
if str, err := m.NamedString("DIGITS"); str != "12" || err != nil {
t.Errorf("NamedString(\"DIGITS\"): %v", err)
}
}
func TestMatcherIndex(t *testing.T) {
re := MustCompile("bcd", 0)
defer re.FreeRegexp()
m := re.Matcher([]byte("abcdef"), 0)
i := m.Index()
if i[0] != 1 {
t.Error("FindIndex start", i[0])
}
if i[1] != 4 {
t.Error("FindIndex end", i[1])
}
re2 := MustCompile("xyz", 0)
defer re2.FreeRegexp()
m = re2.Matcher([]byte("abcdef"), 0)
i = m.Index()
if i != nil {
t.Error("Index returned for non-match", i)
}
}
func TestFindIndex(t *testing.T) {
re := MustCompile("bcd", 0)
defer re.FreeRegexp()
i := re.FindIndex([]byte("abcdef"), 0)
if i[0] != 1 {
t.Error("FindIndex start", i[0])
}
if i[1] != 4 {
t.Error("FindIndex end", i[1])
}
}
func TestExtract(t *testing.T) {
re := MustCompile("b(c)(d)", 0)
defer re.FreeRegexp()
m := re.MatcherString("abcdef", 0)
i := m.ExtractString()
if i[0] != "abcdef" {
t.Error("Full line unavailable: ", i[0])
}
if i[1] != "c" {
t.Error("First match group no as expected: ", i[1])
}
if i[2] != "d" {
t.Error("Second match group no as expected: ", i[2])
}
}
func TestReplaceAll(t *testing.T) {
re := MustCompile("foo", 0)
var result []byte
var err error
defer re.FreeRegexp()
// Don't change at ends.
if result, err = re.ReplaceAll(
[]byte("I like foods."),
[]byte("car"),
0,
); err != nil {
t.Fatal(err)
}
if string(result) != "I like cards." {
t.Error("ReplaceAll", result)
}
// Change at ends.
if result, err = re.ReplaceAll(
[]byte("food fight fools foo"),
[]byte("car"),
0,
); err != nil {
t.Fatal(err)
}
if string(result) != "card fight carls car" {
t.Error("ReplaceAll2", result)
}
}
func TestFreeRegexp(t *testing.T) {
re := MustCompileJIT("\\d{3}", 0, STUDY_JIT_COMPILE)
data := []string{"15asd213", "sadi32fjoi"}
expected := []bool{true, false}
for i := 0; i < len(data); i++ {
m := re.MatcherString(data[i], 0)
if m.Matches() != expected[i] {
t.Error("Unexpected match for ", data[i])
}
}
re.FreeRegexp()
// Test double free.
re.FreeRegexp()
}
func TestFindAll(t *testing.T) {
re := MustCompile("\\d{2}x", 0)
var matches []Match
var err error
defer re.FreeRegexp()
data := "12x 12332xf 43bx62x"
expected := []Match{
Match{"12x", []int{0, 3}},
Match{"32x", []int{7, 10}},
Match{"62x", []int{16, 19}},
}
if matches, err = re.FindAll(data, 0); err != nil {
t.Fatal(err)
}
verifyMatches(t, expected, matches)
if matches, err = re.FindAll("", 0); err != nil {
t.Fatal(err)
}
if len(matches) != 0 {
t.Error("Expected no results, got: ", matches)
}
// Test zero-length matches.
re2 := MustCompile("\\w*", 0)
defer re2.FreeRegexp()
data = "cat dog"
expected = []Match{
Match{"cat", []int{0, 3}},
Match{"", []int{3, 3}},
Match{"dog", []int{4, 7}},
}
matches, err = re2.FindAll(data, 0)
if err != nil {
t.Fatal(err)
}
verifyMatches(t, expected, matches)
}
func verifyMatches(t *testing.T, expected []Match, matches []Match) {
if len(matches) != len(expected) {
t.Errorf("Expected %d matches, got: %d", len(expected), len(matches))
}
for i := 0; i < len(expected); i++ {
if !reflect.DeepEqual(matches[i], expected[i]) {
t.Errorf("Expected match: %v, got: %v", expected[i], matches[i])
}
}
}