Class: TestParse

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
lib/rdoc/markup/test/TestParse.rb

Defined Under Namespace

Classes: MockOutput

Instance Method Summary collapse

Instance Method Details

#basic_conv(str) ⇒ Object



54
55
56
57
58
59
# File 'lib/rdoc/markup/test/TestParse.rb', line 54

def basic_conv(str)
  sm = SimpleMarkup.new
  mock = MockOutput.new
  sm.convert(str, mock)
  sm.content
end

#line_groups(str, expected) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/rdoc/markup/test/TestParse.rb', line 68

def line_groups(str, expected)
  p = SimpleMarkup.new
  mock = MockOutput.new

  block = p.convert(str, mock)

  if block != expected
    rows = (0...([expected.size, block.size].max)).collect{|i|
      [expected[i]||"nil", block[i]||"nil"] 
    }
    printf "\n\n%35s %35s\n", "Expected", "Got"
    rows.each {|e,g| printf "%35s %35s\n", e.dump, g.dump }
  end

  assert_equal(expected, block)
end

#line_types(str, expected) ⇒ Object



61
62
63
64
65
66
# File 'lib/rdoc/markup/test/TestParse.rb', line 61

def line_types(str, expected)
  p = SimpleMarkup.new
  mock = MockOutput.new
  p.convert(str, mock)
  assert_equal(expected, p.get_line_types.map{|type| type.to_s[0,1]}.join(''))
end

#test_groupsObject



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
# File 'lib/rdoc/markup/test/TestParse.rb', line 201

def test_groups
  str = "now is the time"
  line_groups(str, ["L0: Paragraph\nnow is the time"] )

  str = "now is the time\nfor all good men"
  line_groups(str, ["L0: Paragraph\nnow is the time for all good men"] )

  str = %{\
    now is the time
      code _line_ here
    for all good men}

  line_groups(str,
              [ "L0: Paragraph\nnow is the time",
                "L0: Verbatim\n  code _line_ here\n",
                "L0: Paragraph\nfor all good men"
              ] )

  str = "now is the time\n  code\n more code\nfor all good men"
  line_groups(str,
              [ "L0: Paragraph\nnow is the time",
                "L0: Verbatim\n  code\n more code\n",
                "L0: Paragraph\nfor all good men"
              ] )

  str = %{\
     now is
     * l1
     * l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

  str = %{\
     now is
     * l1
       l1+
     * l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1 l1+",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

  str = %{\
     now is
     * l1
       * l1.1
     * l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L2: ListStart\n",
                "L2: ListItem\nl1.1",
                "L2: ListEnd\n",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
     * l1
       * l1.1
         text
           code
             code

         text
     * l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L2: ListStart\n",
                "L2: ListItem\nl1.1 text",
                "L2: Verbatim\n  code\n    code\n",
                "L2: Paragraph\ntext",
                "L2: ListEnd\n",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
     1. l1
        * l1.1
     2. l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L2: ListStart\n",
                "L2: ListItem\nl1.1",
                "L2: ListEnd\n",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

  str = %{\
     now is
     [cat] l1
           * l1.1
     [dog] l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L2: ListStart\n",
                "L2: ListItem\nl1.1",
                "L2: ListEnd\n",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

  str = %{\
     now is
     [cat] l1
           continuation
     [dog] l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1 continuation",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

  
end

#test_headingsObject



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
# File 'lib/rdoc/markup/test/TestParse.rb', line 470

def test_headings
  str = "= heading one"
  line_groups(str, 
              [ "L0: Heading\nheading one"
              ])

  str = "=== heading three"
  line_groups(str, 
              [ "L0: Heading\nheading three"
              ])

  str = "text\n   === heading three"
  line_groups(str, 
              [ "L0: Paragraph\ntext",
                "L0: Verbatim\n   === heading three\n"
              ])

  str = "text\n   code\n   === heading three"
  line_groups(str, 
              [ "L0: Paragraph\ntext",
                "L0: Verbatim\n   code\n   === heading three\n"
              ])

  str = "text\n   code\n=== heading three"
  line_groups(str, 
              [ "L0: Paragraph\ntext",
                "L0: Verbatim\n   code\n",
                "L0: Heading\nheading three"
              ])

end

#test_list_splitObject



444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# File 'lib/rdoc/markup/test/TestParse.rb', line 444

def test_list_split
  str = %{\
     now is
     * l1
     1. n1
     2. n2
     * l2
     the time}
  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L1: ListStart\n",
                "L1: ListItem\nl1",
                "L1: ListEnd\n",
                "L1: ListStart\n",
                "L1: ListItem\nn1",
                "L1: ListItem\nn2",
                "L1: ListEnd\n",
                "L1: ListStart\n",
                "L1: ListItem\nl2",
                "L1: ListEnd\n",
                "L0: Paragraph\nthe time"
              ])

end

#test_tabsObject



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/rdoc/markup/test/TestParse.rb', line 85

def test_tabs
  str = "hello\n  dave"
  assert_equal(str, basic_conv(str))
  str = "hello\n\tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n  \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n   \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n    \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n     \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n      \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n       \tdave"
  assert_equal("hello\n        dave", basic_conv(str))
  str = "hello\n        \tdave"
  assert_equal("hello\n                dave", basic_conv(str))
  str = ".\t\t."
  assert_equal(".               .", basic_conv(str))
end

#test_typesObject



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
# File 'lib/rdoc/markup/test/TestParse.rb', line 124

def test_types
  str = "now is the time"
  line_types(str, 'P')

  str = "now is the time\nfor all good men"
  line_types(str, 'PP')

  str = "now is the time\n  code\nfor all good men"
  line_types(str, 'PVP')

  str = "now is the time\n  code\n more code\nfor all good men"
  line_types(str, 'PVVP')

  str = "now is\n---\nthe time"
  line_types(str, 'PRP')

  str = %{\
     now is
     * l1
     * l2
     the time}
  line_types(str, 'PLLP')

  str = %{\
     now is
     * l1
       l1+
     * l2
     the time}
  line_types(str, 'PLPLP')

  str = %{\
     now is
     * l1
       * l1.1
     * l2
     the time}
  line_types(str, 'PLLLP')

  str = %{\
     now is
     * l1
       * l1.1
         text
           code
           code

         text
     * l2
     the time}
  line_types(str, 'PLLPVVBPLP')

  str = %{\
     now is
     1. l1
        * l1.1
     2. l2
     the time}
  line_types(str, 'PLLLP')

  str = %{\
     now is
     [cat] l1
           * l1.1
     [dog] l2
     the time}
  line_types(str, 'PLLLP')

  str = %{\
     now is
     [cat] l1
           continuation
     [dog] l2
     the time}
  line_types(str, 'PLPLP')
end

#test_verbatim_mergeObject



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
# File 'lib/rdoc/markup/test/TestParse.rb', line 354

def test_verbatim_merge
  str = %{\
     now is
        code
     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
        code
        code1
     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n   code1\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
        code

        code1
     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n\n   code1\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
        code

        code1

     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n\n   code1\n",
                "L0: Paragraph\nthe time"
              ])


  str = %{\
     now is
        code

        code1

        code2
     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n\n   code1\n\n   code2\n",
                "L0: Paragraph\nthe time"
              ])


  # Folds multiple blank lines
  str = %{\
     now is
        code


        code1

     the time}

  line_groups(str,
              [ "L0: Paragraph\nnow is",
                "L0: Verbatim\n   code\n\n   code1\n",
                "L0: Paragraph\nthe time"
              ])


end

#test_whitespaceObject



110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/rdoc/markup/test/TestParse.rb', line 110

def test_whitespace
  assert_equal("hello", basic_conv("hello"))
  assert_equal("hello", basic_conv(" hello "))
  assert_equal("hello", basic_conv(" \t \t hello\t\t"))

  assert_equal("1\n 2\n  3", basic_conv("1\n 2\n  3"))
  assert_equal("1\n 2\n  3", basic_conv("  1\n   2\n    3"))

  assert_equal("1\n 2\n  3\n1\n 2", basic_conv("1\n 2\n  3\n1\n 2"))
  assert_equal("1\n 2\n  3\n1\n 2", basic_conv("  1\n   2\n    3\n  1\n   2"))

  assert_equal("1\n 2\n\n  3", basic_conv("  1\n   2\n\n    3"))
end