-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpcre_test.go
376 lines (329 loc) · 9.22 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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
// Copyright (C) 2011 Florian Weimer <[email protected]>
package pcre
import (
"testing"
)
func TestCompile(t *testing.T) {
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) {
check := func(p, msg string) {
_, err := Compile(p, 0)
switch {
case err == nil:
t.Error(p)
case err.Error() != msg:
t.Error(p, "Message:", err.Error())
}
}
check("(", "( (1): missing )")
check(`\`, `\ (1): \ at end of pattern`)
check(`abc\`, `abc\ (4): \ at end of pattern`)
check("abc\000", "abc\000 (3): NUL byte in pattern")
check("a\000bc", "a\000bc (1): NUL byte in pattern")
}
func checkmatch1(t *testing.T, dostring bool, m *Matcher,
pattern, subject string, args ...interface{},
) {
re := MustCompile(pattern, 0)
var prefix string
if dostring {
prefix = "string"
if m == nil {
m = re.NewMatcherString(subject, 0)
} else {
m.ResetString(re, subject, 0)
}
} else {
prefix = "[]byte"
if m == nil {
m = re.NewMatcher([]byte(subject), 0)
} else {
m.Reset(re, []byte(subject), 0)
}
}
if len(args) == 0 {
if m.Matches {
t.Errorf("prefix='%s' pattern='%s' subject='%s': %s", prefix, pattern, subject, "!Matches")
}
return
}
if !m.Matches {
t.Logf("%v", m.Matches)
t.Errorf("prefix='%s' pattern='%s' subject='%s': %s", 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")
}
func TestNewMatcherJIT(t *testing.T) {
re := MustCompileJIT(`\dG|internet|gprs|[Kk]b|[Mm]b|Gb|lte`, 0, STUDY_JIT_COMPILE)
m := re.NewMatcherString(`4GKb`, 0)
if !m.Matches {
t.Error("The match should be matched")
}
m = re.NewMatcherString(`Some value`, 0)
if m.Matches {
t.Error("The match should not be matched")
}
}
func TestCompileAndStudy(t *testing.T) {
re, err := Compile(`(Bel[ao]rus)|(Бел[ао]рус)|(БЕЛ[АО]РУС)|Білорусь`, UTF8|CASELESS)
if err != nil {
t.Error("Compile error", err)
}
if len(re.extra) != 0 {
t.Error("re.extra should be empty")
}
m := re.NewMatcherString("Беларусь: MTS", 0)
if !m.Matches {
t.Error("The match should be matched")
}
m = re.NewMatcherString("Other value", 0)
if m.Matches {
t.Error("The match should not be matched")
}
err = re.Study(0)
if err != nil {
t.Error("Study error", err)
}
if len(re.extra) == 0 {
t.Error("re.extra should not be empty")
}
m = re.NewMatcherString("Беларусь: MTS", 0)
if !m.Matches {
t.Error("The match should be matched")
}
m = re.NewMatcherString("Other value", 0)
if m.Matches {
t.Error("The match should not be matched")
}
}
func BenchmarkStudyAndExec(b *testing.B) {
// Date check regexp
re := MustCompile(`/^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[1,3-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$/`, 0)
err := re.Study(0)
if err != nil {
b.Error("Study error", err)
}
subj := []byte(`20-10-2023`)
m := re.NewMatcher(subj, 0)
for i := 0; i < b.N; i++ {
m.MatchWFlags(subj, 0)
if m == nil {
b.Error("The match should be matched")
}
}
}
func BenchmarkExecJIT(b *testing.B) {
// Date check regexp
re := MustCompile(`/^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[1,3-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$/`, 0)
err := re.Study(STUDY_JIT_COMPILE)
if err != nil {
b.Error("Study error", err)
}
subj := []byte(`20-10-2023`)
m := re.NewMatcher(subj, 0)
for i := 0; i < b.N; i++ {
m.MatchWFlags(subj, 0)
if m == nil {
b.Error("The match should be matched")
}
}
}
func BenchmarkExecWithoutStudy(b *testing.B) {
// Date check regexp
re := MustCompile(`/^(?:(?:31(\/|-|\.)(?:0?[13578]|1[02]))\1|(?:(?:29|30)(\/|-|\.)(?:0?[1,3-9]|1[0-2])\2))(?:(?:1[6-9]|[2-9]\d)?\d{2})$|^(?:29(\/|-|\.)0?2\3(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00))))$|^(?:0?[1-9]|1\d|2[0-8])(\/|-|\.)(?:(?:0?[1-9])|(?:1[0-2]))\4(?:(?:1[6-9]|[2-9]\d)?\d{2})$/`, 0)
subj := []byte(`20-10-2023`)
m := re.NewMatcher(subj, 0)
for i := 0; i < b.N; i++ {
m.MatchWFlags(subj, 0)
if m == nil {
b.Error("The match should be matched")
}
}
}
func TestPartial(t *testing.T) {
re := MustCompile(`^abc`, 0)
// Check we get a partial match when we should
m := re.NewMatcherString("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.NewMatcherString("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.NewMatcher([]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.NewMatcher([]byte("abc"), PARTIAL_SOFT)
if !m.Matches {
t.Error("Failed to find any matches")
} else if m.Partial {
t.Error("The match was net partial")
}
}
func TestCaseless(t *testing.T) {
m := MustCompile("abc", CASELESS).NewMatcherString("Abc", 0)
if !m.Matches {
t.Error("CASELESS")
}
m = MustCompile("abc", 0).NewMatcherString("Abc", 0)
if m.Matches {
t.Error("!CASELESS")
}
}
func TestNamed(t *testing.T) {
m := MustCompile("(?<L>a)(?<M>X)*bc(?<DIGITS>\\d*)", 0).
NewMatcherString("abc12", 0)
if !m.Matches {
t.Error("Matches")
}
if !m.NamedPresent("L") {
t.Error("NamedPresent(\"L\")")
}
if m.NamedPresent("M") {
t.Error("NamedPresent(\"M\")")
}
if !m.NamedPresent("DIGITS") {
t.Error("NamedPresent(\"DIGITS\")")
}
group, err := m.NamedString("DIGITS")
if err != nil || group != "12" {
t.Error("NamedString(\"DIGITS\")")
}
}
func TestNames(t *testing.T) {
re := MustCompile("(?<name2>a)(b)(c)(?<n1>d)", 0)
names := re.CaptureNames()
if len(names) != 2 {
t.Error("Names count", len(names))
}
if names[0].Name != "n1" {
t.Error("Names name 1", names[0].Name)
}
if names[1].Name != "name2" {
t.Error("Names name 2", names[1].Name)
}
if names[0].Index != 4 {
t.Error("Names index 1", names[0].Index)
}
if names[1].Index != 1 {
t.Error("Names index 2", names[1].Index)
}
// Have no named capturing
re = MustCompile("(a)bc", 0)
names = re.CaptureNames()
if len(names) != 0 {
t.Error("Names count", len(names))
}
}
func TestFindIndex(t *testing.T) {
re := MustCompile("bcd", 0)
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)
m := re.NewMatcher([]byte("abcdef"), 0)
i := m.Extract()
switch {
case string(i[0]) != "abcdef":
t.Error("Full line unavailable: ", i[0])
case string(i[1]) != "c":
t.Error("First match group no as expected: ", i[1])
case string(i[2]) != "d":
t.Error("Second match group no as expected: ", i[2])
}
}
func TestExtractString(t *testing.T) {
re := MustCompile("b(c)(d)", 0)
m := re.NewMatcherString("abcdef", 0)
i := m.ExtractString()
switch {
case i[0] != "abcdef":
t.Error("Full line unavailable: ", i[0])
case i[1] != "c":
t.Error("First match group no as expected: ", i[1])
case i[2] != "d":
t.Error("Second match group no as expected: ", i[2])
}
}
func TestReplaceAll(t *testing.T) {
re := MustCompile("foo", 0)
// Don't change at ends.
result := re.ReplaceAll([]byte("I like foods."), []byte("car"), 0)
if string(result) != "I like cards." {
t.Error("ReplaceAll", result)
}
// Change at ends.
result = re.ReplaceAll([]byte("food fight fools foo"), []byte("car"), 0)
if string(result) != "card fight carls car" {
t.Error("ReplaceAll2", result)
}
}