forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser_test.rb
773 lines (678 loc) · 26.4 KB
/
parser_test.rb
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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
# frozen_string_literal: true
require_relative 'test_helper'
context 'Parser' do
test 'is_section_title?' do
assert Asciidoctor::Parser.is_section_title?('AsciiDoc Home Page', '==================')
assert Asciidoctor::Parser.is_section_title?('=== AsciiDoc Home Page')
end
test 'sanitize attribute name' do
assert_equal 'foobar', Asciidoctor::Parser.sanitize_attribute_name('Foo Bar')
assert_equal 'foo', Asciidoctor::Parser.sanitize_attribute_name('foo')
assert_equal 'foo3-bar', Asciidoctor::Parser.sanitize_attribute_name('Foo 3^ # - Bar[')
end
test 'store attribute with value' do
attr_name, attr_value = Asciidoctor::Parser.store_attribute 'foo', 'bar'
assert_equal 'foo', attr_name
assert_equal 'bar', attr_value
end
test 'store attribute with negated value' do
{ 'foo!' => nil, '!foo' => nil, 'foo' => nil }.each do |name, value|
attr_name, attr_value = Asciidoctor::Parser.store_attribute name, value
assert_equal name.sub('!', ''), attr_name
assert_nil attr_value
end
end
test 'store accessible attribute on document with value' do
doc = empty_document
doc.set_attribute 'foo', 'baz'
attrs = {}
attr_name, attr_value = Asciidoctor::Parser.store_attribute 'foo', 'bar', doc, attrs
assert_equal 'foo', attr_name
assert_equal 'bar', attr_value
assert_equal 'bar', (doc.attr 'foo')
assert attrs.key?(:attribute_entries)
assert_equal 1, attrs[:attribute_entries].size
assert_equal 'foo', attrs[:attribute_entries][0].name
assert_equal 'bar', attrs[:attribute_entries][0].value
end
test 'store accessible attribute on document with value that contains attribute reference' do
doc = empty_document
doc.set_attribute 'foo', 'baz'
doc.set_attribute 'release', 'ultramega'
attrs = {}
attr_name, attr_value = Asciidoctor::Parser.store_attribute 'foo', '{release}', doc, attrs
assert_equal 'foo', attr_name
assert_equal 'ultramega', attr_value
assert_equal 'ultramega', (doc.attr 'foo')
assert attrs.key?(:attribute_entries)
assert_equal 1, attrs[:attribute_entries].size
assert_equal 'foo', attrs[:attribute_entries][0].name
assert_equal 'ultramega', attrs[:attribute_entries][0].value
end
test 'store inaccessible attribute on document with value' do
doc = empty_document attributes: { 'foo' => 'baz' }
attrs = {}
attr_name, attr_value = Asciidoctor::Parser.store_attribute 'foo', 'bar', doc, attrs
assert_equal 'foo', attr_name
assert_equal 'bar', attr_value
assert_equal 'baz', (doc.attr 'foo')
refute attrs.key?(:attribute_entries)
end
test 'store accessible attribute on document with negated value' do
{ 'foo!' => nil, '!foo' => nil, 'foo' => nil }.each do |name, value|
doc = empty_document
doc.set_attribute 'foo', 'baz'
attrs = {}
attr_name, attr_value = Asciidoctor::Parser.store_attribute name, value, doc, attrs
assert_equal name.sub('!', ''), attr_name
assert_nil attr_value
assert attrs.key?(:attribute_entries)
assert_equal 1, attrs[:attribute_entries].size
assert_equal 'foo', attrs[:attribute_entries][0].name
assert_nil attrs[:attribute_entries][0].value
end
end
test 'store inaccessible attribute on document with negated value' do
{ 'foo!' => nil, '!foo' => nil, 'foo' => nil }.each do |name, value|
doc = empty_document attributes: { 'foo' => 'baz' }
attrs = {}
attr_name, attr_value = Asciidoctor::Parser.store_attribute name, value, doc, attrs
assert_equal name.sub('!', ''), attr_name
assert_nil attr_value
refute attrs.key?(:attribute_entries)
end
end
test 'parse style attribute with id and role' do
attributes = { 1 => 'style#id.role' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_equal 'style', style
assert_equal 'style', attributes['style']
assert_equal 'id', attributes['id']
assert_equal 'role', attributes['role']
assert_equal 'style#id.role', attributes[1]
end
test 'parse style attribute with style, role, id and option' do
attributes = { 1 => 'style.role#id%fragment' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_equal 'style', style
assert_equal 'style', attributes['style']
assert_equal 'id', attributes['id']
assert_equal 'role', attributes['role']
assert_equal '', attributes['fragment-option']
assert_equal 'style.role#id%fragment', attributes[1]
refute attributes.key? 'options'
end
test 'parse style attribute with style, id and multiple roles' do
attributes = { 1 => 'style#id.role1.role2' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_equal 'style', style
assert_equal 'style', attributes['style']
assert_equal 'id', attributes['id']
assert_equal 'role1 role2', attributes['role']
assert_equal 'style#id.role1.role2', attributes[1]
end
test 'parse style attribute with style, multiple roles and id' do
attributes = { 1 => 'style.role1.role2#id' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_equal 'style', style
assert_equal 'style', attributes['style']
assert_equal 'id', attributes['id']
assert_equal 'role1 role2', attributes['role']
assert_equal 'style.role1.role2#id', attributes[1]
end
test 'parse style attribute with positional and original style' do
attributes = { 1 => 'new_style', 'style' => 'original_style' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_equal 'new_style', style
assert_equal 'new_style', attributes['style']
assert_equal 'new_style', attributes[1]
end
test 'parse style attribute with id and role only' do
attributes = { 1 => '#id.role' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_nil style
assert_equal 'id', attributes['id']
assert_equal 'role', attributes['role']
assert_equal '#id.role', attributes[1]
end
test 'parse empty style attribute' do
attributes = { 1 => nil }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_nil style
assert_nil attributes['id']
assert_nil attributes['role']
assert_nil attributes[1]
end
test 'parse style attribute with option should preserve existing options' do
attributes = { 1 => '%header', 'footer-option' => '' }
style = Asciidoctor::Parser.parse_style_attribute attributes
assert_nil style
assert_equal '', attributes['header-option']
assert_equal '', attributes['footer-option']
end
test 'parse author first' do
metadata = parse_header_metadata 'Stuart'
assert_equal 5, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stuart', metadata['firstname']
assert_equal 'S', metadata['authorinitials']
end
test 'parse author first last' do
metadata = parse_header_metadata 'Yukihiro Matsumoto'
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Yukihiro Matsumoto', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Yukihiro', metadata['firstname']
assert_equal 'Matsumoto', metadata['lastname']
assert_equal 'YM', metadata['authorinitials']
end
test 'parse author first middle last' do
metadata = parse_header_metadata 'David Heinemeier Hansson'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'David Heinemeier Hansson', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'David', metadata['firstname']
assert_equal 'Heinemeier', metadata['middlename']
assert_equal 'Hansson', metadata['lastname']
assert_equal 'DHH', metadata['authorinitials']
end
test 'parse author first middle last email' do
metadata = parse_header_metadata 'David Heinemeier Hansson <[email protected]>'
assert_equal 8, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'David Heinemeier Hansson', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'David', metadata['firstname']
assert_equal 'Heinemeier', metadata['middlename']
assert_equal 'Hansson', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'DHH', metadata['authorinitials']
end
test 'parse author first email' do
metadata = parse_header_metadata 'Stuart <[email protected]>'
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stuart', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stuart', metadata['firstname']
assert_equal '[email protected]', metadata['email']
assert_equal 'S', metadata['authorinitials']
end
test 'parse author first last email' do
metadata = parse_header_metadata 'Stuart Rackham <[email protected]>'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stuart Rackham', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stuart', metadata['firstname']
assert_equal 'Rackham', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'SR', metadata['authorinitials']
end
test 'parse author with hyphen' do
metadata = parse_header_metadata 'Tim Berners-Lee <[email protected]>'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Tim Berners-Lee', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Tim', metadata['firstname']
assert_equal 'Berners-Lee', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'TB', metadata['authorinitials']
end
test 'parse author with single quote' do
metadata = parse_header_metadata 'Stephen O\'Grady <[email protected]>'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stephen O\'Grady', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stephen', metadata['firstname']
assert_equal 'O\'Grady', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'SO', metadata['authorinitials']
end
test 'parse author with dotted initial' do
metadata = parse_header_metadata 'Heiko W. Rupp <[email protected]>'
assert_equal 8, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Heiko W. Rupp', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Heiko', metadata['firstname']
assert_equal 'W.', metadata['middlename']
assert_equal 'Rupp', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'HWR', metadata['authorinitials']
end
test 'parse author with underscore' do
metadata = parse_header_metadata 'Tim_E Fella'
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Tim E Fella', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Tim E', metadata['firstname']
assert_equal 'Fella', metadata['lastname']
assert_equal 'TF', metadata['authorinitials']
end
test 'parse author name with letters outside basic latin' do
metadata = parse_header_metadata 'Stéphane Brontë'
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stéphane Brontë', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stéphane', metadata['firstname']
assert_equal 'Brontë', metadata['lastname']
assert_equal 'SB', metadata['authorinitials']
end
test 'parse ideographic author names' do
metadata = parse_header_metadata '李 四 <[email protected]>'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal '李 四', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal '李', metadata['firstname']
assert_equal '四', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal '李四', metadata['authorinitials']
end
test 'parse author condenses whitespace' do
metadata = parse_header_metadata 'Stuart Rackham <[email protected]>'
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stuart Rackham', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stuart', metadata['firstname']
assert_equal 'Rackham', metadata['lastname']
assert_equal '[email protected]', metadata['email']
assert_equal 'SR', metadata['authorinitials']
end
test 'parse invalid author line becomes author' do
metadata = parse_header_metadata ' Stuart Rackham, founder of AsciiDoc <[email protected]>'
assert_equal 5, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Stuart Rackham, founder of AsciiDoc <[email protected]>', metadata['author']
assert_equal metadata['author'], metadata['authors']
assert_equal 'Stuart Rackham, founder of AsciiDoc <[email protected]>', metadata['firstname']
assert_equal 'S', metadata['authorinitials']
end
test 'parse multiple authors' do
metadata = parse_header_metadata 'Doc Writer <[email protected]>; John Smith <[email protected]>'
assert_equal 2, metadata['authorcount']
assert_equal 'Doc Writer, John Smith', metadata['authors']
assert_equal 'Doc Writer', metadata['author']
assert_equal 'Doc Writer', metadata['author_1']
assert_equal 'John Smith', metadata['author_2']
end
test 'should not parse multiple authors if semi-colon is not followed by space' do
metadata = parse_header_metadata 'Joe Doe;Smith Johnson'
assert_equal 1, metadata['authorcount']
end
test 'skips blank author entries in implicit author line' do
metadata = parse_header_metadata 'Doc Writer; ; John Smith <[email protected]>;'
assert_equal 2, metadata['authorcount']
assert_equal 'Doc Writer', metadata['author_1']
assert_equal 'John Smith', metadata['author_2']
end
test 'parse name with more than 3 parts in author attribute' do
doc = empty_document
parse_header_metadata ':author: Leroy Harold Scherer, Jr.', doc
assert_equal 'Leroy Harold Scherer, Jr.', doc.attributes['author']
assert_equal 'Leroy', doc.attributes['firstname']
assert_equal 'Harold', doc.attributes['middlename']
assert_equal 'Scherer, Jr.', doc.attributes['lastname']
end
test 'use explicit authorinitials if set after implicit author line' do
input = <<~'EOS'
Jean-Claude Van Damme
:authorinitials: JCVD
EOS
doc = empty_document
parse_header_metadata input, doc
assert_equal 'JCVD', doc.attributes['authorinitials']
end
test 'use explicit authorinitials if set after author attribute' do
input = <<~'EOS'
:author: Jean-Claude Van Damme
:authorinitials: JCVD
EOS
doc = empty_document
parse_header_metadata input, doc
assert_equal 'JCVD', doc.attributes['authorinitials']
end
test 'use implicit authors if value of authors attribute matches computed value' do
input = <<~'EOS'
Doc Writer; Junior Writer
:authors: Doc Writer, Junior Writer
EOS
doc = empty_document
parse_header_metadata input, doc
assert_equal 'Doc Writer, Junior Writer', doc.attributes['authors']
assert_equal 'Doc Writer', doc.attributes['author_1']
assert_equal 'Junior Writer', doc.attributes['author_2']
end
test 'replace implicit authors if value of authors attribute does not match computed value' do
input = <<~'EOS'
Doc Writer; Junior Writer
:authors: Stuart Rackham; Dan Allen; Sarah White
EOS
doc = empty_document
metadata = parse_header_metadata input, doc
assert_equal 3, metadata['authorcount']
assert_equal 3, doc.attributes['authorcount']
assert_equal 'Stuart Rackham, Dan Allen, Sarah White', doc.attributes['authors']
assert_equal 'Stuart Rackham', doc.attributes['author_1']
assert_equal 'Dan Allen', doc.attributes['author_2']
assert_equal 'Sarah White', doc.attributes['author_3']
end
test 'sets authorcount to 0 if document has no authors' do
input = ''
doc = empty_document
metadata = parse_header_metadata input, doc
assert_equal 0, doc.attributes['authorcount']
assert_equal 0, metadata['authorcount']
end
test 'returns empty hash if document has no authors and invoked without document' do
metadata = parse_header_metadata ''
assert_empty metadata
end
test 'does not drop name joiner when using multiple authors' do
input = 'Kismet Chameleon; Lazarus het_Draeke'
doc = empty_document
parse_header_metadata input, doc
assert_equal 2, doc.attributes['authorcount']
assert_equal 'Kismet Chameleon, Lazarus het Draeke', doc.attributes['authors']
assert_equal 'Kismet Chameleon', doc.attributes['author_1']
assert_equal 'Lazarus het Draeke', doc.attributes['author_2']
assert_equal 'het Draeke', doc.attributes['lastname_2']
end
test 'allows authors to be overridden using explicit author attributes' do
input = <<~'EOS'
Kismet Chameleon; Johnny Bravo; Lazarus het_Draeke
:author_2: Danger Mouse
EOS
doc = empty_document
parse_header_metadata input, doc
assert_equal 3, doc.attributes['authorcount']
assert_equal 'Kismet Chameleon, Danger Mouse, Lazarus het Draeke', doc.attributes['authors']
assert_equal 'Kismet Chameleon', doc.attributes['author_1']
assert_equal 'Danger Mouse', doc.attributes['author_2']
assert_equal 'Lazarus het Draeke', doc.attributes['author_3']
assert_equal 'het Draeke', doc.attributes['lastname_3']
end
test 'removes formatting before partitioning author defined using author attribute' do
input = ':author: pass:n[http://example.org/community/team.html[Ze_**Project** team]]'
doc = empty_document
parse_header_metadata input, doc
assert_equal 1, doc.attributes['authorcount']
assert_equal '<a href="http://example.org/community/team.html">Ze <strong>Project</strong> team</a>', doc.attributes['authors']
assert_equal 'Ze Project', doc.attributes['firstname']
assert_equal 'team', doc.attributes['lastname']
end
test 'parse rev number date remark' do
input = <<~'EOS'
Ryan Waldron
v0.0.7, 2013-12-18: The first release you can stand on
EOS
metadata = parse_header_metadata input
assert_equal 9, metadata.size
assert_equal '0.0.7', metadata['revnumber']
assert_equal '2013-12-18', metadata['revdate']
assert_equal 'The first release you can stand on', metadata['revremark']
end
test 'parse rev number, data, and remark as attribute references' do
input = <<~'EOS'
Author Name
v{project-version}, {release-date}: {release-summary}
EOS
metadata = parse_header_metadata input
assert_equal 9, metadata.size
assert_equal '{project-version}', metadata['revnumber']
assert_equal '{release-date}', metadata['revdate']
assert_equal '{release-summary}', metadata['revremark']
end
test 'should resolve attribute references in rev number, data, and remark' do
input = <<~'EOS'
= Document Title
Author Name
{project-version}, {release-date}: {release-summary}
EOS
doc = document_from_string input, attributes: {
'project-version' => '1.0.1',
'release-date' => '2018-05-15',
'release-summary' => 'The one you can count on!',
}
assert_equal '1.0.1', (doc.attr 'revnumber')
assert_equal '2018-05-15', (doc.attr 'revdate')
assert_equal 'The one you can count on!', (doc.attr 'revremark')
end
test 'parse rev date' do
input = <<~'EOS'
Ryan Waldron
2013-12-18
EOS
metadata = parse_header_metadata input
assert_equal 7, metadata.size
assert_equal '2013-12-18', metadata['revdate']
end
test 'parse rev number with trailing comma' do
input = <<~'EOS'
Stuart Rackham
v8.6.8,
EOS
metadata = parse_header_metadata input
assert_equal 7, metadata.size
assert_equal '8.6.8', metadata['revnumber']
refute metadata.key?('revdate')
end
# Asciidoctor recognizes a standalone revision without a trailing comma
test 'parse rev number' do
input = <<~'EOS'
Stuart Rackham
v8.6.8
EOS
metadata = parse_header_metadata input
assert_equal 7, metadata.size
assert_equal '8.6.8', metadata['revnumber']
refute metadata.key?('revdate')
end
# while compliant w/ AsciiDoc, this is just sloppy parsing
test 'treats arbitrary text on rev line as revdate' do
input = <<~'EOS'
Ryan Waldron
foobar
EOS
metadata = parse_header_metadata input
assert_equal 7, metadata.size
assert_equal 'foobar', metadata['revdate']
end
test 'parse rev date remark' do
input = <<~'EOS'
Ryan Waldron
2013-12-18: The first release you can stand on
EOS
metadata = parse_header_metadata input
assert_equal 8, metadata.size
assert_equal '2013-12-18', metadata['revdate']
assert_equal 'The first release you can stand on', metadata['revremark']
end
test 'should not mistake attribute entry as rev remark' do
input = <<~'EOS'
Joe Cool
:page-layout: post
EOS
metadata = parse_header_metadata input
refute_equal 'page-layout: post', metadata['revremark']
refute metadata.key?('revdate')
end
test 'parse rev remark only' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
Joe Cool
:Must start revremark-only line with space
EOS
metadata = parse_header_metadata input
assert_equal 'Must start revremark-only line with space', metadata['revremark']
refute metadata.key?('revdate')
end
test 'skip line comments before author' do
input = <<~'EOS'
// Asciidoctor
// release artist
Ryan Waldron
EOS
metadata = parse_header_metadata input
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Ryan Waldron', metadata['author']
assert_equal 'Ryan', metadata['firstname']
assert_equal 'Waldron', metadata['lastname']
assert_equal 'RW', metadata['authorinitials']
end
test 'skip block comment before author' do
input = <<~'EOS'
////
Asciidoctor
release artist
////
Ryan Waldron
EOS
metadata = parse_header_metadata input
assert_equal 6, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Ryan Waldron', metadata['author']
assert_equal 'Ryan', metadata['firstname']
assert_equal 'Waldron', metadata['lastname']
assert_equal 'RW', metadata['authorinitials']
end
test 'skip block comment before rev' do
input = <<~'EOS'
Ryan Waldron
////
Asciidoctor
release info
////
v0.0.7, 2013-12-18
EOS
metadata = parse_header_metadata input
assert_equal 8, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Ryan Waldron', metadata['author']
assert_equal '0.0.7', metadata['revnumber']
assert_equal '2013-12-18', metadata['revdate']
end
test 'break header at line with three forward slashes' do
input = <<~'EOS'
Joe Cool
v1.0
///
stuff
EOS
metadata = parse_header_metadata input
assert_equal 7, metadata.size
assert_equal 1, metadata['authorcount']
assert_equal 'Joe Cool', metadata['author']
assert_equal '1.0', metadata['revnumber']
end
test 'attribute entry overrides generated author initials' do
doc = empty_document
metadata = parse_header_metadata %(Stuart Rackham <[email protected]>\n:Author Initials: SJR), doc
assert_equal 'SR', metadata['authorinitials']
assert_equal 'SJR', doc.attributes['authorinitials']
end
test 'adjust indentation to 0' do
input = <<~EOS
\x20 def names
\x20 @name.split
\x20 end
EOS
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
expected = <<~EOS.chop
def names
@name.split
end
EOS
lines = input.split ?\n
Asciidoctor::Parser.adjust_indentation! lines
assert_equal expected, (lines * ?\n)
end
test 'adjust indentation mixed with tabs and spaces to 0' do
input = <<~EOS
def names
\t @name.split
end
EOS
expected = <<~EOS.chop
def names
@name.split
end
EOS
lines = input.split ?\n
Asciidoctor::Parser.adjust_indentation! lines, 0, 4
assert_equal expected, (lines * ?\n)
end
test 'expands tabs to spaces' do
input = <<~'EOS'
Filesystem Size Used Avail Use% Mounted on
Filesystem Size Used Avail Use% Mounted on
devtmpfs 3.9G 0 3.9G 0% /dev
/dev/mapper/fedora-root 48G 18G 29G 39% /
EOS
expected = <<~'EOS'.chop
Filesystem Size Used Avail Use% Mounted on
Filesystem Size Used Avail Use% Mounted on
devtmpfs 3.9G 0 3.9G 0% /dev
/dev/mapper/fedora-root 48G 18G 29G 39% /
EOS
lines = input.split ?\n
Asciidoctor::Parser.adjust_indentation! lines, 0, 4
assert_equal expected, (lines * ?\n)
end
test 'adjust indentation to non-zero' do
input = <<~EOS
\x20 def names
\x20 @name.split
\x20 end
EOS
expected = <<~EOS.chop
\x20 def names
\x20 @name.split
\x20 end
EOS
lines = input.split ?\n
Asciidoctor::Parser.adjust_indentation! lines, 2
assert_equal expected, (lines * ?\n)
end
test 'preserve block indent if indent is -1' do
input = <<~EOS
\x20 def names
\x20 @name.split
\x20 end
EOS
expected = input
lines = input.lines
Asciidoctor::Parser.adjust_indentation! lines, -1
assert_equal expected, lines.join
end
test 'adjust indentation handles empty lines gracefully' do
input = []
expected = input
lines = input.dup
Asciidoctor::Parser.adjust_indentation! lines
assert_equal expected, lines
end
test 'should warn if inline anchor is already in use' do
input = <<~'EOS'
[#in-use]
A paragraph with an id.
Another paragraph
[[in-use]]that uses an id
which is already in use.
EOS
using_memory_logger do |logger|
document_from_string input
assert_message logger, :WARN, '<stdin>: line 5: id assigned to anchor already in use: in-use', Hash
end
end
end