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
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
|
# frozen_string_literal: true
require_relative 'test_helper'
class ExtensionsInitTest < Minitest::Test
def test_autoload
doc = empty_document
refute doc.extensions?, 'Extensions should not be enabled by default'
begin
# NOTE trigger extensions to autoload by registering empty group
Asciidoctor::Extensions.register do
end
rescue; end
doc = empty_document
assert doc.extensions?, 'Extensions should be enabled after being autoloaded'
self.class.remove_tests self.class
ensure
Asciidoctor::Extensions.unregister_all
end
self
end.new(nil).test_autoload
class SamplePreprocessor < Asciidoctor::Extensions::Preprocessor
def process doc, reader
nil
end
end
class SampleIncludeProcessor < Asciidoctor::Extensions::IncludeProcessor
end
class SampleDocinfoProcessor < Asciidoctor::Extensions::DocinfoProcessor
end
# NOTE intentionally using the deprecated name
class SampleTreeprocessor < Asciidoctor::Extensions::Treeprocessor
def process document
nil
end
end
SampleTreeProcessor = SampleTreeprocessor
class SamplePostprocessor < Asciidoctor::Extensions::Postprocessor
end
class SampleBlock < Asciidoctor::Extensions::BlockProcessor
end
class SampleBlockMacro < Asciidoctor::Extensions::BlockMacroProcessor
end
class SampleInlineMacro < Asciidoctor::Extensions::InlineMacroProcessor
end
class ScrubHeaderPreprocessor < Asciidoctor::Extensions::Preprocessor
def process doc, reader
lines = reader.lines
skipped = []
while !lines.empty? && !lines.first.start_with?('=')
skipped << lines.shift
reader.advance
end
doc.set_attr 'skipped', (skipped * "\n")
reader
end
end
class BoilerplateTextIncludeProcessor < Asciidoctor::Extensions::IncludeProcessor
def handles? target
target.end_with? '.txt'
end
def process document, reader, target, attributes
case target
when 'lorem-ipsum.txt'
content = ["Lorem ipsum dolor sit amet...\n"]
reader.push_include content, target, target, 1, attributes
else
nil
end
end
end
class ReplaceAuthorTreeProcessor < Asciidoctor::Extensions::TreeProcessor
def process document
document.attributes['firstname'] = 'Ghost'
document.attributes['author'] = 'Ghost Writer'
document
end
end
class ReplaceTreeTreeProcessor < Asciidoctor::Extensions::TreeProcessor
def process document
if document.doctitle == 'Original Document'
Asciidoctor.load %(== Replacement Document\nReplacement Author\n\ncontent)
else
document
end
end
end
class SelfSigningTreeProcessor < Asciidoctor::Extensions::TreeProcessor
def process document
document << (create_paragraph document, self.class.name, {})
nil
end
end
class StripAttributesPostprocessor < Asciidoctor::Extensions::Postprocessor
def process document, output
output.gsub(/<(\w+).*?>/m, "<\\1>")
end
end
class UppercaseBlock < Asciidoctor::Extensions::BlockProcessor; use_dsl
named :yell
on_context :paragraph
name_positional_attributes 'chars'
parse_content_as :simple
def process parent, reader, attributes
if (chars = attributes['chars'])
upcase_chars = chars.upcase
create_paragraph parent, reader.lines.map {|l| l.downcase.tr chars, upcase_chars }, attributes
else
create_paragraph parent, reader.lines.map(&:upcase), attributes
end
end
end
class SnippetMacro < Asciidoctor::Extensions::BlockMacroProcessor
def process parent, target, attributes
create_pass_block parent, %(<script src="http://example.com/#{target}.js?_mode=#{attributes['mode']}"></script>), {}, content_model: :raw
end
end
class TemperatureMacro < Asciidoctor::Extensions::InlineMacroProcessor; use_dsl
named :degrees
resolve_attributes '1:units', 'precision=1'
def process parent, target, attributes
units = attributes['units'] || (parent.document.attr 'temperature-unit', 'C')
precision = attributes['precision'].to_i
c = target.to_f
case units
when 'C'
%(#{c.round precision} °C)
when 'F'
%(#{(c * 1.8 + 32).round precision} °F)
else
raise ::ArgumentError, %(Unknown temperature units: #{units})
end
end
end
class MetaRobotsDocinfoProcessor < Asciidoctor::Extensions::DocinfoProcessor
def process document
'<meta name="robots" content="index,follow">'
end
end
class MetaAppDocinfoProcessor < Asciidoctor::Extensions::DocinfoProcessor; use_dsl
at_location :head
def process document
'<meta name="application-name" content="Asciidoctor App">'
end
end
class SampleExtensionGroup < Asciidoctor::Extensions::Group
def activate registry
registry.document.attributes['activate-method-called'] = ''
registry.preprocessor SamplePreprocessor
end
end
def create_cat_in_sink_block_macro
Asciidoctor::Extensions.create do
block_macro do
named :cat_in_sink
process do |parent, target, attrs|
image_attrs = {}
unless target.nil_or_empty?
image_attrs['target'] = %(cat-in-sink-day-#{target}.png)
end
if (title = attrs.delete 'title')
image_attrs['title'] = title
end
if (alt = attrs.delete 1)
image_attrs['alt'] = alt
end
create_image_block parent, image_attrs
end
end
end
end
def create_santa_list_block_macro
Asciidoctor::Extensions.create do
block_macro do
named :santa_list
process do |parent, target|
list = create_list parent, target
guillaume = (create_list_item list, 'Guillaume')
guillaume.add_role('friendly')
guillaume.id = 'santa-list-guillaume'
list << guillaume
robert = (create_list_item list, 'Robert')
robert.add_role('kind')
robert.add_role('contributor')
robert.add_role('java')
list << robert
pepijn = (create_list_item list, 'Pepijn')
pepijn.id = 'santa-list-pepijn'
list << pepijn
dan = (create_list_item list, 'Dan')
dan.add_role('naughty')
dan.id = 'santa-list-dan'
list << dan
sarah = (create_list_item list, 'Sarah')
list << sarah
list
end
end
end
end
context 'Extensions' do
context 'Register' do
test 'should not activate registry if no extension groups are registered' do
assert defined? Asciidoctor::Extensions
doc = empty_document
refute doc.extensions?, 'Extensions should not be enabled if not groups are registered'
end
test 'should register extension group class' do
begin
Asciidoctor::Extensions.register :sample, SampleExtensionGroup
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_equal SampleExtensionGroup, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should self register extension group class' do
begin
SampleExtensionGroup.register :sample
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_equal SampleExtensionGroup, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should register extension group from class name' do
begin
Asciidoctor::Extensions.register :sample, 'SampleExtensionGroup'
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_equal SampleExtensionGroup, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should register extension group from instance' do
begin
Asciidoctor::Extensions.register :sample, SampleExtensionGroup.new
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_kind_of SampleExtensionGroup, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should register extension block' do
begin
Asciidoctor::Extensions.register :sample do
end
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_kind_of Proc, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should coerce group name to symbol when registering' do
begin
Asciidoctor::Extensions.register 'sample', SampleExtensionGroup
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
assert_equal SampleExtensionGroup, Asciidoctor::Extensions.groups[:sample]
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should unregister extension group by symbol name' do
begin
Asciidoctor::Extensions.register :sample, SampleExtensionGroup
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
Asciidoctor::Extensions.unregister :sample
assert_equal 0, Asciidoctor::Extensions.groups.size
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should unregister extension group by string name' do
begin
Asciidoctor::Extensions.register :sample, SampleExtensionGroup
refute_nil Asciidoctor::Extensions.groups
assert_equal 1, Asciidoctor::Extensions.groups.size
Asciidoctor::Extensions.unregister 'sample'
assert_equal 0, Asciidoctor::Extensions.groups.size
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should unregister multiple extension groups by name' do
begin
Asciidoctor::Extensions.register :sample1, SampleExtensionGroup
Asciidoctor::Extensions.register :sample2, SampleExtensionGroup
refute_nil Asciidoctor::Extensions.groups
assert_equal 2, Asciidoctor::Extensions.groups.size
Asciidoctor::Extensions.unregister :sample1, :sample2
assert_equal 0, Asciidoctor::Extensions.groups.size
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should raise NameError if extension class cannot be resolved from string' do
begin
Asciidoctor::Extensions.register do
block 'foobar'
end
empty_document
flunk 'Expecting RuntimeError to be raised'
rescue NameError => e
assert_equal 'Could not resolve class for name: foobar', e.message
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should allow standalone registry to be created but not registered' do
registry = Asciidoctor::Extensions.create 'sample' do
block do
named :whisper
on_context :paragraph
parse_content_as :simple
def process parent, reader, attributes
create_paragraph parent, reader.lines.map(&:downcase), attributes
end
end
end
assert_instance_of Asciidoctor::Extensions::Registry, registry
refute_nil registry.groups
assert_equal 1, registry.groups.size
assert_equal 'sample', registry.groups.keys.first
assert_equal 0, Asciidoctor::Extensions.groups.size
end
end
context 'Activate' do
test 'should call activate on extension group class' do
begin
doc = Asciidoctor::Document.new
Asciidoctor::Extensions.register :sample, SampleExtensionGroup
registry = Asciidoctor::Extensions::Registry.new
registry.activate doc
assert doc.attr? 'activate-method-called'
assert registry.preprocessors?
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke extension block' do
begin
doc = Asciidoctor::Document.new
Asciidoctor::Extensions.register do
@document.attributes['block-called'] = ''
preprocessor SamplePreprocessor
end
registry = Asciidoctor::Extensions::Registry.new
registry.activate doc
assert doc.attr? 'block-called'
assert registry.preprocessors?
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should create registry in Document if extensions are loaded' do
begin
SampleExtensionGroup.register
doc = Asciidoctor::Document.new
assert doc.extensions?
assert_kind_of Asciidoctor::Extensions::Registry, doc.extensions
ensure
Asciidoctor::Extensions.unregister_all
end
end
end
context 'Instantiate' do
test 'should instantiate preprocessors' do
registry = Asciidoctor::Extensions::Registry.new
registry.preprocessor SamplePreprocessor
registry.activate Asciidoctor::Document.new
assert registry.preprocessors?
extensions = registry.preprocessors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
assert_kind_of SamplePreprocessor, extensions.first.instance
assert_kind_of Method, extensions.first.process_method
end
test 'should instantiate include processors' do
registry = Asciidoctor::Extensions::Registry.new
registry.include_processor SampleIncludeProcessor
registry.activate Asciidoctor::Document.new
assert registry.include_processors?
extensions = registry.include_processors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
assert_kind_of SampleIncludeProcessor, extensions.first.instance
assert_kind_of Method, extensions.first.process_method
end
test 'should instantiate docinfo processors' do
registry = Asciidoctor::Extensions::Registry.new
registry.docinfo_processor SampleDocinfoProcessor
registry.activate Asciidoctor::Document.new
assert registry.docinfo_processors?
assert registry.docinfo_processors?(:head)
extensions = registry.docinfo_processors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
assert_kind_of SampleDocinfoProcessor, extensions.first.instance
assert_kind_of Method, extensions.first.process_method
end
# NOTE intentionally using the legacy names
test 'should instantiate tree processors' do
registry = Asciidoctor::Extensions::Registry.new
registry.treeprocessor SampleTreeprocessor
registry.activate Asciidoctor::Document.new
assert registry.treeprocessors?
extensions = registry.treeprocessors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
assert_kind_of SampleTreeprocessor, extensions.first.instance
assert_kind_of Method, extensions.first.process_method
end
test 'should instantiate postprocessors' do
registry = Asciidoctor::Extensions::Registry.new
registry.postprocessor SamplePostprocessor
registry.activate Asciidoctor::Document.new
assert registry.postprocessors?
extensions = registry.postprocessors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
assert_kind_of SamplePostprocessor, extensions.first.instance
assert_kind_of Method, extensions.first.process_method
end
test 'should instantiate block processor' do
registry = Asciidoctor::Extensions::Registry.new
registry.block SampleBlock, :sample
registry.activate Asciidoctor::Document.new
assert registry.blocks?
assert registry.registered_for_block? :sample, :paragraph
extension = registry.find_block_extension :sample
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extension
assert_kind_of SampleBlock, extension.instance
assert_kind_of Method, extension.process_method
end
test 'should not match block processor for unsupported context' do
registry = Asciidoctor::Extensions::Registry.new
registry.block SampleBlock, :sample
registry.activate Asciidoctor::Document.new
refute registry.registered_for_block? :sample, :sidebar
end
test 'should instantiate block macro processor' do
registry = Asciidoctor::Extensions::Registry.new
registry.block_macro SampleBlockMacro, 'sample'
registry.activate Asciidoctor::Document.new
assert registry.block_macros?
assert registry.registered_for_block_macro? 'sample'
extension = registry.find_block_macro_extension 'sample'
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extension
assert_kind_of SampleBlockMacro, extension.instance
assert_kind_of Method, extension.process_method
end
test 'should instantiate inline macro processor' do
registry = Asciidoctor::Extensions::Registry.new
registry.inline_macro SampleInlineMacro, 'sample'
registry.activate Asciidoctor::Document.new
assert registry.inline_macros?
assert registry.registered_for_inline_macro? 'sample'
extension = registry.find_inline_macro_extension 'sample'
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extension
assert_kind_of SampleInlineMacro, extension.instance
assert_kind_of Method, extension.process_method
end
test 'should allow processors to be registered by a string name' do
registry = Asciidoctor::Extensions::Registry.new
registry.preprocessor 'SamplePreprocessor'
registry.activate Asciidoctor::Document.new
assert registry.preprocessors?
extensions = registry.preprocessors
assert_equal 1, extensions.size
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, extensions.first
end
end
context 'Integration' do
test 'can provide extension registry as an option' do
registry = Asciidoctor::Extensions.create do
tree_processor SampleTreeProcessor
end
doc = document_from_string %(= Document Title\n\ncontent), extension_registry: registry
refute_nil doc.extensions
assert_equal 1, doc.extensions.groups.size
assert doc.extensions.tree_processors?
assert_equal 1, doc.extensions.tree_processors.size
assert_equal 0, Asciidoctor::Extensions.groups.size
end
# NOTE I'm not convinced we want to continue to support this use case
test 'can provide extension registry created without any groups as option' do
registry = Asciidoctor::Extensions.create
registry.tree_processor SampleTreeProcessor
doc = document_from_string %(= Document Title\n\ncontent), extension_registry: registry
refute_nil doc.extensions
assert_equal 0, doc.extensions.groups.size
assert doc.extensions.tree_processors?
assert_equal 1, doc.extensions.tree_processors.size
assert_equal 0, Asciidoctor::Extensions.groups.size
end
test 'can provide extensions proc as option' do
doc = document_from_string %(= Document Title\n\ncontent), extensions: proc { tree_processor SampleTreeProcessor }
refute_nil doc.extensions
assert_equal 1, doc.extensions.groups.size
assert doc.extensions.tree_processors?
assert_equal 1, doc.extensions.tree_processors.size
assert_equal 0, Asciidoctor::Extensions.groups.size
end
test 'should invoke preprocessors before parsing document' do
input = <<~'EOS'
junk line
= Document Title
sample content
EOS
begin
Asciidoctor::Extensions.register do
preprocessor ScrubHeaderPreprocessor
end
doc = document_from_string input
assert doc.attr? 'skipped'
assert_equal 'junk line', (doc.attr 'skipped').strip
assert doc.has_header?
assert_equal 'Document Title', doc.doctitle
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke include processor to process include directive' do
input = <<~'EOS'
before
include::lorem-ipsum.txt[]
after
EOS
begin
Asciidoctor::Extensions.register do
include_processor BoilerplateTextIncludeProcessor
end
# a custom include processor is not affected by the safe mode
result = convert_string input, safe: :secure
assert_css '.paragraph > p', result, 3
assert_includes result, 'before'
assert_includes result, 'Lorem ipsum'
assert_includes result, 'after'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke include processor if it offers to handle include directive' do
input = <<~'EOS'
include::skip-me.adoc[]
line after skip
include::include-file.adoc[]
include::fixtures/grandchild-include.adoc[]
last line
EOS
registry = Asciidoctor::Extensions.create do
include_processor do
handles? do |target|
target == 'skip-me.adoc'
end
process do |doc, reader, target, attributes|
end
end
include_processor do
handles? do |target|
target == 'include-file.adoc'
end
process do |doc, reader, target, attributes|
# demonstrates that push_include normalizes newlines
content = [
%(found include target '#{target}' at line #{reader.cursor_at_prev_line.lineno}\r\n),
%(\r\n),
%(middle line\r\n)
]
reader.push_include content, target, target, 1, attributes
end
end
end
# safe mode only required for built-in include processor
document = empty_document base_dir: testdir, extension_registry: registry, safe: :safe
reader = Asciidoctor::PreprocessorReader.new document, input, nil, normalize: true
lines = []
lines << reader.read_line
assert_equal 'line after skip', lines.last
lines << reader.read_line
lines << reader.read_line
assert_equal 'found include target \'include-file.adoc\' at line 4', lines.last
assert_equal 'include-file.adoc: line 2', reader.line_info
while reader.has_more_lines?
lines << reader.read_line
end
source = lines * ::Asciidoctor::LF
assert_match(/^found include target 'include-file.adoc' at line 4$/, source)
assert_match(/^middle line$/, source)
assert_match(/^last line of grandchild$/, source)
assert_match(/^last line$/, source)
end
test 'should invoke tree processors after parsing document' do
input = <<~'EOS'
= Document Title
Doc Writer
content
EOS
begin
Asciidoctor::Extensions.register do
tree_processor ReplaceAuthorTreeProcessor
end
doc = document_from_string input
assert_equal 'Ghost Writer', doc.author
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should set source_location on document before invoking tree processors' do
begin
Asciidoctor::Extensions.register do
tree_processor do
process do |doc|
para = create_paragraph doc.blocks.last.parent, %(file: #{doc.file}, lineno: #{doc.lineno}), {}
doc << para
end
end
end
sample_doc = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_doc, sourcemap: true
assert_includes doc.convert, 'file: sample.adoc, lineno: 1'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should allow tree processor to replace tree' do
input = <<~'EOS'
= Original Document
Doc Writer
content
EOS
begin
Asciidoctor::Extensions.register do
tree_processor ReplaceTreeTreeProcessor
end
doc = document_from_string input
assert_equal 'Replacement Document', doc.doctitle
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should honor block title assigned in tree processor' do
input = <<~'EOS'
= Document Title
:!example-caption:
.Old block title
====
example block content
====
EOS
old_title = nil
begin
Asciidoctor::Extensions.register do
tree_processor do
process do |doc|
ex = (doc.find_by context: :example)[0]
old_title = ex.title
ex.title = 'New block title'
end
end
end
doc = document_from_string input
assert_equal 'Old block title', old_title
assert_equal 'New block title', (doc.find_by context: :example)[0].title
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should be able to register preferred tree processor' do
begin
Asciidoctor::Extensions.register do
tree_processor do
process do |doc|
doc << (create_paragraph doc, 'd', {})
nil
end
end
tree_processor do
prefer
process do |doc|
doc << (create_paragraph doc, 'c', {})
nil
end
end
prefer :tree_processor do
process do |doc|
doc << (create_paragraph doc, 'b', {})
nil
end
end
prefer (tree_processor do
process do |doc|
doc << (create_paragraph doc, 'a', {})
nil
end
end)
prefer :tree_processor, SelfSigningTreeProcessor
end
(doc = empty_document).convert
assert_equal %w(SelfSigningTreeProcessor a b c d), doc.blocks.map {|b| b.lines[0] }
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke postprocessors after converting document' do
input = <<~'EOS'
* one
* two
* three
EOS
begin
Asciidoctor::Extensions.register do
postprocessor StripAttributesPostprocessor
end
output = convert_string input
refute_match(/<div class="ulist">/, output)
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should yield to document processor block if block has non-zero arity' do
input = <<~'EOS'
hi!
EOS
begin
Asciidoctor::Extensions.register do
tree_processor do |processor|
processor.process do |doc|
doc << (create_paragraph doc, 'bye!', {})
end
end
end
output = convert_string_to_embedded input
assert_xpath '//p', output, 2
assert_xpath '//p[text()="hi!"]', output, 1
assert_xpath '//p[text()="bye!"]', output, 1
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke processor for custom block' do
input = <<~'EOS'
[yell]
Hi there!
[yell,chars=aeiou]
Hi there!
EOS
begin
Asciidoctor::Extensions.register do
block UppercaseBlock
end
output = convert_string_to_embedded input
assert_xpath '//p', output, 2
assert_xpath '(//p)[1][text()="HI THERE!"]', output, 1
assert_xpath '(//p)[2][text()="hI thErE!"]', output, 1
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke processor for custom block in an AsciiDoc table cell' do
input = <<~'EOS'
|===
a|
[yell]
Hi there!
|===
EOS
begin
Asciidoctor::Extensions.register do
block UppercaseBlock
end
output = convert_string_to_embedded input
assert_xpath '/table//p', output, 1
assert_xpath '/table//p[text()="HI THERE!"]', output, 1
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should yield to syntax processor block if block has non-zero arity' do
input = <<~'EOS'
[eval]
....
'yolo' * 5
....
EOS
begin
Asciidoctor::Extensions.register do
block :eval do |processor|
processor.on_context :literal
processor.process do |parent, reader, attrs|
create_paragraph parent, (eval reader.read_lines[0]), {}
end
end
end
output = convert_string_to_embedded input
assert_xpath '//p[text()="yoloyoloyoloyoloyolo"]', output, 1
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should pass cloaked context in attributes passed to process method of custom block' do
input = <<~'EOS'
[custom]
****
sidebar
****
EOS
cloaked_context = nil
begin
Asciidoctor::Extensions.register do
block :custom do
on_context :sidebar
process do |doc, reader, attrs|
cloaked_context = attrs['cloaked-context']
nil
end
end
end
convert_string_to_embedded input
assert_equal :sidebar, cloaked_context
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke processor for custom block macro' do
input = 'snippet::12345[mode=edit]'
begin
Asciidoctor::Extensions.register do
block_macro SnippetMacro, :snippet
end
output = convert_string_to_embedded input
assert_includes output, '<script src="http://example.com/12345.js?_mode=edit"></script>'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should substitute attributes in target of custom block macro' do
input = 'snippet::{gist-id}[mode=edit]'
begin
Asciidoctor::Extensions.register do
block_macro SnippetMacro, :snippet
end
output = convert_string_to_embedded input, attributes: { 'gist-id' => '12345' }
assert_includes output, '<script src="http://example.com/12345.js?_mode=edit"></script>'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should log debug message if custom block macro is unknown' do
input = 'unknown::[]'
using_memory_logger Logger::Severity::DEBUG do |logger|
convert_string_to_embedded input
assert_message logger, :DEBUG, '<stdin>: line 1: unknown name for block macro: unknown', Hash
end
end
test 'should drop block macro line if target references missing attribute and attribute-missing is drop-line' do
input = <<~'EOS'
[.rolename]
snippet::{gist-ns}12345[mode=edit]
following paragraph
EOS
begin
Asciidoctor::Extensions.register do
block_macro SnippetMacro, :snippet
end
doc, output = nil, nil
using_memory_logger do |logger|
doc = document_from_string input, attributes: { 'attribute-missing' => 'drop-line' }
assert_equal 1, doc.blocks.size
assert_equal :paragraph, doc.blocks[0].context
output = doc.convert
assert_message logger, :WARN, 'dropping line containing reference to missing attribute: gist-ns'
end
assert_css '.paragraph', output, 1
assert_css '.rolename', output, 0
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke processor for custom block macro in an AsciiDoc table cell' do
input = <<~'EOS'
|===
a|message::hi[]
|===
EOS
begin
Asciidoctor::Extensions.register do
block_macro :message do
process do |parent, target, attrs|
create_paragraph parent, target.upcase, {}
end
end
end
output = convert_string_to_embedded input
assert_xpath '/table//p[text()="HI"]', output, 1
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should match short form of block macro' do
input = 'custom-toc::[]'
resolved_target = nil
begin
Asciidoctor::Extensions.register do
block_macro do
named 'custom-toc'
process do |parent, target, attrs|
resolved_target = target
create_pass_block parent, '<!-- custom toc goes here -->', {}, content_model: :raw
end
end
end
output = convert_string_to_embedded input
assert_equal '<!-- custom toc goes here -->', output
assert_equal '', resolved_target
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should fail to convert if name of block macro is illegal' do
input = 'illegal name::target[]'
begin
Asciidoctor::Extensions.register do
block_macro do
named 'illegal name'
process do |parent, target, attrs|
nil
end
end
end
assert_raises ArgumentError do
convert_string_to_embedded input
end
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should be able to set header attribute in block macro processor' do
begin
Asciidoctor::Extensions.register do
block_macro do
named :attribute
resolves_attributes '1:value'
process do |parent, target, attrs|
parent.document.set_attr target, attrs['value']
nil
end
end
block_macro do
named :header_attribute
resolves_attributes '1:value'
process do |parent, target, attrs|
parent.document.set_header_attribute target, attrs['value']
nil
end
end
end
input = <<~'EOS'
attribute::yin[yang]
header_attribute::foo[bar]
EOS
doc = document_from_string input
assert_nil doc.attr 'yin'
assert_equal 'bar', (doc.attr 'foo')
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke processor for custom inline macro' do
begin
Asciidoctor::Extensions.register do
inline_macro TemperatureMacro, :deg
end
output = convert_string_to_embedded 'Room temperature is deg:25[C,precision=0].', attributes: { 'temperature-unit' => 'F' }
assert_includes output, 'Room temperature is 25 °C.'
output = convert_string_to_embedded 'Normal body temperature is deg:37[].', attributes: { 'temperature-unit' => 'F' }
assert_includes output, 'Normal body temperature is 98.6 °F.'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should resolve regexp for inline macro lazily' do
begin
Asciidoctor::Extensions.register do
inline_macro do
named :label
match_format :short
parse_content_as :text
process do |parent, _, attrs|
%(<label>#{attrs['text']}</label>)
end
end
end
output = convert_string_to_embedded 'label:[Checkbox]'
assert_includes output, '<label>Checkbox</label>'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should map unparsed attrlist to target when format is short' do
begin
Asciidoctor::Extensions.register do
inline_macro do
named :label
match_format :short
process do |parent, target|
%(<label>#{target}</label>)
end
end
end
output = convert_string_to_embedded 'label:[Checkbox]'
assert_includes output, '<label>Checkbox</label>'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should assign captures correctly for inline macros' do
begin
Asciidoctor::Extensions.register do
inline_macro do
named :short_attributes
match_format :short
resolve_attributes '1:name'
process do |parent, target, attrs|
%(target=#{target.inspect}, attributes=#{attrs.sort_by {|(k)| k.to_s }.to_h})
end
end
inline_macro do
named :short_text
match_format :short
resolve_attributes false
process do |parent, target, attrs|
%(target=#{target.inspect}, attributes=#{attrs.sort_by {|(k)| k.to_s }.to_h})
end
end
inline_macro do
named :'full-attributes'
resolve_attributes '1:name' => nil
process do |parent, target, attrs|
%(target=#{target.inspect}, attributes=#{attrs.sort_by {|(k)| k.to_s }.to_h})
end
end
inline_macro do
named :'full-text'
resolve_attributes false
process do |parent, target, attrs|
%(target=#{target.inspect}, attributes=#{attrs.sort_by {|(k)| k.to_s }.to_h})
end
end
inline_macro do
named :@short_match
match %r/@(\w+)/
resolve_attributes false
process do |parent, target, attrs|
%(target=#{target.inspect}, attributes=#{attrs.sort_by {|(k)| k.to_s }.to_h})
end
end
end
input = <<~'EOS'
[subs=normal]
++++
short_attributes:[]
short_attributes:[value,key=val]
short_text:[]
short_text:[[text\]]
full-attributes:target[]
full-attributes:target[value,key=val]
full-text:target[]
full-text:target[[text\]]
@target
++++
EOS
expected = <<~'EOS'.chop
target="", attributes={}
target="value,key=val", attributes={1=>"value", "key"=>"val", "name"=>"value"}
target="", attributes={"text"=>""}
target="[text]", attributes={"text"=>"[text]"}
target="target", attributes={}
target="target", attributes={1=>"value", "key"=>"val", "name"=>"value"}
target="target", attributes={"text"=>""}
target="target", attributes={"text"=>"[text]"}
target="target", attributes={}
EOS
output = convert_string_to_embedded input
assert_equal expected, output
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should invoke convert on return value if value is an inline node' do
begin
Asciidoctor::Extensions.register do
inline_macro do
named :mention
resolve_attributes false
process do |parent, target, attrs|
if (text = attrs['text']).empty?
text = %(@#{target})
end
create_anchor parent, text, type: :link, target: %(https://github.com/#{target})
end
end
end
output = convert_string_to_embedded 'mention:mojavelinux[Dan]'
assert_includes output, '<a href="https://github.com/mojavelinux">Dan</a>'
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should not carry over attributes if block processor returns nil' do
begin
Asciidoctor::Extensions.register do
block do
named 'skip-me'
on_context :paragraph
parse_content_as :raw
process do |parent, reader, attrs|
nil
end
end
end
input = <<~'EOS'
.unused title
[skip-me]
not shown
--
shown
--
EOS
doc = document_from_string input
assert_equal 1, doc.blocks.size
assert_nil doc.blocks[0].attributes['title']
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should not invoke process method or carry over attributes if block processor declares skip content model' do
begin
process_method_called = false
Asciidoctor::Extensions.register do
block do
named :ignore
on_context :paragraph
parse_content_as :skip
process do |parent, reader, attrs|
process_method_called = true
nil
end
end
end
input = <<~'EOS'
.unused title
[ignore]
not shown
--
shown
--
EOS
doc = document_from_string input
refute process_method_called
assert_equal 1, doc.blocks.size
assert_nil doc.blocks[0].attributes['title']
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should pass attributes by value to block processor' do
begin
Asciidoctor::Extensions.register do
block do
named :foo
on_context :paragraph
parse_content_as :raw
process do |parent, reader, attrs|
original_attrs = attrs.dup
attrs.delete('title')
create_paragraph parent, reader.read_lines, original_attrs.merge('id' => 'value')
end
end
end
input = <<~'EOS'
.title
[foo]
content
EOS
doc = document_from_string input
assert_equal 1, doc.blocks.size
assert_equal 'title', doc.blocks[0].attributes['title']
assert_equal 'value', doc.blocks[0].id
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'parse_content should not share attributes between parsed blocks' do
begin
Asciidoctor::Extensions.register do
block do
named :wrap
on_context :open
process do |parent, reader, attrs|
wrap = create_open_block parent, nil, attrs
parse_content wrap, reader.read_lines
end
end
end
input = <<~'EOS'
[wrap]
--
[foo=bar]
====
content
====
[baz=qux]
====
content
====
--
EOS
doc = document_from_string input
assert_equal 1, doc.blocks.size
wrap = doc.blocks[0]
assert_equal 2, wrap.blocks.size
assert_equal 2, wrap.blocks[0].attributes.size
assert_equal 2, wrap.blocks[1].attributes.size
assert_nil wrap.blocks[1].attributes['foo']
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'create_section should set up all section properties' do
begin
sect = nil
Asciidoctor::Extensions.register do
block_macro do
named :sect
process do |parent, target, attrs|
opts = (level = attrs.delete 'level') ? { level: level.to_i } : {}
attrs['id'] = false if attrs['id'] == 'false'
parent = parent.parent if parent.context == :preamble
sect = create_section parent, 'Section Title', attrs, opts
nil
end
end
end
input_tpl = <<~'EOS'
= Document Title
:doctype: book
:sectnums:
sect::[%s]
EOS
{
'' => ['chapter', 1, false, true, '_section_title'],
'level=0' => ['part', 0, false, false, '_section_title'],
'level=0,alt' => ['part', 0, false, true, '_section_title', { 'partnums' => '' }],
'level=0,style=appendix' => ['appendix', 1, true, true, '_section_title'],
'style=appendix' => ['appendix', 1, true, true, '_section_title'],
'style=glossary' => ['glossary', 1, true, false, '_section_title'],
'style=glossary,alt' => ['glossary', 1, true, :chapter, '_section_title', { 'sectnums' => 'all' }],
'style=abstract' => ['chapter', 1, false, true, '_section_title'],
'id=section-title' => ['chapter', 1, false, true, 'section-title'],
'id=false' => ['chapter', 1, false, true, nil]
}.each do |attrlist, (expect_sectname, expect_level, expect_special, expect_numbered, expect_id, extra_attrs)|
input = input_tpl % attrlist
document_from_string input, safe: :server, attributes: extra_attrs
assert_equal expect_sectname, sect.sectname
assert_equal expect_level, sect.level
assert_equal expect_special, sect.special
assert_equal expect_numbered, sect.numbered
if expect_id
assert_equal expect_id, sect.id
else
assert_nil sect.id
end
end
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should add docinfo to document' do
input = <<~'EOS'
= Document Title
sample content
EOS
begin
Asciidoctor::Extensions.register do
docinfo_processor MetaRobotsDocinfoProcessor
end
doc = document_from_string input
assert_equal Asciidoctor::SafeMode::SECURE, doc.safe
assert_equal '<meta name="robots" content="index,follow">', doc.docinfo
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should add multiple docinfo to document' do
input = <<~'EOS'
= Document Title
sample content
EOS
begin
Asciidoctor::Extensions.register do
docinfo_processor MetaAppDocinfoProcessor
docinfo_processor MetaRobotsDocinfoProcessor, position: :>>
docinfo_processor do
at_location :footer
process do |doc|
'<script><!-- analytics code --></script>'
end
end
end
doc = document_from_string input, safe: :server
assert_equal %(<meta name="robots" content="index,follow">\n<meta name="application-name" content="Asciidoctor App">), doc.docinfo
assert_equal '<script><!-- analytics code --></script>', doc.docinfo(:footer)
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should append docinfo to document' do
begin
Asciidoctor::Extensions.register do
docinfo_processor MetaRobotsDocinfoProcessor
end
sample_input_path = fixture_path('basic.adoc')
output = Asciidoctor.convert_file sample_input_path, to_file: false,
standalone: true,
safe: Asciidoctor::SafeMode::SERVER,
attributes: { 'docinfo' => '' }
refute_empty output
assert_css 'script[src="modernizr.js"]', output, 1
assert_css 'meta[name="robots"]', output, 1
assert_css 'meta[http-equiv="imagetoolbar"]', output, 0
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should return extension instance after registering' do
begin
exts = []
Asciidoctor::Extensions.register do
exts.push preprocessor SamplePreprocessor
exts.push include_processor SampleIncludeProcessor
exts.push tree_processor SampleTreeProcessor
exts.push docinfo_processor SampleDocinfoProcessor
exts.push postprocessor SamplePostprocessor
end
empty_document
exts.each do |ext|
assert_kind_of Asciidoctor::Extensions::ProcessorExtension, ext
end
ensure
Asciidoctor::Extensions.unregister_all
end
end
test 'should raise an exception if mandatory target attribute is not provided for image block' do
input = 'cat_in_sink::[]'
exception = assert_raises ArgumentError do
convert_string_to_embedded input, extension_registry: create_cat_in_sink_block_macro
end
assert_match(/target attribute is required/, exception.message)
end
test 'should assign alt attribute to image block if alt is not provided' do
input = 'cat_in_sink::25[]'
doc = document_from_string input, standalone: false, extension_registry: create_cat_in_sink_block_macro
image = doc.blocks[0]
assert_equal 'cat in sink day 25', (image.attr 'alt')
assert_equal 'cat in sink day 25', (image.attr 'default-alt')
output = doc.convert
assert_includes output, '<img src="cat-in-sink-day-25.png" alt="cat in sink day 25">'
end
test 'should create an image block if mandatory attributes are provided' do
input = 'cat_in_sink::30[cat in sink (yes)]'
doc = document_from_string input, standalone: false, extension_registry: create_cat_in_sink_block_macro
image = doc.blocks[0]
assert_equal 'cat in sink (yes)', (image.attr 'alt')
refute(image.attr? 'default-alt')
output = doc.convert
assert_includes output, '<img src="cat-in-sink-day-30.png" alt="cat in sink (yes)">'
end
test 'should not assign caption on image block if title is not set on custom block macro' do
input = 'cat_in_sink::30[]'
doc = document_from_string input, standalone: false, extension_registry: create_cat_in_sink_block_macro
output = doc.convert
assert_xpath '/*[@class="imageblock"]/*[@class="title"]', output, 0
end
test 'should assign caption on image block if title is set on custom block macro' do
input = <<~'EOS'
.Cat in Sink?
cat_in_sink::30[]
EOS
doc = document_from_string input, standalone: false, extension_registry: create_cat_in_sink_block_macro
output = doc.convert
assert_xpath '/*[@class="imageblock"]/*[@class="title"][text()="Figure 1. Cat in Sink?"]', output, 1
end
test 'should assign id and role on list items unordered' do
input = 'santa_list::ulist[]'
doc = document_from_string input, standalone: false, extension_registry: create_santa_list_block_macro
output = doc.convert
assert_xpath '/div[@class="ulist"]/ul/li[@class="friendly"][@id="santa-list-guillaume"]', output, 1
assert_xpath '/div[@class="ulist"]/ul/li[@class="kind contributor java"]', output, 1
assert_xpath '/div[@class="ulist"]/ul/li[@class="kind contributor java"][not(@id)]', output, 1
assert_xpath '/div[@class="ulist"]/ul/li[@id="santa-list-pepijn"][not(@class)]', output, 1
assert_xpath '/div[@class="ulist"]/ul/li[@id="santa-list-dan"][@class="naughty"]', output, 1
assert_xpath '/div[@class="ulist"]/ul/li[not(@id)][not(@class)]/p[text()="Sarah"]', output, 1
end
test 'should assign id and role on list items ordered' do
input = 'santa_list::olist[]'
doc = document_from_string input, standalone: false, extension_registry: create_santa_list_block_macro
output = doc.convert
assert_xpath '/div[@class="olist"]/ol/li[@class="friendly"][@id="santa-list-guillaume"]', output, 1
assert_xpath '/div[@class="olist"]/ol/li[@class="kind contributor java"]', output, 1
assert_xpath '/div[@class="olist"]/ol/li[@class="kind contributor java"][not(@id)]', output, 1
assert_xpath '/div[@class="olist"]/ol/li[@id="santa-list-pepijn"][not(@class)]', output, 1
assert_xpath '/div[@class="olist"]/ol/li[@id="santa-list-dan"][@class="naughty"]', output, 1
assert_xpath '/div[@class="olist"]/ol/li[not(@id)][not(@class)]/p[text()="Sarah"]', output, 1
end
end
end
|