forked from glenn-brown/golang-pkg-pcre
-
Notifications
You must be signed in to change notification settings - Fork 16
/
pcre_test.go
265 lines (243 loc) · 5.99 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
// Copyright (C) 2011 Florian Weimer <[email protected]>
package pcre
import (
"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)
// 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) {
m := MustCompile("abc", CASELESS).MatcherString("...Abc...", 0)
if !m.Matches() {
t.Error("CASELESS")
}
m = MustCompile("abc", 0).MatcherString("Abc", 0)
if m.Matches() {
t.Error("!CASELESS")
}
}
func TestNamed(t *testing.T) {
pattern := "(?<L>a)(?<M>X)*bc(?<DIGITS>\\d*)"
m := MustCompile(pattern, 0).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) {
m := MustCompile("bcd", 0).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])
}
m = MustCompile("xyz", 0).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)
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.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)
// 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)
}
}