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
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
|
# frozen_string_literal: true
require_relative 'test_helper'
context 'API' do
context 'Load' do
test 'should load input file' do
sample_input_path = fixture_path 'sample.adoc'
doc = File.open(sample_input_path, Asciidoctor::FILE_READ_MODE) {|file| Asciidoctor.load file, safe: Asciidoctor::SafeMode::SAFE }
assert_equal 'Document Title', doc.doctitle
assert_equal File.expand_path(sample_input_path), doc.attr('docfile')
assert_equal File.expand_path(File.dirname(sample_input_path)), doc.attr('docdir')
assert_equal '.adoc', doc.attr('docfilesuffix')
end
test 'should load input file from filename' do
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, safe: Asciidoctor::SafeMode::SAFE
assert_equal 'Document Title', doc.doctitle
assert_equal File.expand_path(sample_input_path), doc.attr('docfile')
assert_equal File.expand_path(File.dirname(sample_input_path)), doc.attr('docdir')
assert_equal '.adoc', doc.attr('docfilesuffix')
end
test 'should load input file from pathname' do
sample_input_path = Pathname fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, safe: :safe
assert_equal 'Document Title', doc.doctitle
assert_equal sample_input_path.expand_path.to_s, (doc.attr 'docfile')
assert_equal sample_input_path.expand_path.dirname.to_s, (doc.attr 'docdir')
assert_equal '.adoc', (doc.attr 'docfilesuffix')
end
test 'should load input file with alternate file extension' do
sample_input_path = fixture_path 'sample-alt-extension.asciidoc'
doc = Asciidoctor.load_file sample_input_path, safe: :safe
assert_equal 'Document Title', doc.doctitle
assert_equal File.expand_path(sample_input_path), doc.attr('docfile')
assert_equal File.expand_path(File.dirname(sample_input_path)), doc.attr('docdir')
assert_equal '.asciidoc', doc.attr('docfilesuffix')
end
test 'should coerce encoding of file to UTF-8' do
old_external = Encoding.default_external
old_internal = Encoding.default_internal
old_verbose = $VERBOSE
begin
$VERBOSE = nil # disable warnings since we have to modify constants
input_path = fixture_path 'encoding.adoc'
Encoding.default_external = Encoding.default_internal = Encoding::IBM437
output = Asciidoctor.convert_file input_path, to_file: false, safe: :safe
assert_equal Encoding::UTF_8, output.encoding
assert_include 'Romé', output
ensure
Encoding.default_external = old_external
Encoding.default_internal = old_internal
$VERBOSE = old_verbose
end
end
test 'should not load file with unrecognized encoding' do
begin
tmp_input = Tempfile.new %w(test- .adoc), encoding: Encoding::IBM437
# NOTE using a character whose code differs between UTF-8 and IBM437
tmp_input.write %(ƒ\n)
tmp_input.close
exception = assert_raises ArgumentError do
Asciidoctor.load_file tmp_input.path, safe: :safe
end
expected_message = 'Failed to load AsciiDoc document - source is either binary or contains invalid Unicode data'
assert_include expected_message, exception.message
ensure
tmp_input.close!
end
end
test 'should not load invalid file' do
sample_input_path = fixture_path 'hello-asciidoctor.pdf'
exception = assert_raises ArgumentError do
Asciidoctor.load_file sample_input_path, safe: Asciidoctor::SafeMode::SAFE
end
expected_message = 'Failed to load AsciiDoc document - source is either binary or contains invalid Unicode data'
assert_include expected_message, exception.message
# verify we have the correct backtrace (should be at least in the first 5 lines)
assert_match(/reader\.rb.*prepare_lines/, exception.backtrace[0..4].join(?\n))
end
# NOTE JRuby for Windows does not permit creating a file with non-Windows-1252 characters in the filename
test 'should convert filename that contains non-ASCII characters independent of default encodings', unless: (jruby? && windows?) do
old_external = Encoding.default_external
old_internal = Encoding.default_internal
old_verbose = $VERBOSE
begin
$VERBOSE = nil # disable warnings since we have to modify constants
tmp_input = Tempfile.new %w(test-UTF8- .adoc)
tmp_input.write %(UTF8\n)
tmp_input.close
Encoding.default_external = Encoding.default_internal = Encoding::IBM437
tmp_output = tmp_input.path.sub '.adoc', '.html'
Asciidoctor.convert_file tmp_input.path, safe: :safe, attributes: 'linkcss !copycss'
assert_path_exists tmp_output
output = File.binread tmp_output
refute_empty output
# force encoding to UTF-8 and we should see that the string is in fact UTF-8 encoded
output = String.new output, encoding: Encoding::UTF_8
assert_equal Encoding::UTF_8, output.encoding
assert_include 'UTF8', output
ensure
tmp_input.close!
FileUtils.rm_f tmp_output
Encoding.default_external = old_external
Encoding.default_internal = old_internal
$VERBOSE = old_verbose
end
end
test 'should load input IO' do
input = StringIO.new <<~'EOS'
Document Title
==============
preamble
EOS
doc = Asciidoctor.load input, safe: Asciidoctor::SafeMode::SAFE
assert_equal 'Document Title', doc.doctitle
refute doc.attr?('docfile')
assert_equal doc.base_dir, doc.attr('docdir')
end
test 'should load input string' do
input = <<~'EOS'
Document Title
==============
preamble
EOS
doc = Asciidoctor.load input, safe: Asciidoctor::SafeMode::SAFE
assert_equal 'Document Title', doc.doctitle
refute doc.attr?('docfile')
assert_equal doc.base_dir, doc.attr('docdir')
end
test 'should load input string array' do
input = <<~'EOS'
Document Title
==============
preamble
EOS
doc = Asciidoctor.load input.lines, safe: Asciidoctor::SafeMode::SAFE
assert_equal 'Document Title', doc.doctitle
refute doc.attr?('docfile')
assert_equal doc.base_dir, doc.attr('docdir')
end
test 'should load nil input' do
doc = Asciidoctor.load nil, safe: :safe
refute_nil doc
assert_empty doc.blocks
end
test 'should ignore :to_file option if value is truthy but not a string' do
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, safe: :safe, to_file: true
refute_nil doc
assert_equal 'Document Title', doc.doctitle
assert_equal '.html', (doc.attr 'outfilesuffix')
assert_equal doc.convert, (Asciidoctor.convert_file sample_input_path, safe: :safe, to_file: false)
end
test 'should set outfilesuffix attribute to file extension of value of :to_file option if value is a string' do
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, safe: :safe, to_file: 'out.htm'
refute_nil doc
assert_equal 'Document Title', doc.doctitle
assert_equal '.htm', (doc.attr 'outfilesuffix')
end
test 'should accept attributes as array' do
# NOTE there's a tab character before idseparator
doc = Asciidoctor.load 'text', attributes: %w(toc sectnums source-highlighter=coderay idprefix idseparator=-) # rubocop:disable Layout/SpaceInsideArrayPercentLiteral
assert_kind_of Hash, doc.attributes
assert doc.attr?('toc')
assert_equal '', doc.attr('toc')
assert doc.attr?('sectnums')
assert_equal '', doc.attr('sectnums')
assert doc.attr?('source-highlighter')
assert_equal 'coderay', doc.attr('source-highlighter')
assert doc.attr?('idprefix')
assert_equal '', doc.attr('idprefix')
assert doc.attr?('idseparator')
assert_equal '-', doc.attr('idseparator')
end
test 'should accept attributes as empty array' do
doc = Asciidoctor.load 'text', attributes: []
assert_kind_of Hash, doc.attributes
end
test 'should accept attributes as string' do
doc = Asciidoctor.load 'text', attributes: %(toc sectnums\nsource-highlighter=coderay\nidprefix\nidseparator=-)
assert_kind_of Hash, doc.attributes
assert doc.attr?('toc')
assert_equal '', doc.attr('toc')
assert doc.attr?('sectnums')
assert_equal '', doc.attr('sectnums')
assert doc.attr?('source-highlighter')
assert_equal 'coderay', doc.attr('source-highlighter')
assert doc.attr?('idprefix')
assert_equal '', doc.attr('idprefix')
assert doc.attr?('idseparator')
assert_equal '-', doc.attr('idseparator')
end
test 'should accept values containing spaces in attributes string' do
doc = Asciidoctor.load 'text', attributes: %(idprefix idseparator=- note-caption=Note\\ to\\\tself toc)
assert_kind_of Hash, doc.attributes
assert doc.attr?('idprefix')
assert_equal '', doc.attr('idprefix')
assert doc.attr?('idseparator')
assert_equal '-', doc.attr('idseparator')
assert doc.attr?('note-caption')
assert_equal "Note to\tself", doc.attr('note-caption')
end
test 'should accept attributes as empty string' do
doc = Asciidoctor.load 'text', attributes: ''
assert_kind_of Hash, doc.attributes
end
test 'should accept attributes as nil' do
doc = Asciidoctor.load 'text', attributes: nil
assert_kind_of Hash, doc.attributes
end
test 'should accept attributes if hash like' do
class Hashlike
def initialize
@table = { 'toc' => '' }
end
def keys
@table.keys
end
def [] key
@table[key]
end
end
doc = Asciidoctor.load 'text', attributes: Hashlike.new
assert_kind_of Hash, doc.attributes
assert doc.attributes.key?('toc')
end
test 'should not expand value of docdir attribute if specified via API' do
docdir = 'virtual/directory'
doc = document_from_string '', safe: :safe, attributes: { 'docdir' => docdir }
assert_equal docdir, (doc.attr 'docdir')
assert_equal docdir, doc.base_dir
end
test 'converts block to output format when convert is called' do
doc = Asciidoctor.load 'paragraph text'
expected = <<~'EOS'.chop
<div class="paragraph">
<p>paragraph text</p>
</div>
EOS
assert_equal 1, doc.blocks.length
assert_equal :paragraph, doc.blocks[0].context
assert_equal expected, doc.blocks[0].convert
end
test 'render method on node is aliased to convert method' do
input = <<~'EOS'
paragraph text
* list item
EOS
doc = Asciidoctor.load input
assert_equal 2, doc.blocks.length
([doc] + doc.blocks).each do |block|
assert_equal block.method(:convert), block.method(:render)
end
inline = Asciidoctor::Inline.new doc.blocks[0], :image, nil, type: 'image', target: 'tiger.png'
assert_equal inline.method(:convert), inline.method(:render)
end
test 'content method on Inline node is aliased to text method' do
input = 'paragraph'
doc = Asciidoctor.load input
inline = Asciidoctor::Inline.new doc.blocks[0], :quoted, 'yo', type: :strong
assert_equal inline.method(:content), inline.method(:text)
assert_equal 'yo', inline.content
end
test 'should output timestamps by default' do
doc = document_from_string 'text', backend: :html5, attributes: nil
result = doc.convert
assert doc.attr?('docdate')
refute doc.attr? 'reproducible'
assert_xpath '//div[@id="footer-text" and contains(string(.//text()), "Last updated")]', result, 1
end
test 'should not output timestamps if reproducible attribute is set in HTML 5' do
doc = document_from_string 'text', backend: :html5, attributes: { 'reproducible' => '' }
result = doc.convert
assert doc.attr?('docdate')
assert doc.attr?('reproducible')
assert_xpath '//div[@id="footer-text" and contains(string(.//text()), "Last updated")]', result, 0
end
test 'should not output meta generator tag in HTML 5 if reproducible attribute is set' do
doc = document_from_string 'text', backend: :html5, attributes: { 'reproducible' => '' }
result = doc.convert
assert doc.attr?('reproducible')
assert_xpath '//meta[@name="generator"]', result, 0
end
test 'should not output timestamps if reproducible attribute is set in DocBook' do
doc = document_from_string 'text', backend: :docbook, attributes: { 'reproducible' => '' }
result = doc.convert
assert doc.attr?('docdate')
assert doc.attr?('reproducible')
assert_xpath '/article/info/date', result, 0
end
test 'should not modify options argument' do
options = { safe: Asciidoctor::SafeMode::SAFE }
options.freeze
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, options
refute_same options, doc.options
end
test 'should not modify attributes Hash argument' do
attributes = {}
attributes.freeze
options = {
safe: Asciidoctor::SafeMode::SAFE,
attributes: attributes,
}
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.load_file sample_input_path, options
refute_same attributes, doc.options[:attributes]
refute_same attributes, doc.attributes
end
test 'should be able to restore header attributes after call to convert' do
input = <<~'EOS'
= Document Title
:foo: bar
content
:foo: baz
content
EOS
doc = Asciidoctor.load input
assert_equal 'bar', (doc.attr 'foo')
doc.convert
assert_equal 'baz', (doc.attr 'foo')
doc.restore_attributes
assert_equal 'bar', (doc.attr 'foo')
end
test 'should track file and line information with blocks if sourcemap option is set' do
doc = Asciidoctor.load_file fixture_path('sample.adoc'), sourcemap: true
refute_nil doc.source_location
assert_equal 'sample.adoc', doc.file
assert_equal 1, doc.lineno
preamble = doc.blocks[0]
refute_nil preamble.source_location
assert_equal 'sample.adoc', preamble.file
assert_equal 6, preamble.lineno
section_1 = doc.sections[0]
assert_equal 'Section A', section_1.title
refute_nil section_1.source_location
assert_equal 'sample.adoc', section_1.file
assert_equal 10, section_1.lineno
section_2 = doc.sections[1]
assert_equal 'Section B', section_2.title
refute_nil section_2.source_location
assert_equal 'sample.adoc', section_2.file
assert_equal 18, section_2.lineno
table_block = section_2.blocks[1]
assert_equal :table, table_block.context
refute_nil table_block.source_location
assert_equal 'sample.adoc', table_block.file
assert_equal 22, table_block.lineno
first_cell = table_block.rows.body[0][0]
refute_nil first_cell.source_location
assert_equal 'sample.adoc', first_cell.file
assert_equal 23, first_cell.lineno
second_cell = table_block.rows.body[0][1]
refute_nil second_cell.source_location
assert_equal 'sample.adoc', second_cell.file
assert_equal 23, second_cell.lineno
last_cell = table_block.rows.body[-1][-1]
refute_nil last_cell.source_location
assert_equal 'sample.adoc', last_cell.file
assert_equal 24, last_cell.lineno
last_block = section_2.blocks[-1]
assert_equal :ulist, last_block.context
refute_nil last_block.source_location
assert_equal 'sample.adoc', last_block.file
assert_equal 28, last_block.lineno
list_items = last_block.blocks
refute_nil list_items[0].source_location
assert_equal 'sample.adoc', list_items[0].file
assert_equal 28, list_items[0].lineno
refute_nil list_items[1].source_location
assert_equal 'sample.adoc', list_items[1].file
assert_equal 29, list_items[1].lineno
refute_nil list_items[2].source_location
assert_equal 'sample.adoc', list_items[2].file
assert_equal 30, list_items[2].lineno
doc = Asciidoctor.load_file fixture_path('main.adoc'), sourcemap: true, safe: :safe
section_1 = doc.sections[0]
assert_equal 'Chapter A', section_1.title
refute_nil section_1.source_location
assert_equal fixture_path('chapter-a.adoc'), section_1.file
assert_equal 1, section_1.lineno
end
test 'should track file and line information on list items if sourcemap option is set' do
doc = Asciidoctor.load_file fixture_path('lists.adoc'), sourcemap: true
first_section = doc.blocks[1]
unordered_basic_list = first_section.blocks[0]
assert_equal 11, unordered_basic_list.lineno
unordered_basic_list_items = unordered_basic_list.find_by context: :list_item
assert_equal 11, unordered_basic_list_items[0].lineno
assert_equal 12, unordered_basic_list_items[1].lineno
assert_equal 13, unordered_basic_list_items[2].lineno
unordered_max_nesting = first_section.blocks[1]
assert_equal 16, unordered_max_nesting.lineno
unordered_max_nesting_items = unordered_max_nesting.find_by context: :list_item
assert_equal 16, unordered_max_nesting_items[0].lineno
assert_equal 17, unordered_max_nesting_items[1].lineno
assert_equal 18, unordered_max_nesting_items[2].lineno
assert_equal 19, unordered_max_nesting_items[3].lineno
assert_equal 20, unordered_max_nesting_items[4].lineno
assert_equal 21, unordered_max_nesting_items[5].lineno
checklist = first_section.blocks[2]
assert_equal 24, checklist.lineno
checklist_list_items = checklist.find_by context: :list_item
assert_equal 24, checklist_list_items[0].lineno
assert_equal 25, checklist_list_items[1].lineno
assert_equal 26, checklist_list_items[2].lineno
assert_equal 27, checklist_list_items[3].lineno
ordered_basic = first_section.blocks[3]
assert_equal 30, ordered_basic.lineno
ordered_basic_list_items = ordered_basic.find_by context: :list_item
assert_equal 30, ordered_basic_list_items[0].lineno
assert_equal 31, ordered_basic_list_items[1].lineno
assert_equal 32, ordered_basic_list_items[2].lineno
ordered_nested = first_section.blocks[4]
assert_equal 35, ordered_nested.lineno
ordered_nested_list_items = ordered_nested.find_by context: :list_item
assert_equal 35, ordered_nested_list_items[0].lineno
assert_equal 36, ordered_nested_list_items[1].lineno
assert_equal 37, ordered_nested_list_items[2].lineno
assert_equal 38, ordered_nested_list_items[3].lineno
assert_equal 39, ordered_nested_list_items[4].lineno
ordered_max_nesting = first_section.blocks[5]
assert_equal 42, ordered_max_nesting.lineno
ordered_max_nesting_items = ordered_max_nesting.find_by context: :list_item
assert_equal 42, ordered_max_nesting_items[0].lineno
assert_equal 43, ordered_max_nesting_items[1].lineno
assert_equal 44, ordered_max_nesting_items[2].lineno
assert_equal 45, ordered_max_nesting_items[3].lineno
assert_equal 46, ordered_max_nesting_items[4].lineno
assert_equal 47, ordered_max_nesting_items[5].lineno
labeled_singleline = first_section.blocks[6]
assert_equal 50, labeled_singleline.lineno
labeled_singleline_items = labeled_singleline.find_by context: :list_item
assert_equal 50, labeled_singleline_items[0].lineno
assert_equal 50, labeled_singleline_items[1].lineno
assert_equal 51, labeled_singleline_items[2].lineno
assert_equal 51, labeled_singleline_items[3].lineno
labeled_multiline = first_section.blocks[7]
assert_equal 54, labeled_multiline.lineno
labeled_multiline_items = labeled_multiline.find_by context: :list_item
assert_equal 54, labeled_multiline_items[0].lineno
assert_equal 55, labeled_multiline_items[1].lineno
assert_equal 56, labeled_multiline_items[2].lineno
assert_equal 57, labeled_multiline_items[3].lineno
qanda = first_section.blocks[8]
assert_equal 61, qanda.lineno
qanda_items = qanda.find_by context: :list_item
assert_equal 61, qanda_items[0].lineno
assert_equal 62, qanda_items[1].lineno
assert_equal 63, qanda_items[2].lineno
assert_equal 63, qanda_items[3].lineno
mixed = first_section.blocks[9]
assert_equal 66, mixed.lineno
mixed_items = mixed.find_by(context: :list_item) {|block| block.text? }
assert_equal 66, mixed_items[0].lineno
assert_equal 67, mixed_items[1].lineno
assert_equal 68, mixed_items[2].lineno
assert_equal 69, mixed_items[3].lineno
assert_equal 70, mixed_items[4].lineno
assert_equal 71, mixed_items[5].lineno
assert_equal 72, mixed_items[6].lineno
assert_equal 73, mixed_items[7].lineno
assert_equal 74, mixed_items[8].lineno
assert_equal 75, mixed_items[9].lineno
assert_equal 77, mixed_items[10].lineno
assert_equal 78, mixed_items[11].lineno
assert_equal 79, mixed_items[12].lineno
assert_equal 80, mixed_items[13].lineno
assert_equal 81, mixed_items[14].lineno
assert_equal 82, mixed_items[15].lineno
assert_equal 83, mixed_items[16].lineno
unordered_complex_list = first_section.blocks[10]
assert_equal 86, unordered_complex_list.lineno
unordered_complex_items = unordered_complex_list.find_by context: :list_item
assert_equal 86, unordered_complex_items[0].lineno
assert_equal 87, unordered_complex_items[1].lineno
assert_equal 88, unordered_complex_items[2].lineno
assert_equal 92, unordered_complex_items[3].lineno
assert_equal 96, unordered_complex_items[4].lineno
end
# FIXME see #3966
test 'should assign incorrect lineno for single-line paragraph inside a conditional preprocessor directive' do
input = <<~'EOS'
:conditional-attribute:
before
ifdef::conditional-attribute[]
subject
endif::[]
after
EOS
doc = document_from_string input, sourcemap: true
# FIXME the second line number should be 6 instead of 7
assert_equal [3, 7, 9], (doc.find_by context: :paragraph).map(&:lineno)
end
test 'should assign correct lineno for multi-line paragraph inside a conditional preprocessor directive' do
input = <<~'EOS'
:conditional-attribute:
before
ifdef::conditional-attribute[]
subject
subject
endif::[]
after
EOS
doc = document_from_string input, sourcemap: true
assert_equal [3, 6, 10], (doc.find_by context: :paragraph).map(&:lineno)
end
# NOTE this does not work for a list continuation that attached to a grandparent
test 'should assign correct source location to blocks that follow a detached list continuation' do
input = <<~'EOS'
* parent
** child
+
paragraph attached to parent
****
sidebar outside list
****
EOS
doc = document_from_string input, sourcemap: true
assert_equal [5, 8], (doc.find_by context: :paragraph).map(&:lineno)
end
test 'should assign correct source location if section occurs on last line of input' do
input = <<~'EOS'
= Document Title
== Section A
content
== Section B
EOS
doc = document_from_string input, sourcemap: true
assert_equal [1, 3, 7], (doc.find_by context: :section).map(&:lineno)
end
test 'should allow sourcemap option on document to be modified before document is parsed' do
doc = Asciidoctor.load_file fixture_path('sample.adoc'), parse: false
doc.sourcemap = true
refute doc.parsed?
doc = doc.parse
assert doc.parsed?
section_1 = doc.sections[0]
assert_equal 'Section A', section_1.title
refute_nil section_1.source_location
assert_equal 'sample.adoc', section_1.file
assert_equal 10, section_1.lineno
end
test 'find_by should return Array of blocks anywhere in document tree that match criteria' do
input = <<~'EOS'
= Document Title
preamble
== Section A
paragraph
--
Exhibit A::
+
[#tiger.animal]
image::tiger.png[Tiger]
--
image::shoe.png[Shoe]
== Section B
paragraph
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :image
assert_equal 2, result.size
assert_equal :image, result[0].context
assert_equal 'tiger.png', result[0].attr('target')
assert_equal :image, result[1].context
assert_equal 'shoe.png', result[1].attr('target')
end
test 'find_by should return an empty Array if no matches are found' do
input = 'paragraph'
doc = Asciidoctor.load input
result = doc.find_by context: :section
refute_nil result
assert_equal 0, result.size
end
test 'should only return matched node when return value of block argument is :prune' do
input = <<~'EOS'
* foo
** yin
*** zen
** yang
* bar
* baz
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :list_item do |it|
it.text == 'yin' ? :prune : false
end
assert_equal 1, result.size
assert_equal 'yin', result[0].text
end
test 'find_by should discover blocks inside AsciiDoc table cells if traverse_documents selector option is true' do
input = <<~'EOS'
paragraph in parent document (before)
[%footer,cols=2*]
|===
a|
paragraph in nested document (body)
|normal table cell
a|
paragraph in nested document (foot)
|normal table cell
|===
paragraph in parent document (after)
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :paragraph
assert_equal 2, result.size
result = doc.find_by context: :paragraph, traverse_documents: true
assert_equal 4, result.size
end
test 'find_by should return inner document of AsciiDoc table cell if traverse_documents selector option is true' do
input = <<~'EOS'
|===
a|paragraph in nested document
|===
EOS
doc = Asciidoctor.load input
inner_doc = doc.blocks[0].rows.body[0][0].inner_document
result = doc.find_by traverse_documents: true
assert_include inner_doc, result
result = doc.find_by context: :inner_document, traverse_documents: true
assert_equal 1, result.size
assert_equal inner_doc, result[0]
end
test 'find_by should match table cells' do
input = <<~'EOS'
|===
|a |b |c
|1
one
a|NOTE: 2, as it goes.
l|
3
you
me
|===
EOS
doc = document_from_string input
table = doc.blocks[0]
first_head_cell = table.rows.head[0][0]
first_body_cell = table.rows.body[0][0]
result = doc.find_by
assert_include first_head_cell, result
assert_include first_body_cell, result
assert_equal 'a', first_head_cell.source
assert_equal ['a'], first_head_cell.lines
assert_equal %(1\none), first_body_cell.source
assert_equal %w(1 one), first_body_cell.lines
result = doc.find_by context: :table_cell, style: :asciidoc
assert_equal 1, result.size
assert_kind_of Asciidoctor::Table::Cell, result[0]
assert_equal :asciidoc, result[0].style
assert_equal 'NOTE: 2, as it goes.', result[0].source
end
test 'find_by should return Array of blocks that match style criteria' do
input = <<~'EOS'
[square]
* one
* two
* three
---
* apples
* bananas
* pears
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :ulist, style: 'square'
assert_equal 1, result.size
assert_equal :ulist, result[0].context
end
test 'find_by should return Array of blocks that match role criteria' do
input = <<~'EOS'
[#tiger.animal]
image::tiger.png[Tiger]
image::shoe.png[Shoe]
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :image, role: 'animal'
assert_equal 1, result.size
assert_equal :image, result[0].context
assert_equal 'tiger.png', result[0].attr('target')
end
test 'find_by should return the document title section if context selector is :section' do
input = <<~'EOS'
= Document Title
preamble
== Section One
content
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :section
refute_nil result
assert_equal 2, result.size
assert_equal :section, result[0].context
assert_equal 'Document Title', result[0].title
end
test 'find_by should only return results for which the block argument yields true' do
input = <<~'EOS'
== Section
content
=== Subsection
content
EOS
doc = Asciidoctor.load input
result = doc.find_by(context: :section) {|sect| sect.level == 1 }
refute_nil result
assert_equal 1, result.size
assert_equal :section, result[0].context
assert_equal 'Section', result[0].title
end
test 'find_by should reject node and its children if block returns :reject' do
input = <<~'EOS'
paragraph 1
====
paragraph 2
term::
+
paragraph 3
====
paragraph 4
EOS
doc = Asciidoctor.load input
result = doc.find_by do |candidate|
case candidate.context
when :example
:reject
when :paragraph
true
end
end
refute_nil result
assert_equal 2, result.size
assert_equal :paragraph, result[0].context
assert_equal :paragraph, result[1].context
end
test 'find_by should reject node matched by ID selector if block returns :reject' do
input = <<~'EOS'
[.rolename]
paragraph 1
[.rolename#idname]
paragraph 2
EOS
doc = Asciidoctor.load input
result = doc.find_by id: 'idname', role: 'rolename'
refute_nil result
assert_equal 1, result.size
assert_equal doc.blocks[1], result[0]
result = doc.find_by(id: 'idname', role: 'rolename') { :reject }
refute_nil result
assert_equal 0, result.size
end
test 'find_by should accept node matched by ID selector if block returns :prune' do
input = <<~'EOS'
[.rolename]
paragraph 1
[.rolename#idname]
====
paragraph 2
====
EOS
doc = Asciidoctor.load input
result = doc.find_by id: 'idname', role: 'rolename'
refute_nil result
assert_equal 1, result.size
assert_equal doc.blocks[1], result[0]
result = doc.find_by(id: 'idname', role: 'rolename') { :prune }
refute_nil result
assert_equal 1, result.size
assert_equal doc.blocks[1], result[0]
end
test 'find_by should accept node but reject its children if block returns :prune' do
input = <<~'EOS'
====
paragraph 2
term::
+
paragraph 3
====
EOS
doc = Asciidoctor.load input
result = doc.find_by do |candidate|
if candidate.context == :example
:prune
end
end
refute_nil result
assert_equal 1, result.size
assert_equal :example, result[0].context
end
test 'find_by should stop looking for blocks when StopIteration is raised' do
input = <<~'EOS'
paragraph 1
====
paragraph 2
****
paragraph 3
****
====
paragraph 4
* item
+
paragraph 5
EOS
doc = Asciidoctor.load input
stop_at_next = false
result = doc.find_by do |candidate|
raise StopIteration if stop_at_next
if candidate.context == :paragraph
candidate.parent.context == :sidebar ? (stop_at_next = true) : true
end
end
refute_nil result
assert_equal 3, result.size
assert_equal 'paragraph 1', result[0].content
assert_equal 'paragraph 2', result[1].content
assert_equal 'paragraph 3', result[2].content
end
test 'find_by should stop looking for blocks when filter block returns :stop directive' do
input = <<~'EOS'
paragraph 1
====
paragraph 2
****
paragraph 3
****
====
paragraph 4
* item
+
paragraph 5
EOS
doc = Asciidoctor.load input
stop_at_next = false
result = doc.find_by do |candidate|
next :stop if stop_at_next
if candidate.context == :paragraph
candidate.parent.context == :sidebar ? (stop_at_next = true) : true
end
end
refute_nil result
assert_equal 3, result.size
assert_equal 'paragraph 1', result[0].content
assert_equal 'paragraph 2', result[1].content
assert_equal 'paragraph 3', result[2].content
end
test 'find_by should only return one result when matching by id' do
input = <<~'EOS'
== Section
content
[#subsection]
=== Subsection
content
EOS
doc = Asciidoctor.load input
result = doc.find_by context: :section, id: 'subsection'
refute_nil result
assert_equal 1, result.size
assert_equal :section, result[0].context
assert_equal 'Subsection', result[0].title
end
test 'find_by should stop seeking once match is found' do
input = <<~'EOS'
== Section
content
[#subsection]
=== Subsection
[#last]
content
EOS
doc = Asciidoctor.load input
visited_last = false
result = doc.find_by id: 'subsection' do |candidate|
visited_last = true if candidate.id == 'last'
true
end
refute_nil result
assert_equal 1, result.size
refute visited_last
end
test 'find_by should return an empty Array if the id criteria matches but the block argument yields false' do
input = <<~'EOS'
== Section
content
[#subsection]
=== Subsection
content
EOS
doc = Asciidoctor.load input
result = doc.find_by(context: :section, id: 'subsection') { false }
refute_nil result
assert_equal 0, result.size
end
test 'find_by should not crash if dlist entry does not have description' do
input = 'term without description::'
doc = Asciidoctor.load input
result = doc.find_by
refute_nil result
assert_equal 3, result.size
assert_kind_of Asciidoctor::Document, result[0]
assert_kind_of Asciidoctor::List, result[1]
assert_kind_of Asciidoctor::ListItem, result[2]
end
test 'dlist item should always have two entries for terms and desc' do
[
'term w/o desc::',
%(term::\nalias::),
%(primary:: 1\nsecondary:: 2),
].each do |input|
dlist = (Asciidoctor.load input).blocks[0]
dlist.items.each do |item|
assert_equal 2, item.size
assert_kind_of Array, item[0]
assert_kind_of Asciidoctor::ListItem, item[1] if item[1]
end
end
end
test 'timings are recorded for each step when load and convert are called separately' do
sample_input_path = fixture_path 'asciidoc_index.txt'
(Asciidoctor.load_file sample_input_path, timings: (timings = Asciidoctor::Timings.new)).convert
refute_equal '0.00000', (sprintf '%05.5f', timings.read_parse)
refute_equal '0.00000', (sprintf '%05.5f', timings.convert)
refute_equal timings.read_parse, timings.total
end
test 'can disable syntax highlighter by setting value to nil in :syntax_highlighters option' do
doc = Asciidoctor.load '', safe: :safe, syntax_highlighters: { 'coderay' => nil }, attributes: { 'source-highlighter' => 'coderay' }
assert_nil doc.syntax_highlighter
end
test 'can substitute a custom syntax highlighter factory instance using the :syntax_highlighter_factory option' do
input = <<~'EOS'
[source,ruby]
----
puts 'Hello, World!'
----
EOS
# NOTE this tests both the lazy loading and the custom factory
syntax_hl_factory = Asciidoctor::SyntaxHighlighter::CustomFactory.new 'github' => (Asciidoctor::SyntaxHighlighter.for 'html-pipeline')
doc = Asciidoctor.load input, safe: :safe, syntax_highlighter_factory: syntax_hl_factory, attributes: { 'source-highlighter' => 'github' }
refute_nil doc.syntax_highlighter
assert_kind_of Asciidoctor::SyntaxHighlighter::HtmlPipelineAdapter, doc.syntax_highlighter
assert_include '<pre lang="ruby"><code>', doc.convert
end
test 'can substitute an extended syntax highlighter factory implementation using the :syntax_highlighters option' do
input = <<~'EOS'
[source,ruby]
----
puts 'Hello, World!'
----
EOS
syntax_hl_factory_class = Class.new do
include Asciidoctor::SyntaxHighlighter::DefaultFactory
def for name
super 'highlight.js'
end
end
doc = Asciidoctor.load input, safe: :safe, syntax_highlighter_factory: syntax_hl_factory_class.new, attributes: { 'source-highlighter' => 'coderay' }
refute_nil doc.syntax_highlighter
output = doc.convert
refute_include 'CodeRay', output
assert_include 'hljs', output
end
end
context 'Convert' do
test 'render_file is aliased to convert_file' do
assert_equal Asciidoctor.method(:convert_file), Asciidoctor.method(:render_file)
end
test 'render is aliased to convert' do
assert_equal Asciidoctor.method(:convert), Asciidoctor.method(:render)
end
test 'should convert source document to embedded document when header_footer is false' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'sample.html'
[{ header_footer: false }, { header_footer: false, to_file: sample_output_path }].each do |opts|
begin
Asciidoctor.convert_file sample_input_path, opts
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_xpath '/html', output, 0
assert_css '#preamble', output, 1
ensure
FileUtils.rm sample_output_path
end
end
end
test 'should convert source document to standalone document string when to_file is false and standalone is true' do
sample_input_path = fixture_path 'sample.adoc'
output = Asciidoctor.convert_file sample_input_path, standalone: true, to_file: false
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
end
test 'should convert source document to standalone document string when to_file is false and header_footer is true' do
sample_input_path = fixture_path 'sample.adoc'
output = Asciidoctor.convert_file sample_input_path, header_footer: true, to_file: false
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
end
test 'lines in output should be separated by line feed (universal newline)' do
sample_input_path = fixture_path 'sample.adoc'
output = Asciidoctor.convert_file sample_input_path, standalone: true, to_file: false
refute_empty output
refute_includes output, ?\r
lines = output.split ?\n
assert_equal lines.map(&:length), lines.map(&:rstrip).map(&:length)
end
test 'should accept attributes as array' do
sample_input_path = fixture_path 'sample.adoc'
output = Asciidoctor.convert_file sample_input_path, attributes: %w(sectnums idprefix idseparator=-), to_file: false
assert_css '#section-a', output, 1
end
test 'should accept attributes as string' do
sample_input_path = fixture_path 'sample.adoc'
output = Asciidoctor.convert_file sample_input_path, attributes: 'sectnums idprefix idseparator=-', to_file: false
assert_css '#section-a', output, 1
end
test 'should link to default stylesheet by default when safe mode is SECURE or greater' do
sample_input_path = fixture_path 'basic.adoc'
output = Asciidoctor.convert_file sample_input_path, standalone: true, to_file: false
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 1
assert_css 'html:root > head > link[rel="stylesheet"][href="./asciidoctor.css"]', output, 1
end
test 'should embed default stylesheet by default if SafeMode is less than SECURE' do
input = <<~'EOS'
= Document Title
text
EOS
output = Asciidoctor.convert input, safe: Asciidoctor::SafeMode::SERVER, standalone: true
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 1
assert_css 'html:root > head > link[rel="stylesheet"][href="./asciidoctor.css"]', output, 0
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
end
test 'should embed remote stylesheet by default if SafeMode is less than SECURE and allow-uri-read is set' do
input = <<~'EOS'
= Document Title
text
EOS
output = using_test_webserver do
Asciidoctor.convert input, safe: Asciidoctor::SafeMode::SERVER, standalone: true, attributes: { 'allow-uri-read' => '', 'stylesheet' => %(http://#{resolve_localhost}:9876/fixtures/custom.css) }
end
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
assert_include 'color: green', styles
end
test 'should not allow linkcss be unset from document if SafeMode is SECURE or greater' do
input = <<~'EOS'
= Document Title
:linkcss!:
text
EOS
output = Asciidoctor.convert input, standalone: true
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 1
assert_css 'html:root > head > link[rel="stylesheet"][href="./asciidoctor.css"]', output, 1
end
test 'should embed default stylesheet if linkcss is unset from API and SafeMode is SECURE or greater' do
input = <<~'EOS'
= Document Title
text
EOS
[{ 'linkcss!' => '' }, { 'linkcss' => nil }, { 'linkcss' => false }].each do |attrs|
output = Asciidoctor.convert input, standalone: true, attributes: attrs
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 1
assert_css 'html:root > head > link[rel="stylesheet"][href="./asciidoctor.css"]', output, 0
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
end
end
test 'should embed default stylesheet if safe mode is less than SECURE and linkcss is unset from API' do
sample_input_path = fixture_path 'basic.adoc'
output = Asciidoctor.convert_file sample_input_path,
standalone: true, to_file: false, safe: Asciidoctor::SafeMode::SAFE, attributes: { 'linkcss!' => '' }
assert_css 'html:root > head > style', output, 1
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
end
test 'should not link to stylesheet if stylesheet is unset' do
input = <<~'EOS'
= Document Title
text
EOS
output = Asciidoctor.convert input, standalone: true, attributes: { 'stylesheet!' => '' }
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 0
assert_css 'html:root > head > link[rel="stylesheet"]', output, 0
end
test 'should link to custom stylesheet if specified in stylesheet attribute' do
input = <<~'EOS'
= Document Title
text
EOS
output = Asciidoctor.convert input, standalone: true, attributes: { 'stylesheet' => './custom.css' }
assert_css 'html:root > head > link[rel="stylesheet"][href^="https://fonts.googleapis.com"]', output, 0
assert_css 'html:root > head > link[rel="stylesheet"][href="./custom.css"]', output, 1
output = Asciidoctor.convert input, standalone: true, attributes: { 'stylesheet' => 'file:///home/username/custom.css' }
assert_css 'html:root > head > link[rel="stylesheet"][href="file:///home/username/custom.css"]', output, 1
end
test 'should resolve custom stylesheet relative to stylesdir' do
input = <<~'EOS'
= Document Title
text
EOS
output = Asciidoctor.convert input, standalone: true, attributes: { 'stylesheet' => 'custom.css', 'stylesdir' => './stylesheets' }
assert_css 'html:root > head > link[rel="stylesheet"][href="./stylesheets/custom.css"]', output, 1
end
test 'should resolve custom stylesheet to embed relative to stylesdir' do
sample_input_path = fixture_path 'basic.adoc'
output = Asciidoctor.convert_file sample_input_path,
standalone: true, safe: Asciidoctor::SafeMode::SAFE, to_file: false, attributes: { 'stylesheet' => 'custom.css', 'stylesdir' => './stylesheets', 'linkcss!' => '' }
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
end
test 'should embed custom remote stylesheet if SafeMode is less than SECURE and allow-uri-read is set' do
input = <<~'EOS'
= Document Title
text
EOS
output = using_test_webserver do
Asciidoctor.convert input, safe: Asciidoctor::SafeMode::SERVER, standalone: true, attributes: { 'allow-uri-read' => '', 'stylesheet' => %(http://#{resolve_localhost}:9876/fixtures/custom.css) }
end
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
assert_include 'color: green', styles
end
test 'should embed custom stylesheet read from classloader URI', if: jruby? do
require fixture_path 'assets.jar'
input = <<~'EOS'
= Document Title
text
EOS
output = Asciidoctor.convert input, safe: :unsafe, standalone: true, attributes: { 'stylesdir' => 'uri:classloader:/styles-in-jar', 'stylesheet' => 'custom.css' }
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
assert_include 'color: green', styles
end
test 'should embed custom stylesheet in remote stylesdir if SafeMode is less than SECURE and allow-uri-read is set' do
input = <<~'EOS'
= Document Title
text
EOS
output = using_test_webserver do
Asciidoctor.convert input, safe: Asciidoctor::SafeMode::SERVER, standalone: true, attributes: { 'allow-uri-read' => '', 'stylesdir' => %(http://#{resolve_localhost}:9876/fixtures), 'stylesheet' => 'custom.css' }
end
stylenode = xmlnodes_at_css 'html:root > head > style', output, 1
styles = stylenode.content
refute_nil styles
refute_empty styles.strip
assert_include 'color: green', styles
end
test 'should copy custom stylesheet in folder to same folder in destination dir if copycss is set' do
begin
output_dir = fixture_path 'output'
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = File.join output_dir, 'sample.html'
custom_stylesheet_output_path = File.join output_dir, 'stylesheets', 'custom.css'
Asciidoctor.convert_file sample_input_path,
safe: :safe, to_dir: output_dir, mkdirs: true, attributes: { 'stylesheet' => 'stylesheets/custom.css', 'linkcss' => '', 'copycss' => '' }
assert_path_exists sample_output_path
assert_path_exists custom_stylesheet_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
assert_xpath '/html/head/link[@rel="stylesheet"][@href="./stylesheets/custom.css"]', output, 1
assert_xpath 'style', output, 0
ensure
FileUtils.rm_r output_dir, force: true, secure: true
end
end
test 'should copy custom stylesheet to destination dir if copycss is true' do
begin
output_dir = fixture_path 'output'
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = File.join output_dir, 'sample.html'
custom_stylesheet_output_path = File.join output_dir, 'custom.css'
Asciidoctor.convert_file sample_input_path,
safe: :safe, to_dir: output_dir, mkdirs: true, attributes: { 'stylesheet' => 'custom.css', 'linkcss' => true, 'copycss' => true }
assert_path_exists sample_output_path
assert_path_exists custom_stylesheet_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
assert_xpath '/html/head/link[@rel="stylesheet"][@href="./custom.css"]', output, 1
assert_xpath 'style', output, 0
ensure
FileUtils.rm_r output_dir, force: true, secure: true
end
end
test 'should copy custom stylesheet to destination dir if copycss is a path string' do
begin
output_dir = fixture_path 'output'
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = File.join output_dir, 'sample.html'
custom_stylesheet_output_path = File.join output_dir, 'styles.css'
Asciidoctor.convert_file sample_input_path,
safe: :safe, to_dir: output_dir, mkdirs: true, attributes: { 'stylesheet' => 'styles.css', 'linkcss' => true, 'copycss' => 'custom.css' }
assert_path_exists sample_output_path
assert_path_exists custom_stylesheet_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
assert_xpath '/html/head/link[@rel="stylesheet"][@href="./styles.css"]', output, 1
assert_xpath 'style', output, 0
ensure
FileUtils.rm_r output_dir, force: true, secure: true
end
end
test 'should copy custom stylesheet to destination dir if copycss is a Pathname object' do
begin
output_dir = fixture_path 'output'
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = File.join output_dir, 'sample.html'
custom_stylesheet_src_path = Pathname.new fixture_path 'custom.css'
custom_stylesheet_output_path = File.join output_dir, 'styles.css'
Asciidoctor.convert_file sample_input_path,
safe: :safe, to_dir: output_dir, mkdirs: true, attributes: { 'stylesheet' => 'styles.css', 'linkcss' => true, 'copycss' => custom_stylesheet_src_path }
assert_path_exists sample_output_path
assert_path_exists custom_stylesheet_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
assert_xpath '/html/head/link[@rel="stylesheet"][@href="./styles.css"]', output, 1
assert_xpath 'style', output, 0
ensure
FileUtils.rm_r output_dir, force: true, secure: true
end
end
test 'should copy custom stylesheet to destination dir if copycss is a classloader URI', if: jruby? do
require fixture_path 'assets.jar'
begin
output_dir = fixture_path 'output'
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = File.join output_dir, 'sample.html'
custom_stylesheet_src_path = 'uri:classloader:/styles-in-jar/custom.css'
custom_stylesheet_output_path = File.join output_dir, 'styles.css'
Asciidoctor.convert_file sample_input_path,
safe: :unsafe, to_dir: output_dir, mkdirs: true, attributes: { 'stylesheet' => 'styles.css', 'linkcss' => true, 'copycss' => custom_stylesheet_src_path }
assert_path_exists sample_output_path
assert_path_exists custom_stylesheet_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
assert_xpath '/html/head/link[@rel="stylesheet"][@href="./styles.css"]', output, 1
assert_xpath 'style', output, 0
ensure
FileUtils.rm_r output_dir, force: true, secure: true
end
end
test 'should convert source file and write result to adjacent file by default' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'sample.html'
begin
Asciidoctor.convert_file sample_input_path
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
ensure
FileUtils.rm sample_output_path
end
end
test 'should convert source file specified by pathname and write result to adjacent file by default' do
sample_input_path = Pathname fixture_path 'sample.adoc'
sample_output_path = Pathname fixture_path 'sample.html'
begin
doc = Asciidoctor.convert_file sample_input_path, safe: :safe
assert_equal sample_output_path.expand_path.to_s, (doc.attr 'outfile')
assert sample_output_path.file?
output = sample_output_path.read mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
ensure
sample_output_path.delete
end
end
test 'should convert source file and write to specified file' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'result.html'
begin
Asciidoctor.convert_file sample_input_path, to_file: sample_output_path
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
ensure
FileUtils.rm sample_output_path
end
end
test 'should convert source file and write to specified file in base_dir' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'result.html'
fixture_dir = fixture_path ''
begin
Asciidoctor.convert_file sample_input_path, to_file: 'result.html', base_dir: fixture_dir
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_xpath '/html', output, 1
assert_xpath '/html/head', output, 1
assert_xpath '/html/body', output, 1
assert_xpath '/html/head/title[text() = "Document Title"]', output, 1
assert_xpath '/html/body/*[@id="header"]/h1[text() = "Document Title"]', output, 1
ensure
FileUtils.rm sample_output_path, force: true
end
end
test 'should write file in bin mode and thus not convert line feeds to system-dependent newline' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'sample.html'
begin
Asciidoctor.convert_file sample_input_path
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_includes output, ?\n
refute_includes output, ?\r
assert_includes output, %(<\/body>\n<\/html>)
refute output.end_with? ?\n
ensure
FileUtils.rm sample_output_path
end
end
test 'should resolve :to_dir option correctly when both :to_dir and :to_file options are set to an absolute path' do
begin
sample_input_path = fixture_path 'sample.adoc'
sample_output_file = Tempfile.new %w(out- .html)
sample_output_path = sample_output_file.path
sample_output_dir = File.dirname sample_output_path
sample_output_file.close
doc = Asciidoctor.convert_file sample_input_path, to_file: sample_output_path, to_dir: sample_output_dir, safe: :unsafe
assert_path_exists sample_output_path
assert_equal sample_output_path, doc.options[:to_file]
assert_equal sample_output_dir, doc.options[:to_dir]
ensure
sample_output_file.close!
end
end
test 'in_place option is ignored when to_file is specified' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'result.html'
begin
Asciidoctor.convert_file sample_input_path, to_file: sample_output_path, in_place: true
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path if File.exist? sample_output_path
end
end
test 'in_place option is ignored when to_dir is specified' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'sample.html'
begin
Asciidoctor.convert_file sample_input_path, to_dir: File.dirname(sample_output_path), in_place: true
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path if File.exist? sample_output_path
end
end
test 'should set outfilesuffix to match file extension of target file' do
sample_input = '{outfilesuffix}'
sample_output_path = fixture_path 'result.htm'
begin
Asciidoctor.convert sample_input, to_file: sample_output_path
assert_path_exists sample_output_path
output = File.read sample_output_path, mode: Asciidoctor::FILE_READ_MODE
refute_empty output
assert_include '<p>.htm</p>', output
ensure
FileUtils.rm sample_output_path
end
end
test 'should respect outfilesuffix soft set from API' do
sample_input_path = fixture_path 'sample.adoc'
sample_output_path = fixture_path 'sample.htm'
begin
Asciidoctor.convert_file sample_input_path, to_dir: (File.dirname sample_input_path), attributes: { 'outfilesuffix' => '.htm@' }
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path
end
end
test 'output should be relative to to_dir option' do
sample_input_path = fixture_path 'sample.adoc'
output_dir = File.join File.dirname(sample_input_path), 'test_output'
Dir.mkdir output_dir unless File.exist? output_dir
sample_output_path = File.join output_dir, 'sample.html'
begin
Asciidoctor.convert_file sample_input_path, to_dir: output_dir
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path if File.exist? sample_output_path
FileUtils.rmdir output_dir
end
end
test 'missing directories should be created if mkdirs is enabled' do
sample_input_path = fixture_path 'sample.adoc'
output_dir = File.join File.join(File.dirname(sample_input_path), 'test_output'), 'subdir'
sample_output_path = File.join output_dir, 'sample.html'
begin
Asciidoctor.convert_file sample_input_path, to_dir: output_dir, mkdirs: true
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path if File.exist? sample_output_path
FileUtils.rmdir output_dir
FileUtils.rmdir File.dirname(output_dir)
end
end
# TODO need similar test for when to_dir is specified
test 'should raise exception if an attempt is made to overwrite input file' do
sample_input_path = fixture_path 'sample.adoc'
assert_raises IOError do
Asciidoctor.convert_file sample_input_path, attributes: { 'outfilesuffix' => '.adoc' }
end
end
test 'to_file should be relative to to_dir when both given' do
sample_input_path = fixture_path 'sample.adoc'
base_dir = File.dirname sample_input_path
sample_rel_output_path = File.join 'test_output', 'result.html'
output_dir = File.dirname File.join(base_dir, sample_rel_output_path)
Dir.mkdir output_dir unless File.exist? output_dir
sample_output_path = File.join base_dir, sample_rel_output_path
begin
Asciidoctor.convert_file sample_input_path, to_dir: base_dir, to_file: sample_rel_output_path
assert_path_exists sample_output_path
ensure
FileUtils.rm sample_output_path if File.exist? sample_output_path
FileUtils.rmdir output_dir
end
end
test 'should not modify options argument' do
output = StringIO.new
options = {
safe: Asciidoctor::SafeMode::SAFE,
to_file: output,
}
options.freeze
sample_input_path = fixture_path 'sample.adoc'
doc = Asciidoctor.convert_file sample_input_path, options
refute_same options, doc.options
end
test 'should set to_dir option to parent directory of specified output file' do
sample_input_path = fixture_path 'basic.adoc'
sample_output_path = fixture_path 'basic.html'
begin
doc = Asciidoctor.convert_file sample_input_path, to_file: sample_output_path
assert_equal File.dirname(sample_output_path), doc.options[:to_dir]
ensure
FileUtils.rm sample_output_path
end
end
test 'should set to_dir option to parent directory of specified output directory and file' do
sample_input_path = fixture_path 'basic.adoc'
sample_output_path = fixture_path 'basic.html'
fixture_base_path = File.dirname sample_output_path
fixture_parent_path = File.dirname fixture_base_path
sample_output_relpath = File.join 'fixtures', 'basic.html'
begin
doc = Asciidoctor.convert_file sample_input_path, to_dir: fixture_parent_path, to_file: sample_output_relpath
assert_equal fixture_base_path, doc.options[:to_dir]
ensure
FileUtils.rm sample_output_path
end
end
test 'timings are recorded for each step' do
sample_input_path = fixture_path 'asciidoc_index.txt'
Asciidoctor.convert_file sample_input_path, timings: (timings = Asciidoctor::Timings.new), to_file: false
refute_equal '0.00000', (sprintf '%05.5f', timings.read_parse)
refute_equal '0.00000', (sprintf '%05.5f', timings.convert)
refute_equal timings.read_parse, timings.total
end
test 'can override syntax highlighter using syntax_highlighters option' do
syntax_hl = Class.new Asciidoctor::SyntaxHighlighter::Base do
def highlight?
true
end
def highlight node, source, lang, opts
'highlighted'
end
end
input = <<~'EOS'
[source,ruby]
----
puts 'Hello, World!'
----
EOS
output = Asciidoctor.convert input, safe: :safe, syntax_highlighters: { 'coderay' => syntax_hl }, attributes: { 'source-highlighter' => 'coderay' }
assert_css 'pre.highlight > code[data-lang="ruby"]', output, 1
assert_xpath '//pre[@class="coderay highlight"]/code[text()="highlighted"]', output, 1
end
end
context 'AST' do
test 'with no author' do
input = <<~'EOS'
= Getting Real: The Smarter, Faster, Easier Way to Build a Successful Web Application
Getting Real details the business, design, programming, and marketing principles of 37signals.
EOS
doc = document_from_string input
assert_equal 0, doc.authors.size
end
test 'with one author' do
input = <<~'EOS'
= Getting Real: The Smarter, Faster, Easier Way to Build a Successful Web Application
David Heinemeier Hansson <david@37signals.com>
Getting Real details the business, design, programming, and marketing principles of 37signals.
EOS
doc = document_from_string input
authors = doc.authors
assert_equal 1, authors.size
author_1 = authors[0]
assert_equal 'david@37signals.com', author_1.email
assert_equal 'David Heinemeier Hansson', author_1.name
assert_equal 'David', author_1.firstname
assert_equal 'Heinemeier', author_1.middlename
assert_equal 'Hansson', author_1.lastname
assert_equal 'DHH', author_1.initials
end
test 'with two authors' do
input = <<~'EOS'
= Getting Real: The Smarter, Faster, Easier Way to Build a Successful Web Application
David Heinemeier Hansson <david@37signals.com>; Jason Fried <jason@37signals.com>
Getting Real details the business, design, programming, and marketing principles of 37signals.
EOS
doc = document_from_string input
authors = doc.authors
assert_equal 2, authors.size
author_1 = authors[0]
assert_equal 'david@37signals.com', author_1.email
assert_equal 'David Heinemeier Hansson', author_1.name
assert_equal 'David', author_1.firstname
assert_equal 'Heinemeier', author_1.middlename
assert_equal 'Hansson', author_1.lastname
assert_equal 'DHH', author_1.initials
author_2 = authors[1]
assert_equal 'jason@37signals.com', author_2.email
assert_equal 'Jason Fried', author_2.name
assert_equal 'Jason', author_2.firstname
assert_nil author_2.middlename
assert_equal 'Fried', author_2.lastname
assert_equal 'JF', author_2.initials
end
test 'with authors as attributes' do
input = <<~'EOS'
= Getting Real: The Smarter, Faster, Easier Way to Build a Successful Web Application
:author_1: David Heinemeier Hansson
:email_1: david@37signals.com
:author_2: Jason Fried
:email_2: jason@37signals.com
Getting Real details the business, design, programming, and marketing principles of 37signals.
EOS
doc = document_from_string input
authors = doc.authors
assert_equal 2, authors.size
author_1 = authors[0]
assert_equal 'david@37signals.com', author_1.email
assert_equal 'David Heinemeier Hansson', author_1.name
assert_equal 'David', author_1.firstname
assert_equal 'Heinemeier', author_1.middlename
assert_equal 'Hansson', author_1.lastname
assert_equal 'DHH', author_1.initials
author_2 = authors[1]
assert_equal 'jason@37signals.com', author_2.email
assert_equal 'Jason Fried', author_2.name
assert_equal 'Jason', author_2.firstname
assert_nil author_2.middlename
assert_equal 'Fried', author_2.lastname
assert_equal 'JF', author_2.initials
end
test 'should not crash if nil cell text is passed to Cell constructor' do
input = <<~'EOS'
|===
|a
|===
EOS
table = (document_from_string input).blocks[0]
cell = Asciidoctor::Table::Cell.new table.rows.body[0][0].column, nil
refute cell.style
assert_same Asciidoctor::AbstractNode::NORMAL_SUBS, cell.subs
assert_equal '', cell.text
end
test 'should set option on node when set_option is called' do
input = <<~'EOS'
. three
. two
. one
EOS
block = (document_from_string input).blocks[0]
block.set_option 'reversed'
assert block.option? 'reversed'
assert_equal '', block.attributes['reversed-option']
end
test 'enabled_options should return all options which are set' do
input = <<~'EOS'
[%interactive]
* [x] code
* [ ] test
* [ ] profit
EOS
block = (document_from_string input).blocks[0]
assert_equal Set['checklist', 'interactive'], block.enabled_options
end
test 'should append option to existing options' do
input = <<~'EOS'
[%fancy]
. three
. two
. one
EOS
block = (document_from_string input).blocks[0]
block.set_option 'reversed'
assert block.option? 'fancy'
assert block.option? 'reversed'
end
test 'should not append option if option is already set' do
input = <<~'EOS'
[%reversed]
. three
. two
. one
EOS
block = (document_from_string input).blocks[0]
refute block.set_option('reversed')
assert_equal '', block.attributes['reversed-option']
end
test 'should return set of option names' do
input = <<~'EOS'
[%compact%reversed]
. three
. two
. one
EOS
block = (document_from_string input).blocks[0]
assert_equal Set['compact', 'reversed'], block.enabled_options
end
test 'should set linenums option if linenums enabled on source block' do
input = <<~'EOS'
[,ruby,linenums]
----
puts "Hello, World!"
----
EOS
block = (document_from_string input).blocks[0]
assert block.attr? 'linenums'
assert block.option? 'linenums'
end
test 'should set linenums option if linenums enabled on fenced code block' do
input = <<~'EOS'
```ruby,linenums
puts "Hello, World!"
```
EOS
block = (document_from_string input).blocks[0]
assert block.attr? 'linenums'
assert block.option? 'linenums'
end
test 'should not set linenums attribute if linenums option is enabled on source block' do
input = <<~'EOS'
[%linenums,ruby]
----
puts "Hello, World!"
----
EOS
block = (document_from_string input).blocks[0]
refute block.attr? 'linenums'
assert block.option? 'linenums'
end
test 'should not set linenums attribute if linenums option is enabled on fenced code block' do
input = <<~'EOS'
:source-linenums-option:
```ruby
puts "Hello, World!"
```
EOS
block = (document_from_string input).blocks[0]
refute block.attr? 'linenums'
assert block.option? 'linenums'
end
test 'table column should not be a block or inline' do
input = <<~'EOS'
|===
|a
|===
EOS
col = (document_from_string input).blocks[0].columns[0]
refute col.block?
refute col.inline?
end
test 'table cell should be a block' do
input = <<~'EOS'
|===
|a
|===
EOS
cell = (document_from_string input).blocks[0].rows.body[0][0]
assert_kind_of Asciidoctor::AbstractBlock, cell
assert cell.block?
refute cell.inline?
end
test 'next_adjacent_block should return next block' do
input = <<~'EOS'
first
second
EOS
doc = document_from_string input
assert_equal doc.blocks[1], doc.blocks[0].next_adjacent_block
end
test 'next_adjacent_block should return next sibling of parent if called on last sibling' do
input = <<~'EOS'
--
first
--
second
EOS
doc = document_from_string input
assert_equal doc.blocks[1], doc.blocks[0].blocks[0].next_adjacent_block
end
test 'next_adjacent_block should return next sibling of list if called on last item' do
input = <<~'EOS'
* first
second
EOS
doc = document_from_string input
assert_equal doc.blocks[1], doc.blocks[0].blocks[0].next_adjacent_block
end
test 'next_adjacent_block should return next item in dlist if called on last block of list item' do
input = <<~'EOS'
first::
desc
+
more desc
second::
desc
EOS
doc = document_from_string input
assert_equal doc.blocks[0].items[1], doc.blocks[0].items[0][1].blocks[0].next_adjacent_block
end
test 'should return true when sections? is called on a document or section that has sections' do
input = <<~'EOS'
= Document Title
== First Section
=== First subsection
content
EOS
doc = document_from_string input
assert doc.sections?
assert doc.blocks[0].sections?
end
test 'should return false when sections? is called on a document with no sections' do
input = <<~'EOS'
= Document Title
content
EOS
doc = document_from_string input
refute doc.sections?
end
test 'should return false when sections? is called on a section with no sections' do
input = <<~'EOS'
= Document Title
== First Section
EOS
doc = document_from_string input
refute doc.blocks[0].sections?
end
test 'should return false when sections? is called on anything that is not a section' do
input = <<~'EOS'
.Title
====
I'm not section!
====
[NOTE]
I'm not a section either!
EOS
doc = document_from_string input
refute doc.blocks[0].sections?
refute doc.blocks[1].sections?
end
end
context 'SafeMode' do
test 'should return nil if safe mode value not recognized' do
assert_nil Asciidoctor::SafeMode.name_for_value 99
end
test 'should return nil if safe mode name not recognized' do
assert_nil Asciidoctor::SafeMode.value_for_name 'unknown'
end
end
end
|