-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreader_test.go
511 lines (433 loc) · 13.6 KB
/
reader_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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
// Copyright (c) 2017 Opsidian Ltd.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package text_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/conflowio/parsley/parsley"
"github.com/conflowio/parsley/text"
)
var _ = Describe("Reader", func() {
const (
input = "abc def"
inputWithUTF8 = "🍕 and 🍺"
)
var (
r *text.Reader
f *text.File
data []byte
)
BeforeEach(func() {
data = []byte(input)
})
JustBeforeEach(func() {
f = text.NewFile("testfile", data)
r = text.NewReader(f)
})
Describe("ReadRune()", func() {
It("should match the next ASCII rune", func() {
pos, found := r.ReadRune(f.Pos(0), 'a')
Expect(pos).To(Equal(f.Pos(1)))
Expect(found).To(BeTrue())
})
It("should not match a different rune", func() {
pos, found := r.ReadRune(f.Pos(0), 'b')
Expect(pos).To(Equal(f.Pos(0)))
Expect(found).To(BeFalse())
})
It("should match an ASCII rune at the end", func() {
pos, found := r.ReadRune(f.Pos(6), 'f')
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeTrue())
})
Context("When input contains UTF8", func() {
BeforeEach(func() {
data = []byte(inputWithUTF8)
})
It("should match the next UTF8 rune", func() {
pos, found := r.ReadRune(f.Pos(0), '🍕')
Expect(pos).To(Equal(f.Pos(4)))
Expect(found).To(BeTrue())
})
It("should match a UTF8 rune at the end", func() {
pos, found := r.ReadRune(f.Pos(9), '🍺')
Expect(pos).To(Equal(f.Pos(13)))
Expect(found).To(BeTrue())
})
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, found := r.ReadRune(f.Pos(7), 'f')
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeFalse())
})
})
})
Describe("MatchString()", func() {
Context("when called with empty string", func() {
It("should panic", func() {
Expect(func() { r.MatchString(f.Pos(0), "") }).To(Panic())
})
})
It("should match the a substring", func() {
pos, found := r.MatchString(f.Pos(0), "ab")
Expect(pos).To(Equal(f.Pos(2)))
Expect(found).To(BeTrue())
})
It("should not match a different substring", func() {
pos, found := r.MatchString(f.Pos(0), "ac")
Expect(pos).To(Equal(f.Pos(0)))
Expect(found).To(BeFalse())
})
It("should match a substring at the end", func() {
pos, found := r.MatchString(f.Pos(5), "ef")
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeTrue())
})
It("should only match the full substring at the end", func() {
pos, found := r.MatchString(f.Pos(5), "efg")
Expect(pos).To(Equal(f.Pos(5)))
Expect(found).To(BeFalse())
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, found := r.MatchString(f.Pos(7), "x")
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeFalse())
})
})
Context("When input contains UTF8", func() {
BeforeEach(func() {
data = []byte(inputWithUTF8)
})
It("should match the a substring", func() {
pos, found := r.MatchString(f.Pos(0), "🍕 and")
Expect(pos).To(Equal(f.Pos(8)))
Expect(found).To(BeTrue())
})
It("should not match a different substring", func() {
pos, found := r.MatchString(f.Pos(0), "🍕 not")
Expect(pos).To(Equal(f.Pos(0)))
Expect(found).To(BeFalse())
})
It("should match a substring at the end", func() {
pos, found := r.MatchString(f.Pos(5), "and 🍺")
Expect(pos).To(Equal(f.Pos(13)))
Expect(found).To(BeTrue())
})
It("should only match the full substring at the end", func() {
pos, found := r.MatchString(f.Pos(5), "and 🍺 s")
Expect(pos).To(Equal(f.Pos(5)))
Expect(found).To(BeFalse())
})
})
})
Describe("MatchWord()", func() {
Context("when called with empty string", func() {
It("should panic", func() {
Expect(func() { r.MatchWord(f.Pos(0), "") }).To(Panic())
})
})
It("should match the full word", func() {
pos, found := r.MatchWord(f.Pos(0), "abc")
Expect(pos).To(Equal(f.Pos(3)))
Expect(found).To(BeTrue())
})
It("should not match a partial word", func() {
pos, found := r.MatchWord(f.Pos(0), "ab")
Expect(pos).To(Equal(f.Pos(0)))
Expect(found).To(BeFalse())
})
It("should not match the different word", func() {
pos, found := r.MatchWord(f.Pos(0), "abd")
Expect(pos).To(Equal(f.Pos(0)))
Expect(found).To(BeFalse())
})
It("should match a word at the end", func() {
pos, found := r.MatchWord(f.Pos(4), "def")
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeTrue())
})
It("should only match the full word at the end", func() {
pos, found := r.MatchWord(f.Pos(4), "defg")
Expect(pos).To(Equal(f.Pos(4)))
Expect(found).To(BeFalse())
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, found := r.MatchWord(f.Pos(7), "x")
Expect(pos).To(Equal(f.Pos(7)))
Expect(found).To(BeFalse())
})
})
Context("When input contains UTF8", func() {
BeforeEach(func() {
data = []byte(inputWithUTF8)
})
It("should panic", func() {
Expect(func() { r.MatchWord(f.Pos(0), "🍕 and") }).To(Panic())
})
})
})
Describe("ReadRegexp()", func() {
Context("when matches an empty string", func() {
It("should panic", func() {
Expect(func() { r.ReadRegexp(f.Pos(0), "x?") }).To(Panic())
})
})
It("should match the regexp", func() {
pos, match := r.ReadRegexp(f.Pos(0), "a+b+x?")
Expect(pos).To(Equal(f.Pos(2)))
Expect(match).To(Equal([]byte("ab")))
})
It("should not match a non-matching regexp", func() {
pos, match := r.ReadRegexp(f.Pos(0), "ac+")
Expect(pos).To(Equal(f.Pos(0)))
Expect(match).To(BeNil())
})
It("should match a regexp at the end", func() {
pos, match := r.ReadRegexp(f.Pos(5), "ef+")
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(Equal([]byte("ef")))
})
It("should only match the full match at the end", func() {
pos, match := r.ReadRegexp(f.Pos(5), "efg+")
Expect(pos).To(Equal(f.Pos(5)))
Expect(match).To(BeNil())
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, match := r.ReadRegexp(f.Pos(7), "x+")
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(BeNil())
})
})
Context("When input contains UTF8", func() {
BeforeEach(func() {
data = []byte(inputWithUTF8)
})
It("should match the regexp", func() {
pos, match := r.ReadRegexp(f.Pos(0), ".* and")
Expect(pos).To(Equal(f.Pos(8)))
Expect(match).To(Equal([]byte("🍕 and")))
})
It("should not match a non-matching regexp", func() {
pos, match := r.ReadRegexp(f.Pos(0), ".* not")
Expect(pos).To(Equal(f.Pos(0)))
Expect(match).To(BeNil())
})
It("should match a regexp at the end", func() {
pos, match := r.ReadRegexp(f.Pos(5), "and .*")
Expect(pos).To(Equal(f.Pos(13)))
Expect(match).To(Equal([]byte("and 🍺")))
})
It("should only match the full match at the end", func() {
pos, match := r.ReadRegexp(f.Pos(5), "and .*s")
Expect(pos).To(Equal(f.Pos(5)))
Expect(match).To(BeNil())
})
})
})
Describe("ReadRegexpSubmatch()", func() {
Context("when matches an empty string", func() {
It("should panic", func() {
Expect(func() { r.ReadRegexpSubmatch(f.Pos(0), "x?") }).To(Panic())
})
})
It("should match the regexp", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(0), "(a+)b+x?")
Expect(pos).To(Equal(f.Pos(2)))
Expect(match).To(Equal([][]byte{
[]byte("ab"),
[]byte("a"),
}))
})
It("should not match a non-matching regexp", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(0), "(a)c+")
Expect(pos).To(Equal(f.Pos(0)))
Expect(match).To(BeNil())
})
It("should match a regexp at the end", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(5), "(e)f+")
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(Equal([][]byte{
[]byte("ef"),
[]byte("e"),
}))
})
It("should only match the full match at the end", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(5), "efg+")
Expect(pos).To(Equal(f.Pos(5)))
Expect(match).To(BeNil())
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(7), "x+")
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(BeNil())
})
})
Context("When input contains UTF8", func() {
BeforeEach(func() {
data = []byte(inputWithUTF8)
})
It("should match the regexp", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(0), "(.*) and")
Expect(pos).To(Equal(f.Pos(8)))
Expect(match).To(Equal([][]byte{
[]byte("🍕 and"),
[]byte("🍕"),
}))
})
It("should not match a non-matching regexp", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(0), ".* not")
Expect(pos).To(Equal(f.Pos(0)))
Expect(match).To(BeNil())
})
It("should match a regexp at the end", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(5), "and (.*)")
Expect(pos).To(Equal(f.Pos(13)))
Expect(match).To(Equal([][]byte{
[]byte("and 🍺"),
[]byte("🍺"),
}))
})
It("should only match the full match at the end", func() {
pos, match := r.ReadRegexpSubmatch(f.Pos(5), "and .*s")
Expect(pos).To(Equal(f.Pos(5)))
Expect(match).To(BeNil())
})
})
})
Describe("Readf()", func() {
var fun func(b []byte) ([]byte, int)
BeforeEach(func() {
fun = func(b []byte) ([]byte, int) {
return b[0:1], 1
}
})
It("should match the input with the function", func() {
pos, match := r.Readf(f.Pos(0), fun)
Expect(pos).To(Equal(f.Pos(1)))
Expect(match).To(Equal([]byte("a")))
})
It("should match the input at the end", func() {
pos, match := r.Readf(f.Pos(6), fun)
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(Equal([]byte("f")))
})
It("should use the returned position instead of the length of the match", func() {
fun = func(b []byte) ([]byte, int) {
return b[0:1], 2
}
pos, match := r.Readf(f.Pos(1), fun)
Expect(pos).To(Equal(f.Pos(3)))
Expect(match).To(Equal([]byte("b")))
})
It("should return with no result and unchanged position if no match", func() {
fun = func(b []byte) ([]byte, int) {
return nil, 0
}
pos, match := r.Readf(f.Pos(2), fun)
Expect(pos).To(Equal(f.Pos(2)))
Expect(match).To(BeNil())
})
Context("at the end of the file", func() {
It("should not match anything", func() {
pos, match := r.Readf(f.Pos(7), fun)
Expect(pos).To(Equal(f.Pos(7)))
Expect(match).To(BeNil())
})
})
Context("when the returned position is after the end of file", func() {
It("should panic", func() {
fun = func(b []byte) ([]byte, int) {
return b[0:1], 2
}
Expect(func() { r.Readf(f.Pos(6), fun) }).To(Panic())
})
})
Context("when the returned position is before the end of the match", func() {
It("should panic", func() {
fun = func(b []byte) ([]byte, int) {
return b[0:2], 1
}
Expect(func() { r.Readf(f.Pos(0), fun) }).To(Panic())
})
})
Context("when the next positon is zero but a match is returned", func() {
It("should panic", func() {
fun = func(b []byte) ([]byte, int) {
return b[0:1], 0
}
Expect(func() { r.Readf(f.Pos(0), fun) }).To(Panic())
})
})
})
Describe("Remaining()", func() {
It("should return with the remaining bytes", func() {
Expect(r.Remaining(f.Pos(0))).To(Equal(len(input)))
})
It("should return with the remaining bytes from a given position", func() {
Expect(r.Remaining(f.Pos(3))).To(Equal(len(input) - 3))
})
})
Describe("Pos()", func() {
It("should return with global pos", func() {
Expect(r.Pos(1)).To(Equal(parsley.Pos(2)))
})
})
Describe("IsEOF()", func() {
It("should return false before the end of the input", func() {
Expect(r.IsEOF(f.Pos(0))).To(BeFalse())
Expect(r.IsEOF(f.Pos(6))).To(BeFalse())
})
It("should return true at the end of the input", func() {
Expect(r.IsEOF(f.Pos(7))).To(BeTrue())
})
})
Describe("SkipWhitespaces()", func() {
BeforeEach(func() {
data = []byte("abc \t\n\fdef ")
})
It("should not match any whitespaces if none", func() {
pos, err := r.SkipWhitespaces(f.Pos(0), text.WsSpacesNl)
Expect(pos).To(Equal(f.Pos(0)))
Expect(err).ToNot(HaveOccurred())
})
It("should match all types of whitespaces", func() {
pos, err := r.SkipWhitespaces(f.Pos(3), text.WsSpacesNl)
Expect(pos).To(Equal(f.Pos(7)))
Expect(err).ToNot(HaveOccurred())
})
Context("when new lines are not valid", func() {
It("should return an error", func() {
pos, err := r.SkipWhitespaces(f.Pos(3), text.WsSpaces)
Expect(pos).To(Equal(f.Pos(7)))
Expect(err).To(MatchError(parsley.NewError(f.Pos(5), parsley.NewWhitespaceError("new line is not allowed"))))
})
})
Context("when not skipping any whitespaces", func() {
It("should return an error", func() {
pos, err := r.SkipWhitespaces(f.Pos(3), text.WsNone)
Expect(pos).To(Equal(f.Pos(7)))
Expect(err).To(MatchError(parsley.NewError(f.Pos(3), parsley.NewWhitespaceError("whitespaces are not allowed"))))
})
})
Context("when forcing a new line", func() {
It("should return an error", func() {
pos, err := r.SkipWhitespaces(f.Pos(3), text.WsSpacesForceNl)
Expect(pos).To(Equal(f.Pos(7)))
Expect(err).ToNot(HaveOccurred())
})
It("should not match spaces and tabs only", func() {
pos, err := r.SkipWhitespaces(f.Pos(10), text.WsSpacesForceNl)
Expect(pos).To(Equal(f.Pos(12)))
Expect(err).To(MatchError(parsley.NewError(f.Pos(12), parsley.NewWhitespaceError("was expecting a new line"))))
})
})
})
})