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
|
require 'test_helper'
class ReaderTest < Test::Unit::TestCase
DIRNAME = File.expand_path(File.dirname(__FILE__))
SAMPLE_DATA = <<-EOS.each_line.to_a
first line
second line
third line
EOS
context 'Reader' do
context 'Prepare lines' do
test 'should prepare lines from Array data' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
end
test 'should prepare lines from String data' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
end
end
context 'With empty data' do
test 'has_more_lines? should return false with empty data' do
assert !Asciidoctor::Reader.new.has_more_lines?
end
test 'empty? should return true with empty data' do
assert Asciidoctor::Reader.new.empty?
assert Asciidoctor::Reader.new.eof?
end
test 'next_line_empty? should return true with empty data' do
assert Asciidoctor::Reader.new.next_line_empty?
end
test 'peek_line should return nil with empty data' do
assert_nil Asciidoctor::Reader.new.peek_line
end
test 'peek_lines should return empty Array with empty data' do
assert_equal [], Asciidoctor::Reader.new.peek_lines
end
test 'read_line should return nil with empty data' do
assert_nil Asciidoctor::Reader.new.read_line
#assert_nil Asciidoctor::Reader.new.get_line
end
test 'read_lines should return empty Array with empty data' do
assert_equal [], Asciidoctor::Reader.new.read_lines
#assert_equal [], Asciidoctor::Reader.new.get_lines
end
end
context 'With data' do
test 'has_more_lines? should return true if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert reader.has_more_lines?
end
test 'empty? should return false if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert !reader.empty?
assert !reader.eof?
end
test 'next_line_empty? should return false if next line is not blank' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert !reader.next_line_empty?
end
test 'next_line_empty? should return true if next line is blank' do
reader = Asciidoctor::Reader.new ["\n", "second line\n"]
assert reader.next_line_empty?
end
test 'peek_line should return next line if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.peek_line
end
test 'peek_line should not consume line or increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.peek_line
assert_equal SAMPLE_DATA.first, reader.peek_line
assert_equal 1, reader.lineno
end
test 'peek_line should return next lines if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
end
test 'peek_lines should not consume lines or increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
assert_equal SAMPLE_DATA[0..1], reader.peek_lines(2)
assert_equal 1, reader.lineno
end
test 'peek_lines should not invert order of lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
reader.peek_lines 3
assert_equal SAMPLE_DATA, reader.lines
end
test 'read_line should return next line if there are lines remaining' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.first, reader.read_line
end
test 'read_line should consume next line and increment line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA[0], reader.read_line
assert_equal SAMPLE_DATA[1], reader.read_line
assert_equal 3, reader.lineno
end
test 'advance should consume next line and return a Boolean indicating if a line was consumed' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert reader.advance
assert reader.advance
assert reader.advance
assert !reader.advance
end
test 'read_lines should return all lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.read_lines
end
test 'read should return all lines joined as String' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
assert_equal SAMPLE_DATA.join, reader.read
end
test 'has_more_lines? should return false after read_lines is invoked' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
assert !reader.has_more_lines?
end
test 'unshift puts line onto Reader as next line to read' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.unshift "line zero\n"
assert_equal "line zero\n", reader.peek_line
assert_equal "line zero\n", reader.read_line
assert_equal 1, reader.lineno
end
test 'terminate should consume all lines and update line number' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.terminate
assert reader.eof?
assert_equal 4, reader.lineno
end
test 'skip_blank_lines should skip blank lines' do
reader = Asciidoctor::Reader.new ["", "\n"].concat(SAMPLE_DATA)
reader.skip_blank_lines
assert_equal SAMPLE_DATA.first, reader.peek_line
end
test 'lines should return remaining lines' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_line
assert_equal SAMPLE_DATA[1..-1], reader.lines
end
test 'source_lines should return copy of original data Array' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
assert_equal SAMPLE_DATA, reader.source_lines
end
test 'source should return original data Array joined as String' do
reader = Asciidoctor::Reader.new SAMPLE_DATA
reader.read_lines
assert_equal SAMPLE_DATA.join, reader.source
end
end
context 'Line context' do
test 'to_s should return file name and line number of current line' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.ad'
reader.read_line
assert_equal 'sample.ad: line 2', reader.to_s
end
test 'line_info should return file name and line number of current line' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.ad'
reader.read_line
assert_equal 'sample.ad: line 2', reader.line_info
assert_equal 'sample.ad: line 2', reader.next_line_info
end
test 'prev_line_info should return file name and line number of previous line read' do
reader = Asciidoctor::Reader.new SAMPLE_DATA, 'sample.ad'
reader.read_line
assert_equal 'sample.ad: line 1', reader.prev_line_info
end
end
context 'Read lines until' do
test 'Read lines until until end' do
lines = <<-EOS.each_line.to_a
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines
result = reader.read_lines_until
assert_equal 3, result.size
assert_equal lines, result
assert !reader.has_more_lines?
assert reader.eof?
end
test 'Read lines until until blank line' do
lines = <<-EOS.each_line.to_a
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines
result = reader.read_lines_until :break_on_blank_lines => true
assert_equal 1, result.size
assert_equal lines.first.chomp, result.first
assert_equal lines.last, reader.peek_line
end
test 'Read lines until until blank line preserving last line' do
lines = <<-EOS.each_line.to_a
This is one paragraph.
This is another paragraph.
EOS
reader = Asciidoctor::Reader.new lines
result = reader.read_lines_until :break_on_blank_lines => true, :preserve_last_line => true
assert_equal 1, result.size
assert_equal lines.first.chomp, result.first
assert reader.next_line_empty?
end
test 'Read lines until until condition is true' do
lines = <<-EOS.each_line.to_a
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until {|line| line.chomp == '--' }
assert_equal 3, result.size
assert_equal lines[1, 3], result
assert reader.next_line_empty?
end
test 'Read lines until until condition is true, taking last line' do
lines = <<-EOS.each_line.to_a
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until(:read_last_line => true) {|line| line.chomp == '--' }
assert_equal 4, result.size
assert_equal lines[1, 4], result
assert reader.next_line_empty?
end
test 'Read lines until until condition is true, taking and preserving last line' do
lines = <<-EOS.each_line.to_a
--
This is one paragraph inside the block.
This is another paragraph inside the block.
--
This is a paragraph outside the block.
EOS
reader = Asciidoctor::Reader.new lines
reader.read_line
result = reader.read_lines_until(:read_last_line => true, :preserve_last_line => true) {|line| line.chomp == '--' }
assert_equal 4, result.size
assert_equal lines[1, 4], result
assert_equal "--\n", reader.peek_line
end
end
end
context 'PreprocessorReader' do
context 'Type hierarchy' do
test 'PreprocessorReader should extend from Reader' do
doc = Asciidoctor::Document.new
reader = Asciidoctor::PreprocessorReader.new doc
assert reader.is_a?(Asciidoctor::Reader)
end
test 'PreprocessorReader should invoke or emulate Reader initializer' do
doc = Asciidoctor::Document.new
reader = Asciidoctor::PreprocessorReader.new doc, SAMPLE_DATA
assert_equal SAMPLE_DATA, reader.lines
assert_equal 1, reader.lineno
end
end
context 'Prepare lines' do
test 'should prepare and normalize lines from Array data' do
doc = Asciidoctor::Document.new
data = SAMPLE_DATA.map {|line| line.chomp}
data.unshift ''
data.push ''
reader = Asciidoctor::PreprocessorReader.new doc, data
assert_equal SAMPLE_DATA, reader.lines
end
test 'should prepare and normalize lines from String data' do
doc = Asciidoctor::Document.new
data = SAMPLE_DATA.map {|line| line.chomp}
data.unshift ' '
data.push ' '
data_as_string = data * "\n"
reader = Asciidoctor::PreprocessorReader.new doc, data_as_string
assert_equal SAMPLE_DATA, reader.lines
end
test 'should clean CRLF from end of lines' do
input = <<-EOS
source\r
with\r
CRLF\r
endlines\r
EOS
doc = Asciidoctor::Document.new
[input, input.lines, input.split("\n"), input.split("\n").join].each do |lines|
reader = Asciidoctor::PreprocessorReader.new doc, lines
reader.lines.each do |line|
assert !line.end_with?("\r"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
assert !line.end_with?("\r\n"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
assert line.end_with?("\n"), "CRLF not properly cleaned for source lines: #{lines.inspect}"
end
end
end
test 'should not skip front matter by default' do
input = <<-EOS
---
layout: post
title: Document Title
author: username
tags: [ first, second ]
---
= Document Title
Author Name
preamble
EOS
doc = Asciidoctor::Document.new
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_equal '---', reader.peek_line.chomp
end
test 'should skip front matter if specified by skip-front-matter attribute' do
front_matter = %(layout: post
title: Document Title
author: username
tags: [ first, second ])
input = <<-EOS
---
#{front_matter}
---
= Document Title
Author Name
preamble
EOS
doc = Asciidoctor::Document.new [], :attributes => {'skip-front-matter' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_equal '= Document Title', reader.peek_line.chomp
assert_equal front_matter, doc.attributes['front-matter']
end
end
context 'Include Macro' do
test 'include macro is disabled by default and becomes a link' do
input = <<-EOS
include::include-file.asciidoc[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_equal 'link:include-file.asciidoc[]', reader.read_line.chomp
end
test 'include macro is enabled when safe mode is less than SECURE' do
input = <<-EOS
include::fixtures/include-file.asciidoc[]
EOS
doc = document_from_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
output = doc.render
assert_match(/included content/, output)
end
test 'include macro should resolve file relative to current include' do
input = <<-EOS
include::fixtures/parent-include.adoc[]
EOS
pseudo_docfile = File.join DIRNAME, 'include-master.adoc'
fixtures_dir = File.join DIRNAME, 'fixtures'
parent_include_docfile = File.join fixtures_dir, 'parent-include.adoc'
child_include_docfile = File.join fixtures_dir, 'child-include.adoc'
grandchild_include_docfile = File.join fixtures_dir, 'grandchild-include.adoc'
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, pseudo_docfile
assert_equal pseudo_docfile, reader.file
assert_equal DIRNAME, reader.dir
assert_equal 'include-master.adoc', reader.path
assert_equal "first line of parent\n", reader.read_line
assert_equal 'fixtures/parent-include.adoc: line 1', reader.prev_line_info
assert_equal parent_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/parent-include.adoc', reader.path
reader.skip_blank_lines
assert_equal "first line of child\n", reader.read_line
assert_equal 'fixtures/child-include.adoc: line 1', reader.prev_line_info
assert_equal child_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/child-include.adoc', reader.path
reader.skip_blank_lines
assert_equal "first line of grandchild\n", reader.read_line
assert_equal 'fixtures/grandchild-include.adoc: line 1', reader.prev_line_info
assert_equal grandchild_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/grandchild-include.adoc', reader.path
reader.skip_blank_lines
assert_equal "last line of grandchild\n", reader.read_line
reader.skip_blank_lines
assert_equal "last line of child\n", reader.read_line
reader.skip_blank_lines
assert_equal "last line of parent\n", reader.read_line
assert_equal 'fixtures/parent-include.adoc: line 5', reader.prev_line_info
assert_equal parent_include_docfile, reader.file
assert_equal fixtures_dir, reader.dir
assert_equal 'fixtures/parent-include.adoc', reader.path
end
test 'missing file referenced by include macro does not crash processor' do
input = <<-EOS
include::fixtures/no-such-file.ad[]
EOS
begin
doc = document_from_string input, :safe => :safe, :base_dir => DIRNAME
assert_equal 0, doc.blocks.size
rescue
flunk 'include macro should not raise exception on missing file'
end
end
test 'include macro can retrieve data from uri' do
input = <<-EOS
....
include::https://raw.github.com/asciidoctor/asciidoctor/master/LICENSE[]
....
EOS
output = render_embedded_string input, :safe => :safe, :attributes => {'allow-uri-read' => ''}
assert_match(/MIT/, output)
end
test 'inaccessible uri referenced by include macro does not crash processor' do
input = <<-EOS
....
include::http://127.0.0.1:0[]
....
EOS
begin
output = render_embedded_string input, :safe => :safe, :attributes => {'allow-uri-read' => ''}
assert_css 'pre:empty', output, 1
rescue
flunk 'include macro should not raise exception on inaccessible uri'
end
end
test 'include macro supports line selection' do
input = <<-EOS
include::fixtures/include-file.asciidoc[lines=1;3..4;6..-1]
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
assert_match(/first line/, output)
assert_no_match(/second line/, output)
assert_match(/third line/, output)
assert_match(/fourth line/, output)
assert_no_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include macro supports line selection using quoted attribute value' do
input = <<-EOS
include::fixtures/include-file.asciidoc[lines="1, 3..4 , 6 .. -1"]
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
assert_match(/first line/, output)
assert_no_match(/second line/, output)
assert_match(/third line/, output)
assert_match(/fourth line/, output)
assert_no_match(/fifth line/, output)
assert_match(/sixth line/, output)
assert_match(/seventh line/, output)
assert_match(/eighth line/, output)
assert_match(/last line of included content/, output)
end
test 'include macro supports tagged selection' do
input = <<-EOS
include::fixtures/include-file.asciidoc[tag=snippetA]
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
assert_match(/snippetA content/, output)
assert_no_match(/snippetB content/, output)
assert_no_match(/non-tagged content/, output)
assert_no_match(/included content/, output)
end
test 'include macro supports multiple tagged selection' do
input = <<-EOS
include::fixtures/include-file.asciidoc[tags=snippetA;snippetB]
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
assert_match(/snippetA content/, output)
assert_match(/snippetB content/, output)
assert_no_match(/non-tagged content/, output)
assert_no_match(/included content/, output)
end
test 'lines attribute takes precedence over tags attribute in include macro' do
input = <<-EOS
include::fixtures/include-file.asciidoc[lines=1, tags=snippetA;snippetB]
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
assert_match(/first line of included content/, output)
assert_no_match(/snippetA content/, output)
assert_no_match(/snippetB content/, output)
end
test 'indent of included file can be reset to size of indent attribute' do
input = <<-EOS
[source, xml]
----
include::fixtures/basic-docinfo.xml[lines=2..3, indent=0]
----
EOS
output = render_string input, :safe => :safe, :header_footer => false, :base_dir => DIRNAME
result = xmlnodes_at_xpath('//pre', output, 1).text
assert_equal "<year>2013</year>\n<holder>Acme, Inc.</holder>", result
end
test 'include processor is called to process include directive' do
input = <<-EOS
first line
include::include-file.asciidoc[]
last line
EOS
include_processor = Class.new {
def initialize document
end
def handles? target
true
end
def process reader, target, attributes
content = ["include target:: #{target}\n", "\n", "middle line\n"]
reader.push_include content, target, target, 1, attributes
end
}
# Safe Mode is not required
document = empty_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new document, input
reader.instance_variable_set '@include_processors', [include_processor.new(document)]
lines = []
lines << reader.read_line
lines << reader.read_line
lines << reader.read_line
assert_equal "include target:: include-file.asciidoc\n", lines.last
assert_equal 'include-file.asciidoc: line 2', reader.line_info
while reader.has_more_lines?
lines << reader.read_line
end
source = lines.join
assert_match(/^include target:: include-file.asciidoc$/, source)
assert_match(/^middle line$/, source)
end
test 'should fall back to built-in include macro behavior when not handled by include processor' do
input = <<-EOS
include::fixtures/include-file.asciidoc[]
EOS
include_processor = Class.new {
def initialize document
end
def handles? target
false
end
def process reader, target, attributes
raise 'TestIncludeHandler should not have been invoked'
end
}
document = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new document, input
reader.instance_variable_set '@include_processors', [include_processor.new(document)]
lines = reader.read_lines
source = lines.join
assert_match(/included content/, source)
end
test 'attributes are substituted in target of include macro' do
input = <<-EOS
:fixturesdir: fixtures
:ext: asciidoc
include::{fixturesdir}/include-file.{ext}[]
EOS
doc = document_from_string input, :safe => :safe, :base_dir => DIRNAME
output = doc.render
assert_match(/included content/, output)
end
test 'line is skipped by default if target of include macro resolves to empty' do
input = <<-EOS
include::{foodir}/include-file.asciidoc[]
EOS
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_equal "include::{foodir}/include-file.asciidoc[]\n", reader.read_line
end
test 'line is dropped if target of include macro resolves to empty and attribute-missing attribute is not skip' do
input = <<-EOS
include::{foodir}/include-file.asciidoc[]
EOS
doc = empty_safe_document :base_dir => DIRNAME, :attributes => {'attribute-missing' => 'drop'}
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_nil reader.read_line
end
test 'line following dropped include is not dropped' do
input = <<-EOS
include::{foodir}/include-file.asciidoc[]
yo
EOS
doc = empty_safe_document :base_dir => DIRNAME, :attributes => {'attribute-missing' => 'drop'}
reader = Asciidoctor::PreprocessorReader.new doc, input
assert_equal "yo\n", reader.read_line
end
test 'escaped include macro is left unprocessed' do
input = <<-EOS
\\include::fixtures/include-file.asciidoc[]
\\escape preserved here
EOS
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input
# we should be able to peek it multiple times and still have the backslash preserved
# this is the test for @unescape_next_line
assert_equal 'include::fixtures/include-file.asciidoc[]', reader.peek_line.chomp
assert_equal 'include::fixtures/include-file.asciidoc[]', reader.peek_line.chomp
assert_equal 'include::fixtures/include-file.asciidoc[]', reader.read_line.chomp
assert_equal '\\escape preserved here', reader.read_line.chomp
end
test 'include macro not at start of line is ignored' do
input = <<-EOS
include::include-file.asciidoc[]
EOS
para = block_from_string input
assert_equal 1, para.lines.size
# NOTE the space gets stripped because the line is treated as an inline literal
assert_equal :literal, para.context
assert_equal 'include::include-file.asciidoc[]', para.source
end
test 'include macro is disabled when max-include-depth attribute is 0' do
input = <<-EOS
include::include-file.asciidoc[]
EOS
para = block_from_string input, :safe => :safe, :attributes => { 'max-include-depth' => 0 }
assert_equal 1, para.lines.size
assert_equal 'include::include-file.asciidoc[]', para.source
end
test 'max-include-depth cannot be set by document' do
input = <<-EOS
:max-include-depth: 1
include::include-file.asciidoc[]
EOS
para = block_from_string input, :safe => :safe, :attributes => { 'max-include-depth' => 0 }
assert_equal 1, para.lines.size
assert_equal 'include::include-file.asciidoc[]', para.source
end
test 'include macro should be disabled if max include depth has been exceeded' do
input = <<-EOS
include::fixtures/parent-include.adoc[depth=1]
EOS
pseudo_docfile = File.join DIRNAME, 'include-master.adoc'
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, Asciidoctor::Reader::Cursor.new(pseudo_docfile)
lines = reader.readlines
assert lines.include?("include::child-include.adoc[]\n")
end
test 'include macro should be disabled if max include depth set in nested context has been exceeded' do
input = <<-EOS
include::fixtures/parent-include-restricted.adoc[depth=3]
EOS
pseudo_docfile = File.join DIRNAME, 'include-master.adoc'
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, input, Asciidoctor::Reader::Cursor.new(pseudo_docfile)
lines = reader.readlines
assert lines.include?("first line of child\n")
assert lines.include?("include::grandchild-include.adoc[]\n")
end
test 'read_lines_until should not process lines if process option is false' do
lines = <<-EOS.each_line.to_a
////
include::fixtures/no-such-file.asciidoc[]
////
EOS
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines
reader.read_line
result = reader.read_lines_until(:terminator => '////', :skip_processing => true)
assert_equal lines[1..1], result
end
test 'skip_comment_lines should not process lines read' do
lines = <<-EOS.each_line.to_a
////
include::fixtures/no-such-file.asciidoc[]
////
EOS
doc = empty_safe_document :base_dir => DIRNAME
reader = Asciidoctor::PreprocessorReader.new doc, lines
result = reader.skip_comment_lines
assert_equal lines, result
end
end
context 'Conditional Inclusions' do
#test 'process_line returns next line of content' do
test 'process_line returns nil if cursor advanced' do
input = <<-EOS
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
reader = Asciidoctor::PreprocessorReader.new empty_document, input
#assert_equal "Asciidoctor!\n", reader.process_line(reader.lines.first)
assert_nil reader.process_line(reader.lines.first)
end
test 'peek_line advances cursor to next conditional line of content' do
input = <<-EOS
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
reader = Asciidoctor::PreprocessorReader.new empty_document, input
assert_equal 1, reader.lineno
assert_equal "Asciidoctor!\n", reader.peek_line
assert_equal 2, reader.lineno
end
test 'process_line returns line if cursor not advanced' do
input = <<-EOS
content
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
reader = Asciidoctor::PreprocessorReader.new empty_document, input
assert_not_nil reader.process_line(reader.lines.first)
end
test 'peek_line does not advance cursor when on a regular content line' do
input = <<-EOS
content
ifdef::asciidoctor[]
Asciidoctor!
endif::asciidoctor[]
EOS
reader = Asciidoctor::PreprocessorReader.new empty_document, input
assert_equal 1, reader.lineno
assert_equal "content\n", reader.peek_line
assert_equal 1, reader.lineno
end
test 'peek_line returns nil if cursor advances past end of source' do
input = <<-EOS
ifdef::foobar[]
swallowed content
endif::foobar[]
EOS
reader = Asciidoctor::PreprocessorReader.new empty_document, input
assert_equal 1, reader.lineno
assert_nil reader.peek_line
assert_equal 4, reader.lineno
end
test 'ifdef with defined attribute includes content' do
input = <<-EOS
ifdef::holygrail[]
There is a holy grail!
endif::holygrail[]
EOS
doc = empty_document :attributes => {'holygrail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'There is a holy grail!', lines.join.chomp
end
test 'ifdef with defined attribute includes text in brackets' do
input = <<-EOS
On our quest we go...
ifdef::holygrail[There is a holy grail!]
There was much rejoicing.
EOS
doc = empty_document :attributes => {'holygrail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "On our quest we go...\nThere is a holy grail!\nThere was much rejoicing.", lines.join.chomp
end
test 'ifndef with defined attribute does not include text in brackets' do
input = <<-EOS
On our quest we go...
ifndef::hardships[There is a holy grail!]
There was no rejoicing.
EOS
doc = empty_document :attributes => {'hardships' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "On our quest we go...\nThere was no rejoicing.", lines.join.chomp
end
test 'include with non-matching nested exclude' do
input = <<-EOS
ifdef::grail[]
holy
ifdef::swallow[]
swallow
endif::swallow[]
grail
endif::grail[]
EOS
doc = empty_document :attributes => {'grail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "holy\ngrail", lines.join.chomp
end
test 'nested excludes with same condition' do
input = <<-EOS
ifndef::grail[]
ifndef::grail[]
not here
endif::grail[]
endif::grail[]
EOS
doc = empty_document :attributes => {'grail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', lines.join.chomp
end
test 'include with nested exclude of inverted condition' do
input = <<-EOS
ifdef::grail[]
holy
ifndef::grail[]
not here
endif::grail[]
grail
endif::grail[]
EOS
doc = empty_document :attributes => {'grail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "holy\ngrail", lines.join.chomp
end
test 'exclude with matching nested exclude' do
input = <<-EOS
poof
ifdef::swallow[]
no
ifdef::swallow[]
swallow
endif::swallow[]
here
endif::swallow[]
gone
EOS
doc = empty_document :attributes => {'grail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "poof\ngone", lines.join.chomp
end
test 'exclude with nested include using shorthand end' do
input = <<-EOS
poof
ifndef::grail[]
no grail
ifndef::swallow[]
or swallow
endif::[]
in here
endif::[]
gone
EOS
doc = empty_document :attributes => {'grail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "poof\ngone", lines.join.chomp
end
test 'ifdef with one alternative attribute set includes content' do
input = <<-EOS
ifdef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = empty_document :attributes => {'swallow' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', lines.join.chomp
end
test 'ifdef with no alternative attributes set does not include content' do
input = <<-EOS
ifdef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', lines.join.chomp
end
test 'ifdef with all required attributes set includes content' do
input = <<-EOS
ifdef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = empty_document :attributes => {'holygrail' => '', 'swallow' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', lines.join.chomp
end
test 'ifdef with missing required attributes does not include content' do
input = <<-EOS
ifdef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = empty_document :attributes => {'holygrail' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', lines.join.chomp
end
test 'ifndef with undefined attribute includes block' do
input = <<-EOS
ifndef::holygrail[]
Our quest continues to find the holy grail!
endif::holygrail[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest continues to find the holy grail!', lines.join.chomp
end
test 'ifndef with one alternative attribute set includes content' do
input = <<-EOS
ifndef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = empty_document :attributes => {'swallow' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', lines.join.chomp
end
test 'ifndef with no alternative attributes set includes content' do
input = <<-EOS
ifndef::holygrail,swallow[]
Our quest is complete!
endif::holygrail,swallow[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', lines.join.chomp
end
test 'ifndef with any required attributes set does not include content' do
input = <<-EOS
ifndef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = empty_document :attributes => {'swallow' => ''}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', lines.join.chomp
end
test 'ifndef with no required attributes set includes content' do
input = <<-EOS
ifndef::holygrail+swallow[]
Our quest is complete!
endif::holygrail+swallow[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Our quest is complete!', lines.join.chomp
end
test 'escaped ifdef is unescaped and ignored' do
input = <<-EOS
\\ifdef::holygrail[]
content
\\endif::holygrail[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "ifdef::holygrail[]\ncontent\nendif::holygrail[]", lines.join.chomp
end
test 'ifeval comparing double-quoted attribute to matching string is included' do
input = <<-EOS
ifeval::["{gem}" == "asciidoctor"]
Asciidoctor it is!
endif::[]
EOS
doc = empty_document :attributes => {'gem' => 'asciidoctor'}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Asciidoctor it is!', lines.join.chomp
end
test 'ifeval comparing single-quoted attribute to matching string is included' do
input = <<-EOS
ifeval::['{gem}' == 'asciidoctor']
Asciidoctor it is!
endif::[]
EOS
doc = empty_document :attributes => {'gem' => 'asciidoctor'}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Asciidoctor it is!', lines.join.chomp
end
test 'ifeval comparing quoted attribute to non-matching string is ignored' do
input = <<-EOS
ifeval::['{gem}' == 'asciidoctor']
Asciidoctor it is!
endif::[]
EOS
doc = empty_document :attributes => {'gem' => 'tilt'}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal '', lines.join.chomp
end
test 'ifeval comparing attribute to lower version number is included' do
input = <<-EOS
ifeval::['{asciidoctor-version}' >= '0.1.0']
That version will do!
endif::[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'That version will do!', lines.join.chomp
end
test 'ifeval comparing attribute to self is included' do
input = <<-EOS
ifeval::['{asciidoctor-version}' == '{asciidoctor-version}']
Of course it's the same!
endif::[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'Of course it\'s the same!', lines.join.chomp
end
test 'ifeval arguments can be transposed' do
input = <<-EOS
ifeval::["0.1.0" <= "{asciidoctor-version}"]
That version will do!
endif::[]
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'That version will do!', lines.join.chomp
end
test 'ifeval matching numeric comparison is included' do
input = <<-EOS
ifeval::[{rings} == 1]
One ring to rule them all!
endif::[]
EOS
doc = empty_document :attributes => {'rings' => 1}
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal 'One ring to rule them all!', lines.join.chomp
end
test 'ifdef with no target is ignored' do
input = <<-EOS
ifdef::[]
content
EOS
doc = empty_document
reader = Asciidoctor::PreprocessorReader.new doc, input
lines = []
while reader.has_more_lines?
lines << reader.read_line
end
assert_equal "ifdef::[]\ncontent", lines.join.chomp
end
end
end
end
|