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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
|
require "./spec_helper"
require "../src/parcom.cr"
include Parcom
describe Tokens do
describe ".from_string" do
it "constructs a Tokens(Char) from a String" do
tokens = Tokens.from_string("abcd")
tokens.tokens.should eq("abcd".chars)
end
end
describe "#initialize" do
it "wraps an array with the contents of the given iterable" do
set = Set{'a', 'b', 'c', 'd'}
tokens = Tokens.new(set)
tokens.tokens.should eq(set.to_a)
arr = "abcd".chars
tokens = Tokens.new(arr)
tokens.tokens.should eq(arr)
end
end
context do
tokens_empty = Tokens.new([] of Char)
tokens = Tokens.from_string("abcd")
describe "#[]" do
it "returns the token at the given index" do
tokens[2].should eq('c')
expect_raises(IndexError) { tokens_empty[2] }
end
it "returns a new Tokens similar to Array#[](Int, Int)" do
tokens[1, 5].should eq(Tokens.new(['b', 'c', 'd']))
expect_raises(IndexError) { tokens_empty[1, 5] }
end
it "returns a new Tokens similar to Array#[](Range)" do
tokens[1..3].should eq(Tokens.new(['b', 'c', 'd']))
expect_raises(IndexError) { tokens_empty[1..3] }
end
end
describe "#[]?" do
it "analogous to `Array#[]?`" do
# we should only need to check the nil-returning cases
tokens_empty[2]?.should be_nil
tokens_empty[1, 5]?.should be_nil
tokens_empty[1..3]?.should be_nil
end
end
describe "#empty?" do
it "exposes the `#empty?` method of the wrapped array" do
tokens.empty?.should be_false
tokens_empty.empty?.should be_true
end
end
end
end
describe Result do
describe "#initialize" do
it "sets values for #tokens and #value" do
tokens = Tokens.from_string("esting")
value = 't'
result = Result(Char, Char).new(tokens, value)
result.tokens.should eq(tokens)
result.value.should eq(value)
end
end
end
describe Parser do
p = AnyToken(Char).new
describe "#parse?" do
it "returns `nil` if the parser fails" do
result = p.parse?(Tokens.new([] of Char))
result.should be_nil
end
it "returns a `Result(T, V)` if the parser succeeds" do
tokens = Tokens.from_string("testing")
result = p.parse(tokens)
result.should be_a(Result(Char, Char))
end
end
end
describe Flunk do
describe "#parse" do
it "always fails" do
tokens = Tokens.from_string("testing")
expect_raises(ParserFail) { Flunk(Char, Char).new.parse(tokens) }
end
end
end
describe AnyToken do
context do
p = AnyToken(Char).new
describe "#parse" do
it "succeeds when input is non-empty" do
tokens = Tokens.from_string("testing")
result = p.parse(tokens)
result.tokens.should eq(tokens[1..])
result.value.should eq('t')
end
it "fails when input is empty" do
expect_raises(ParserFail) { p.parse(Tokens.new([] of Char)) }
end
end
end
end
describe EOF do
p = EOF(Char).new
describe "#parse" do
it "succeeds when input is empty" do
result = p.parse(Tokens.new([] of Char))
result.tokens.empty?.should be_true
result.value.should be_nil
end
it "fails when input is non-empty" do
tokens = Tokens.from_string("testing")
expect_raises(ParserFail) { p.parse(tokens) }
end
end
end
describe Peek do
tokens = Tokens.from_string("testing")
p = AnyToken(Char).new
result_normal = p.parse(tokens)
result_peek = Peek.new(p).parse(tokens)
describe "#parse" do
it "does not modify the result of the wrapped parser" do
result_peek.value.should eq(result_normal.value)
end
it "does not consume any input" do
result_peek.tokens.should eq(tokens)
end
end
end
describe Assert do
test_f = ->(x : Char) { x == 't' }
p = AnyToken(Char).new.assert { |x| x == 't' }
describe "#parse" do
it "fails if the wrapped parser fails" do
expect_raises(ParserFail) do
p.parse(Tokens.new([] of Char))
end
end
it "fails if the result value fails the test" do
tokens = Tokens.from_string("_testing")
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if the wrapped parser succeeds and the test passes" do
tokens = Tokens.from_string("testing")
expected_char = tokens[0]
result = p.parse(tokens)
result.value.should eq(expected_char)
test_f.call(expected_char).should be_true
end
end
end
describe Satisfy do
p = Satisfy(Char).new { |x| x == 't' }
describe "#parse" do
it "fails if the input is empty" do
expect_raises(ParserFail) { p.parse(Tokens.new([] of Char)) }
end
it "fails if the token fails the test" do
tokens = Tokens.from_string("_testing")
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if the token passes the test" do
tokens = Tokens.from_string("testing")
expected_char = tokens[0]
result = p.parse(tokens)
result.value.should eq(expected_char)
end
end
end
describe Token do
tokens = Tokens.from_string("testing")
describe "#parse" do
it "fails if the input is empty" do
p = Token(Char).new('t')
expect_raises(ParserFail) { p.parse(Tokens.new([] of Char)) }
end
it "fails if the token is not the expected token" do
p = Token(Char).new('#')
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if the token is the expected token" do
expected_char = tokens[0]
p = Token(Char).new(expected_char)
result = p.parse(tokens)
result.value.should eq(expected_char)
end
end
end
describe Map do
describe "#parse" do
it "fails if the wrapped parser fails" do
p = AnyToken(Char).new.map { |x| x }
expect_raises(ParserFail) { p.parse(Tokens.new([] of Char)) }
end
it "changes the result value via the provided proc" do
p = AnyToken(Char).new.map { |x| x.letter? }
result = p.parse(Tokens.from_string("testing"))
result.value.should be_true
result = p.parse(Tokens.from_string("_testing"))
result.value.should be_false
end
end
end
describe Plus do
describe "#parse" do
tokens = Tokens.from_string("testing")
p_t = Token(Char).new('t')
p_e = Token(Char).new('e')
p_at = Token(Char).new('@')
it "fails if the first parser fails" do
p = p_at + p_e
expect_raises(ParserFail) { p.parse(tokens) }
end
it "fails if the second parser fails" do
p = p_t + p_at
expect_raises(ParserFail) { p.parse(tokens) }
end
it "fails if both parsers fail" do
p = p_at + p_at
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if both parsers succeed" do
p = p_t + p_e
result = p.parse(tokens)
result.tokens.should eq(tokens[2..])
result.value[0].should eq('t')
result.value[1].should eq('e')
end
it "evaluates parsers from left to right (left associative)" do
p_succeeds = p_t + p_e
p_fails = p_e + p_t
p_succeeds.parse(tokens) # should not raise an exception
expect_raises(ParserFail) { p_fails.parse(tokens) }
p_s = Token(Char).new('s')
r = (p_t + p_e + p_s).parse(tokens) # should not raise an exception
r.value.should be_a({ {Char, Char}, Char})
r = (p_t + (p_e + p_s)).parse(tokens) # should not raise an exception
r.value.should be_a({Char, {Char, Char} })
end
end
end
# most behavior shouldn't need to be tested
# since it is based on tested bbehavior from
# Plus and Map
describe Left do
describe "#parse" do
it "returns the value of the first parser if both succeed" do
tokens = Tokens.from_string("testing")
letter_t = Token.new('t')
letter_e = Token.new('e')
result = (letter_t << letter_e).parse(tokens)
result.value.should eq('t')
result.tokens.should eq(tokens[2..])
end
end
end
# same deal as Left
describe Right do
describe "#parse" do
it "returns the value of the second parser if both succeed" do
tokens = Tokens.from_string("testing")
letter_t = Token.new('t')
letter_e = Token.new('e')
result = (letter_t >> letter_e).parse(tokens)
result.value.should eq('e')
result.tokens.should eq(tokens[2..])
end
end
end
describe Phrase do
p = Phrase.new(Token.new('t'))
describe "#parse" do
it "fails if the wrapped parser fails" do
tokens = Tokens.from_string("_")
expect_raises(ParserFail) { p.parse(tokens) }
end
it "fails if not all of the input tokens are parsed" do
tokens = Tokens.from_string("tt")
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if the wrapped parser successfully parses all of the input" do
tokens = Tokens.from_string("t")
result = p.parse(tokens)
result.tokens.empty?.should be_true
result.value.should eq('t')
end
end
end
describe Recover do
p = Token.new('t').recover('@')
describe "#parse" do
it "succeeds and returns the wrapped parser's value if it succeeds" do
tokens = Tokens.from_string("testing")
result = p.parse(tokens)
result.tokens.should eq(tokens[1..])
result.value.should eq('t')
end
it "succeeds and returns the default value without modifying the input if the wrapped parser fails" do
tokens = Tokens.from_string("_____")
result = p.parse(tokens)
result.tokens.should eq(tokens)
result.value.should eq('@')
end
end
end
describe Optional do
p = Optional.new(Token.new('t'))
describe "#parse" do
it "succeeds and returns the wrapped parser's value if it succeeds" do
tokens = Tokens.from_string("testing")
result = p.parse(tokens)
result.tokens.should eq(tokens[1..])
result.value.should eq('t')
end
it "succeeds and returns a value of `nil` without modifying the input if the wrapped parser fails" do
tokens = Tokens.from_string("_____")
result = p.parse(tokens)
result.tokens.should eq(tokens)
result.value.should be_nil
end
end
end
describe Sequence do
# HACK: ps has to be declared this way due to contravariance
# https://crystal-lang.org/reference/1.7/syntax_and_semantics/inheritance.html#covariance-and-contravariance
ps = [] of Parser(Char, Char)
ps = ps + "abcd".chars.map { |c| Token.new(c) }
p = Sequence.new(ps)
describe "#parse" do
it "runs each wrapped parser in order, returns each result" do
tokens = Tokens.from_string("abcd")
result = p.parse(tokens)
result.value.should eq("abcd".chars)
result.tokens.empty?.should be_true
end
it "fails if any of the wrapped parsers fail" do
fail_strings = ["", "abed", "bbcd", "abce"]
fail_strings.each do |s|
tokens = Tokens.from_string(s)
expect_raises(ParserFail) { p.parse(tokens) }
end
end
it "succeeds and returns empty array if parser iterable is empty" do
tokens = Tokens.from_string("abcd")
empty_p = Sequence.new([] of Parser(Char, Char))
result = empty_p.parse(tokens)
result.value.empty?.should be_true
result.tokens.should eq(tokens)
end
end
end
describe TokenSeq do
p = TokenSeq.new("test".chars)
describe "#parse" do
it "fails if the input stream is too short" do
input = Tokens.from_string("")
expect_raises(ParserFail) { p.parse(input) }
end
it "fails if it encounters an unexpected token" do
input = Tokens.from_string("text")
expect_raises(ParserFail) { p.parse(input) }
end
it "succeeds if the input starts with the expected tokens" do
input = Tokens.from_string("testing")
result = p.parse(input)
result.tokens.should eq(input[4..])
result.value.should eq("test".chars)
end
end
end
describe Many do
p = Many.new(Token.new('a'))
describe "#parse" do
it "returns an empty array if the wrapped parser never succeeds" do
tokens = Tokens.from_string("bb")
result = p.parse(tokens)
result.value.empty?.should be_true
result.tokens.should eq(tokens)
end
it "stops parsing when the wrapped parser fails, returns all successes" do
tokens = Tokens.from_string("aaabcd")
result = p.parse(tokens)
result.value.should eq("aaa".chars)
result.tokens.should eq(tokens[3..])
tokens = Tokens.from_string("aaa")
result = p.parse(tokens)
result.value.should eq("aaa".chars)
result.tokens.should eq(tokens[3..])
end
end
end
describe Some do
p = Some.new(Token.new('a'))
describe "#parse" do
it "fails if the wrapped parser never succeeds" do
tokens = Tokens.from_string("")
expect_raises(ParserFail) { p.parse(tokens) }
end
it "stops parsing when the wrapped parser fails, returns all successes" do
tokens = Tokens.from_string("aaabcd")
result = p.parse(tokens)
result.value.should eq("aaa".chars)
result.tokens.should eq(tokens[3..])
tokens = Tokens.from_string("aaa")
result = p.parse(tokens)
result.value.should eq("aaa".chars)
result.tokens.should eq(tokens[3..])
end
end
end
describe Exactly do
letter_a = Token.new('a')
tokens = Tokens.from_string("aaabcd")
describe "#parse" do
it "tries to parse exactly n of the wrapper parser" do
p = Exactly.new(3, letter_a)
result = p.parse(tokens)
result.value.should eq("aaa".chars)
result.tokens.should eq(tokens[3..])
end
it "always succeeds with an empty array if n < 1" do
p = Exactly.new(0, letter_a)
result = p.parse(tokens)
result.value.empty?.should be_true
result.tokens.should eq(tokens)
p = Exactly.new(-42, letter_a)
result = p.parse(tokens)
result.value.empty?.should be_true
result.tokens.should eq(tokens)
end
it "does not take extra matching tokens" do
p = Exactly.new(2, letter_a)
result = p.parse(tokens)
result.value.should eq("aa".chars)
result.tokens.should eq(tokens[2..])
end
it "fails if there are not enough matching tokens" do
p = Exactly.new(60, letter_a)
expect_raises(ParserFail) { p.parse(tokens) }
end
end
end
describe AtLeast do
letter_a = Token.new('a')
tokens = Tokens.from_string("aaaabcd")
describe "#parse" do
it "fails if there are not enough matching tokens to parse" do
p = AtLeast.new(5, letter_a)
expect_raises(ParserFail) { p.parse(tokens) }
#expect_raises(ParserFail) { raise ParserFail.new("sdgseg") }
end
it "parses n or more times with the given parser" do
p0 = AtLeast.new(0, letter_a)
p2 = AtLeast.new(2, letter_a)
p4 = AtLeast.new(4, letter_a)
result0 = p0.parse(tokens)
result2 = p2.parse(tokens)
result4 = p4.parse(tokens)
result0.value.should eq("aaaa".chars)
result0.tokens.should eq(tokens[4..])
result2.should eq(result0)
result4.should eq(result0)
end
end
end
describe AtMost do
letter_a = Token.new('a')
tokens = Tokens.from_string("aaaabcd")
describe "#parse" do
it "does not parse more than n times" do
p0 = AtMost.new(0, letter_a)
p2 = AtMost.new(2, letter_a)
p6 = AtMost.new(6, letter_a)
r0 = p0.parse(tokens)
r0.value.empty?.should be_true
r0.tokens.should eq(tokens)
r2 = p2.parse(tokens)
r2.value.should eq("aa".chars)
r2.tokens.should eq(tokens[2..])
r6 = p6.parse(tokens)
r6.value.should eq("aaaa".chars)
r6.tokens.should eq(tokens[4..])
end
end
end
describe Between do
letter_a = Token.new('a')
tokens = Tokens.from_string("aaaabcd")
describe "#parse" do
it "parses at least i times, up to a limit of j times" do
p0_4 = Between.new(0, 4, letter_a)
r0_4 = p0_4.parse(tokens)
r0_4.value.should eq("aaaa".chars)
r0_4.tokens.should eq(tokens[4..])
end
it "fails if there are not enough parser successes" do
p = Between.new(5, 6, letter_a)
expect_raises(ParserFail) { p.parse(tokens) }
end
end
end
describe FirstOf do
tokens = Tokens.from_string("abcd")
letter_a = Token.new('a')
f = Flunk(Char, Char).new
describe "#parse" do
it "cannot be instantiated with an empty Enumerable" do
expect_raises(ArgumentError) { FirstOf.new([] of Parser(Char, Char)) }
end
it "uses the result of the first successful parser" do
a1 = [letter_a, f, f, f] of Parser(Char, Char)
a2 = [f, letter_a, f, f] of Parser(Char, Char)
a3 = [f, f, letter_a, f] of Parser(Char, Char)
a4 = [f, f, f, letter_a] of Parser(Char, Char)
[a1, a2, a3, a4].each do |arr|
p = FirstOf.new(arr)
r = p.parse(tokens)
r.value.should eq('a')
r.tokens.should eq(tokens[1..])
end
end
it "only fails if no parsers are successful" do
x = Token.new('x')
y = Token.new('x')
z = Token.new('x')
p = FirstOf.new([x, y, z] of Parser(Char, Char))
expect_raises(ParserFail) { p.parse(tokens) }
end
end
end
describe SepBy do
describe "#parse" do
letter_a = Token.new('a')
comma = Token.new(',')
tokens = Tokens.from_string("a,a,a,a")
it "fails if no elements can be parsed" do
p = SepBy(Char, Char, Char).new(comma, comma)
expect_raises(ParserFail) { p.parse(tokens) }
end
it "succeeds if only one element can be parsed" do
t1 = Tokens.from_string("a")
t2 = Tokens.from_string("a,")
p = SepBy(Char, Char, Char).new(letter_a, comma)
result = p.parse(t1)
result.value.should eq(['a'])
result.tokens.should eq(t1[1..])
result = p.parse(t2)
result.value.should eq(['a'])
result.tokens.should eq(t2[1..])
end
it "parses 1 element, then 0 or more (sep >> element)" do
p = SepBy(Char, Char, Char).new(letter_a, comma)
result = p.parse(tokens)
result.value.should eq("aaaa".chars)
result.tokens.empty?.should be_true
# drop last char in tokens, should parse three elements
result = p.parse(tokens[..5])
result.value.should eq("aaa".chars)
result.tokens.should eq(Tokens.from_string(","))
end
end
end
|