File: test_kpeg_format.rb

package info (click to toggle)
ruby-kpeg 1.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: ruby: 11,839; makefile: 10
file content (613 lines) | stat: -rw-r--r-- 14,395 bytes parent folder | download
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
require 'minitest/autorun'
require 'kpeg'
require 'kpeg/format_parser'
require 'kpeg/grammar_renderer'
require 'stringio'
require 'rubygems'

class TestKPegFormat < Minitest::Test
  G = KPeg::Grammar.new

  if ENV['AUTOPKGTEST_TMP']
    gram_path = "/usr/share/rubygems-integration/all/gems/kpeg-#{KPeg::VERSION}/lib/kpeg/format_parser.kpeg"
  else
    gram_path = File.expand_path("../../lib/kpeg/format_parser.kpeg", __FILE__)
  end
  gram = File.read gram_path

  KPeg.compile gram, "TestParser", self

  def match(str, gram=nil, log=false)
    parc = TestParser.new str
    parc.raise_error unless parc.parse

    return parc.grammar
  end

  def assert_rule(expect, gram, name="a")
    actual = gram.find name.to_s
    assert_equal expect, actual.op
  end

  def test_assignment
    assert_rule G.ref("b"), match("a=b"), "a"
  end

  def test_apply_with_arg
    assert_rule G.ref("b", nil, "(x)"), match("a=b(x)"), "a"
  end

  def test_invoke
    assert_rule G.invoke("b"), match("a=@b"), "a"
  end

  def test_assignment_hyphen_only
    assert_rule G.ref("b"), match("-=b"), "-"
  end

  def test_assigment_sp
    assert_rule G.ref("b"), match(" a=b")
    assert_rule G.ref("b"), match(" a =b")
    assert_rule G.ref("b"), match(" a = b")
    assert_rule G.ref("b"), match(" a = b ")
  end

  def test_assign_with_arg
    gram = match("a(t) = b")
    rule = gram.find "a"
    assert_equal ["t"], rule.arguments
  end

  def test_assign_with_arg_disambiguated_from_grouping
    str = <<-STR
a = c
b(p) = x
    STR

    assert match(str) # HACK what is this testing?
  end

  def test_assign_with_multiple_args
    gram = match("a(t,x) = b")
    rule = gram.find "a"
    assert_equal ["t", "x"], rule.arguments
  end

  def test_assign_with_args_spacing
    gram = match("a( t) = b")
    rule = gram.find "a"
    assert_equal ["t"], rule.arguments

    gram = match("a( t ) = b")
    rule = gram.find "a"
    assert_equal ["t"], rule.arguments

    gram = match("a( t,x) = b")
    rule = gram.find "a"
    assert_equal ["t", "x"], rule.arguments

    gram = match("a( t,x ) = b")
    rule = gram.find "a"
    assert_equal ["t", "x"], rule.arguments

    gram = match("a( t ,x ) = b")
    rule = gram.find "a"
    assert_equal ["t", "x"], rule.arguments

    gram = match("a( t , x ) = b")
    rule = gram.find "a"
    assert_equal ["t", "x"], rule.arguments
  end

  def test_invoke_with_arg
    gram = match("a=b(1)")
    rule = gram.find "a"
    assert_equal "(1)", rule.op.arguments
  end

  def test_invoke_with_double_quoted_strings
    m = match "a=b(\")\")"
    assert_equal "(\")\")", m.find("a").op.arguments
  end

  def test_invoke_with_single_quoted_strings
    m = match "a=b(')')"
    assert_equal "(')')", m.find("a").op.arguments
  end


  def test_invoke_with_multiple_args
    assert_rule G.invoke("b", "(1,2)"), match("a=@b(1,2)"), "a"
  end

  def test_invoke_foreign_rule
    assert_rule G.foreign_invoke("blah", "letters"),
                match("a=%blah.letters"), "a"
  end

  def test_add_foreign_grammar
    gram = match "%blah = OtherGrammar"
    assert_equal "OtherGrammar", gram.foreign_grammars["blah"]
  end

  def test_add_foreign_grammar_with_numbers
    gram = match "%blah = Thing1::OtherGrammar"
    assert_equal "Thing1::OtherGrammar", gram.foreign_grammars["blah"]
  end

  def test_add_foreign_grammar_with_undescore
    gram = match "%blah = Other_Grammar"
    assert_equal "Other_Grammar", gram.foreign_grammars["blah"]
  end

  def test_invoke_parent_rule
    assert_rule G.foreign_invoke("parent", "letters"),
                match("a=^letters"), "a"
  end

  def test_dot
    assert_rule G.dot, match("a=.")
  end

  def test_string
    assert_rule G.str(""), match('a=""')
    assert_rule G.str("hello"), match('a="hello"')
    assert_rule G.str("hello\ngoodbye"), match('a="hello\ngoodbye"')
    assert_rule G.str("hello\n\0goodbye"), match('a="hello\n\0goodbye"')
    assert_rule G.str("hello\n\017goodbye"), match('a="hello\n\017goodbye"')
    assert_rule G.str("hello\n\017goodbye"), match('a="hello\n\017goodbye"')
    assert_rule G.str("hello\n\9goodbye"), match('a="hello\n\9goodbye"')
    assert_rule G.str("\n\s\r\t\v\f\b\a\r\\\"\0172\x1b"),
                match('a="\n\s\r\t\v\f\b\a\r\\\\\\"\0172\x1b"')
    assert_rule G.str("h\"ello"), match('a="h\"ello"')
  end

  def test_regexp
    assert_rule G.reg('foo'), match('a=/foo/')
    assert_rule G.reg('foo\\/bar'), match('a=/foo\/bar/')
    assert_rule G.reg('[^"]'), match('a=/[^"]/')
  end

  def test_regexp_options
    if RUBY_VERSION > "1.8.7"
      assert_rule G.reg(/foo/n), match('a=/foo/n')    
    else
      assert_rule G.reg(/foo/u), match('a=/foo/u')
    end
  end

  def test_char_range
    assert_rule G.range("a", "z"), match('a=[a-z]')
  end

  def test_maybe
    assert_rule G.maybe(:b), match('a=b?')
  end

  def test_many
    assert_rule G.many(:b), match('a=b+')
  end

  def test_many_sequence
    assert_rule G.many([:b, :c]), match('a=(b c)+')
  end

  def test_many_sequence_with_action
    assert_rule G.seq(G.many([:b, :c]), G.action(" 1 ")), 
                                   match('a=(b c)+ { 1 }')
  end

  def test_kleene
    assert_rule G.kleene(:b), match('a=b*')
  end

  def test_arbitrary_multiple
    assert_rule G.multiple(:b, 5, 9), match('a=b[5,9]')
  end
  
  def test_single_value_for_multiple
    assert_rule G.multiple(:b, 5, 5), match('a=b[5]')
  end

  def test_no_max_multiple
    assert_rule G.multiple(:b, 5, nil), match('a=b[5,*]')
  end

  def test_no_max_multiple_sp
    assert_rule G.multiple(:b, 5, nil), match('a=b[5, *]')
    assert_rule G.multiple(:b, 5, nil), match('a=b[5, * ]')
    assert_rule G.multiple(:b, 5, nil), match('a=b[5 , * ]')
    assert_rule G.multiple(:b, 5, nil), match('a=b[ 5 , * ]')
  end

  def test_andp
    assert_rule G.andp(:c), match('a=&c')
  end

  def test_notp
    assert_rule G.notp(:c), match('a=!c')
  end

  def test_choice
    assert_rule G.any(:b, :c), match('a=b|c')
  end

  def test_choice_seq_priority
    assert_rule G.any([:num, :b], :c), match('a=num b|c')
  end

  def test_choice_sp
    m = match 'a=num "+" dig | dig'
    expected = G.any([:num, "+", :dig], :dig)
    assert_rule expected, m
  end

  def test_choice_sp2
    str = <<-STR
Stmt    = - Expr:e EOL
        | ( !EOL . )* EOL
    STR
    m = match str
    expected = G.any(
                  [:"-", G.t(:Expr, "e"), :EOL],
                  [G.kleene([G.notp(:EOL), G.dot]), :EOL])

    assert_rule expected, m, "Stmt"
  end

  def test_choice_with_actions
    str = <<-STR
Stmt    = - Expr:e EOL                  { p e }
        | ( !EOL . )* EOL               { puts "error" }
    STR
    m = match str
    expected = G.any(
                  [:"-", G.t(:Expr, "e"), :EOL, G.action(" p e ")],
                  [G.kleene([G.notp(:EOL), G.dot]), :EOL,
                   G.action(" puts \"error\" ")])

    assert_rule expected, m, "Stmt"
  end

  def test_multiline_seq
    str = <<-STR
Sum     = Product:l
                ( PLUS  Product:r       { l += r }
                | MINUS Product:r       { l -= r }
                )*                      { l }
    STR
    m = match str
    expected = G.seq(
                  G.t(:Product, "l"),
                  G.kleene(
                    G.any(
                      [:PLUS, G.t(:Product, "r"),  G.action(" l += r ")],
                      [:MINUS, G.t(:Product, "r"), G.action(" l -= r ")]
                    )),
                  G.action(" l "))

    assert_rule expected, m, "Sum"
  end

  def test_multiline_seq2
    str = <<-STR
Value   = NUMBER:i                      { i }
        | ID:i !ASSIGN                  { vars[i] }
        | OPEN Expr:i CLOSE             { i }
    STR
    assert match(str) # HACK what is this testing?
  end

  def test_seq
    m = match 'a=b c'
    assert_rule G.seq(:b, :c), m

    m = match 'a=b c d'
    assert_rule G.seq(:b, :c, :d), m

    m = match 'a=b c d e f'
    assert_rule G.seq(:b, :c, :d, :e, :f), m
  end

  def test_tag
    m = match 'a=b:x'
    assert_rule G.t(:b, "x"), m
  end

  def test_tag_parens
    m = match 'a=(b c):x'
    assert_rule G.t([:b, :c], "x"), m
  end

  def test_tag_priority
    m = match 'a=d (b c):x'
    assert_rule G.seq(:d, G.t([:b, :c], "x")), m

    m = match 'a=d c*:x'
    assert_rule G.seq(:d, G.t(G.kleene(:c), "x")), m
  end

  def test_parens
    m = match 'a=(b c)'
    assert_rule G.seq(:b, :c), m
  end

  def test_parens_sp
    m = match 'a=( b c )'
    assert_rule G.seq(:b, :c), m
  end

  def test_parens_as_outer
    m = match 'a=b (c|d)'
    assert_rule G.seq(:b, G.any(:c, :d)), m
  end

  def test_action
    m = match 'a=b c { b + c }'
    assert_rule G.seq(:b, :c, G.action(" b + c ")), m
  end

  def test_action_nested_curly
    m = match 'a=b c { b + { c + d } }'
    assert_rule G.seq(:b, :c, G.action(" b + { c + d } ")), m
  end

  def test_actions_handle_double_quoted_strings
    m = match 'a=b c { b + c + "}" }'
    assert_rule G.seq(:b, :c, G.action(' b + c + "}" ')), m
  end

  def test_actions_handle_single_quoted_strings
    m = match "a=b c { b + c + '}' }"
    assert_rule G.seq(:b, :c, G.action(" b + c + '}' ")), m
  end

  def test_action_send
    m = match 'a=b c ~d'
    assert_rule G.seq(:b, :c, G.action("d")), m
  end

  def test_action_send_with_args
    m = match 'a=b c ~d(b,c)'
    assert_rule G.seq(:b, :c, G.action("d(b,c)")), m
  end

  def test_collect
    m = match 'a = < b c >'
    assert_rule G.collect(G.seq(:b, :c)), m
  end

  def test_bounds
    m = match 'a = @< b c >'
    assert_rule G.bounds(G.seq(:b, :c)), m
  end

  def test_comment
    m = match "a=b # this is a comment\n"
    assert_rule G.ref('b'), m
  end

  def test_comment_span
    m = match "a=b # this is a comment\n   c"
    assert_rule G.seq(G.ref('b'), G.ref("c")), m
  end

  def test_parser_directive
    m = match <<-GRAMMAR
%% header {
# coding: UTF-8
}

a=b
    GRAMMAR

    assert_rule G.ref("b"), m

    expected = {
      "header" => KPeg::Action.new("\n# coding: UTF-8\n")
    }

    assert_equal expected, m.directives
  end

  def test_parser_directive_duplicate
    m = nil

    out, err = capture_io do
      m = match <<-GRAMMAR
%% header {
# coding: UTF-8
}

a=b

%% header {
# coding: ISO-8859-1
}
      GRAMMAR
    end

    assert_empty out
    assert_equal "directive \"header\" appears more than once\n", err

    expected = {
      "header" => KPeg::Action.new("\n# coding: ISO-8859-1\n")
    }

    assert_equal expected, m.directives
  end

  def test_parser_directive_single_quote
    m = match <<-GRAMMAR
%% header {
# It's a bug I found
}

a=b
    GRAMMAR

    assert_rule G.ref("b"), m

    expected = {
      "header" => KPeg::Action.new("\n# It's a bug I found\n")
    }

    assert_equal expected, m.directives
  end
  

  def test_parser_setup
    m = match "%% { def initialize; end }\na=b"
    assert_rule G.ref("b"), m
    assert_equal " def initialize; end ", m.setup_actions.first.action
  end

  def test_parser_name
    m = match "%%name = BlahParser"
    assert_equal "BlahParser", m.variables["name"]
  end

  def test_multiple_rules
    m = match "a=b\nc=d\ne=f"
    assert_rule G.ref("b"), m, "a"
    assert_rule G.ref("d"), m, "c"
    assert_rule G.ref("f"), m, "e"
  end

  def test_multiline_choice
    gram = <<-GRAM
expr = num "+" num
     | num "-" num
    GRAM

    m = match gram
    expected = G.seq(:num, "+", :num) |
               G.seq(:num, "-", :num)
    assert_rule expected, m, "expr"
  end

  def test_multiline_choice_many2
    gram = <<-GRAM
term = term "+" fact
     | term "-" fact
     | fact
fact = fact "*" num
     | fact "/" num
     | num
    GRAM

    m = match gram
    term = G.any([:term, "+", :fact],
                 [:term, "-", :fact],
                  :fact)
    fact = G.any([:fact, "*", :num],
                  [:fact, "/", :num],
                   :num)

    assert_equal term, m.find("term").op
    assert_equal fact, m.find("fact").op
  end

  def test_multiline_choice_many
    gram = <<-GRAM
term = term "+" fact
     | term "-" fact
fact = fact "*" num
     | fact "/" num
    GRAM

    m = match gram
    term = G.any([:term, "+", :fact],
                 [:term, "-", :fact])
    fact = G.any([:fact, "*", :num],
                  [:fact, "/", :num])

    assert_equal term, m.find("term").op
    assert_equal fact, m.find("fact").op
  end

  def make_parser(str, gram, debug=false)
    cg = KPeg::CodeGenerator.new "Test", gram, debug
    inst = cg.make(str)
    return inst
  end

  def test_allow_ends_with_comment
    path = File.expand_path("../inputs/comments.kpeg", __FILE__)
    parser = KPeg::FormatParser.new File.read(path), true
    assert_equal true, parser.parse
  end

  def test_roundtrip
    if ENV['AUTOPKGTEST_TMP']
      path = "/usr/share/rubygems-integration/all/gems/kpeg-#{KPeg::VERSION}/lib/kpeg/format_parser.kpeg"
    else
      path = File.expand_path("../../lib/kpeg/format_parser.kpeg", __FILE__)
    end
    parser = KPeg::FormatParser.new File.read(path)
    assert parser.parse, "Unable to parse"

    start = parser.grammar

    gr = KPeg::GrammarRenderer.new(start)
    io = StringIO.new
    gr.render(io)

    scan = make_parser io.string, start
    unless scan.parse
      puts io.string
      scan.show_error
      assert !scan.failed?, "parsing the grammar"
    end

    g2 = scan.grammar

    gr2 = KPeg::GrammarRenderer.new(g2)
    io2 = StringIO.new
    gr2.render(io2)

    unless io.string == io2.string
      require 'tempfile'

      Tempfile.open "diff" do |f1|
        f1 << io.string
        f1.close

        Tempfile.open "diff" do |f2|
          f2 << io2.string
          f2.close

          system "diff -u #{f1.path} #{f2.path}"
        end
      end
    end

    assert_equal io.string, io2.string

    # Go for a 3rd generation!
    scan2 = make_parser io2.string, g2
    assert scan2.parse, "parsing the grammar"

    g3 = scan2.grammar

    unless g3.rules.empty?
      gr3 = KPeg::GrammarRenderer.new(g3)
      io3 = StringIO.new
      gr3.render(io3)

      assert_equal io2.string, io3.string

      # INCEPTION! 4! go for 4!
      scan3 = make_parser io3.string, g3
      assert scan3.parse, "parsing the grammar"

      g4 = scan3.grammar

      gr4 = KPeg::GrammarRenderer.new(g4)
      io4 = StringIO.new
      gr4.render(io4)

      assert_equal io3.string, io4.string
    end
  end
end