-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmatcher_test.go
397 lines (302 loc) · 10.5 KB
/
matcher_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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
package marker
import (
"regexp"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_MatchAll(t *testing.T) {
str := "Skydome is Skydome"
actualMatch := MatchAll("Skydome")(str)
expectedMatch := Match{Template: "%s is %s", Patterns: []string{"Skydome", "Skydome"}}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchN(t *testing.T) {
str := "Skydome is Skydome"
actualMatch := MatchN("Skydome", 1)(str)
expectedMatch := Match{Template: "%s is Skydome", Patterns: []string{"Skydome"}}
assert.Equal(t, expectedMatch, actualMatch)
actualMatch = MatchN("Skydome", 2)(str)
expectedMatch = Match{Template: "%s is %s", Patterns: []string{"Skydome", "Skydome"}}
assert.Equal(t, expectedMatch, actualMatch)
actualMatch = MatchN("Skydome", 3)(str)
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchRegexp(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
r, _ := regexp.Compile("([a-z]?cream)")
actualMatch := MatchRegexp(r)(str)
expectedMatch := Match{Template: "I %s, you all %s, we all %s for ice %s.", Patterns: []string{"scream", "scream", "scream", "cream"}}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchTimestamp(t *testing.T) {
t.Parallel()
t.Run("ANSIC", func(t *testing.T) {
str := "Current timestamp is Mon Jan 31 20:59:00 2006"
match := MatchTimestamp(time.ANSIC)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Mon Jan 31 20:59:00 2006"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("UnixDate", func(t *testing.T) {
str := "Current timestamp is Mon Jan _2 03:04:05 MST 2006"
match := MatchTimestamp(time.UnixDate)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Mon Jan _2 03:04:05 MST 2006"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RubyDate", func(t *testing.T) {
str := "Current timestamp is Fri Feb 04 03:04:05 -0300 2006"
match := MatchTimestamp(time.RubyDate)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Fri Feb 04 03:04:05 -0300 2006"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC822", func(t *testing.T) {
str := "Current timestamp is 02 Jan 06 05:04 MST"
match := MatchTimestamp(time.RFC822)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"02 Jan 06 05:04 MST"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC822Z", func(t *testing.T) {
str := "Current timestamp is 02 Jan 06 15:04 -0300"
match := MatchTimestamp(time.RFC822Z)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"02 Jan 06 15:04 -0300"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC850", func(t *testing.T) {
str := "Current timestamp is Saturday, 07-Aug-06 22:04:59 MST"
match := MatchTimestamp(time.RFC850)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Saturday, 07-Aug-06 22:04:59 MST"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC1123", func(t *testing.T) {
str := "Current timestamp is Mon, 02 Jan 2006 15:04:05 MST"
match := MatchTimestamp(time.RFC1123)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Mon, 02 Jan 2006 15:04:05 MST"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC1123Z", func(t *testing.T) {
str := "Current timestamp is Mon, 02 Jan 2006 15:04:05 -0300"
match := MatchTimestamp(time.RFC1123Z)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Mon, 02 Jan 2006 15:04:05 -0300"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC3339", func(t *testing.T) {
str := "Current timestamp is 2006-01-02T15:04:05Z07:00"
match := MatchTimestamp(time.RFC3339)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"2006-01-02T15:04:05Z07:00"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("RFC3339Nano", func(t *testing.T) {
str := "Current timestamp is 2006-01-02T15:04:05.999999999Z07:00"
match := MatchTimestamp(time.RFC3339Nano)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"2006-01-02T15:04:05.999999999Z07:00"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("Kitchen", func(t *testing.T) {
str := "Current timestamp is 2:15PM"
match := MatchTimestamp(time.Kitchen)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"2:15PM"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("Stamp", func(t *testing.T) {
str := "Current timestamp is Jan _2 15:04:05 and Jan _2 15:04:10"
match := MatchTimestamp(time.Stamp)(str)
expectedMatch := Match{
Template: "Current timestamp is %sand %s",
Patterns: []string{"Jan _2 15:04:05 ", "Jan _2 15:04:10"},
}
assert.Equal(t, expectedMatch, match)
str = "Stamps Jan _2 15:04:05.999 and Jan _2 15:04:05.999999 and Jan _2 15:04:05.999999999"
match = MatchTimestamp(time.Stamp)(str)
expectedMatch = Match{
Template: "Stamps Jan _2 15:04:05.999 and Jan _2 15:04:05.999999 and Jan _2 15:04:05.999999999",
Patterns: nil,
}
assert.Equal(t, expectedMatch, match)
})
t.Run("StampMilli", func(t *testing.T) {
str := "Current timestamp is Jan _2 15:04:05.999"
match := MatchTimestamp(time.StampMilli)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Jan _2 15:04:05.999"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("StampMicro", func(t *testing.T) {
str := "Current timestamp is Jan _2 15:04:05.999999"
match := MatchTimestamp(time.StampMicro)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Jan _2 15:04:05.999999"},
}
assert.Equal(t, expectedMatch, match)
})
t.Run("StampNano", func(t *testing.T) {
str := "Current timestamp is Jan _2 15:04:05.000000000"
match := MatchTimestamp(time.StampNano)(str)
expectedMatch := Match{
Template: "Current timestamp is %s",
Patterns: []string{"Jan _2 15:04:05.000000000"},
}
assert.Equal(t, expectedMatch, match)
})
}
func Test_MatchSurrounded(t *testing.T) {
str := "[ERROR] This is a -debug- message -(and it's okay)- [INFO] --test--"
actualMatch := MatchSurrounded("-", "-")(str)
expectedMatch := Match{
Template: "[ERROR] This is a %s message %s [INFO] %stest%s",
Patterns: []string{"-debug-", "-(and it's okay)-", "--", "--"},
}
assert.Equal(t, expectedMatch, actualMatch)
str = "abcMULTIPLE CHARACTERSdef whoa"
actualMatch = MatchSurrounded("abc", "def")(str)
expectedMatch = Match{
Template: "%s whoa",
Patterns: []string{"abcMULTIPLE CHARACTERSdef"},
}
assert.Equal(t, expectedMatch, actualMatch)
str = "[[DOUBLE CHARACTERS]]"
actualMatch = MatchSurrounded("[[", "]]")(str)
expectedMatch = Match{
Template: "%s",
Patterns: []string{"[[DOUBLE CHARACTERS]]"},
}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchBracketSurrounded(t *testing.T) {
str := "[ERROR] This is a -debug- message (and it's okay) [INFO] --test--"
actualMatch := MatchBracketSurrounded()(str)
expectedMatch := Match{
Template: "%s This is a -debug- message (and it's okay) %s --test--",
Patterns: []string{"[ERROR]", "[INFO]"},
}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchParensSurrounded(t *testing.T) {
str := "[ERROR] This is a -debug- message (and it's okay) [INFO] --test--"
actualMatch := MatchParensSurrounded()(str)
expectedMatch := Match{
Template: "[ERROR] This is a -debug- message %s [INFO] --test--",
Patterns: []string{"(and it's okay)"},
}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchDaysOfWeek(t *testing.T) {
str := "Today is Tuesday or tuesday not tUesday"
actualMatch := MatchDaysOfWeek()(str)
expectedMatch := Match{Template: "Today is %s or %s not tUesday", Patterns: []string{"Tuesday", "tuesday"}}
assert.Equal(t, actualMatch, expectedMatch)
str = "Today is Tuesday or tuesday not tUesday but Tuesday"
actualMatch = MatchDaysOfWeek()(str)
expectedMatch = Match{Template: "Today is %s or %s not tUesday but %s", Patterns: []string{"Tuesday", "tuesday", "Tuesday"}}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_MatchEmail(t *testing.T) {
str := "I am <[email protected]> and testing to send to dev@test"
actualMatch := MatchEmail()(str)
expectedMatch := Match{
Template: "I am <%s> and testing to send to dev@test",
Patterns: []string{"[email protected]"},
}
assert.Equal(t, expectedMatch, actualMatch)
str = "I am <[email protected]> and testing to send to [email protected]"
actualMatch = MatchEmail()(str)
expectedMatch = Match{
Template: "I am <%s> and testing to send to %s",
Patterns: []string{"[email protected]", "[email protected]"},
}
assert.Equal(t, expectedMatch, actualMatch)
}
func Test_findPatternMatchIndexes(t *testing.T) {
t.Parallel()
t.Run("Single Pattern", func(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
patterns := []string{"scream"}
actual := findPatternMatchIndexes(str, patterns)
expected := map[int]string{
2:"scream",
18: "scream",
33: "scream",
}
assert.Equal(t, expected, actual)
})
t.Run("Multiple Patterns", func(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
patterns := []string{"scream", "ice", "cream"}
actual := findPatternMatchIndexes(str, patterns)
expected := map[int]string{
2:"scream",
18: "scream",
33: "scream",
44: "ice",
48: "cream",
}
assert.Equal(t, expected, actual)
})
t.Run("No pattern occurences", func(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
patterns := []string{"pickle"}
actual := findPatternMatchIndexes(str, patterns)
expected := map[int]string{}
assert.Equal(t, expected, actual)
})
t.Run("Single Regexp Pattern", func(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
patterns := []string{"s[a-zA-Z]+"}
actual := findPatternMatchIndexes(str, patterns)
expected := map[int]string{
2:"scream",
18: "scream",
33: "scream",
}
assert.Equal(t, expected, actual)
})
t.Run("Multiple Regexp Patterns", func(t *testing.T) {
str := "I scream, you all scream, we all scream for ice cream."
patterns := []string{"s[a-zA-Z]+", "(?:,|\\.)"}
actual := findPatternMatchIndexes(str, patterns)
expected := map[int]string{
2:"scream",
18: "scream",
33: "scream",
8: ",",
24: ",",
53: ".",
}
assert.Equal(t, expected, actual)
})
}