forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lists_test.rb
5456 lines (4668 loc) · 175 KB
/
lists_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
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
# frozen_string_literal: true
require_relative 'test_helper'
context 'Bulleted lists (:ulist)' do
context 'Simple lists' do
test 'dash elements with no blank lines' do
input = <<~'EOS'
List
====
- Foo
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'indented dash elements using spaces' do
input = <<~EOS
\x20- Foo
\x20- Boo
\x20- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'indented dash elements using tabs' do
input = <<~EOS
\t-\tFoo
\t-\tBoo
\t-\tBlech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'dash elements separated by blank lines should merge lists' do
input = <<~'EOS'
List
====
- Foo
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'dash elements with interspersed line comments should be skipped and not break list' do
input = <<~'EOS'
== List
- Foo
// line comment
// another line comment
- Boo
// line comment
more text
// another line comment
- Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath %((//ul/li)[2]/p[text()="Boo\nmore text"]), output, 1
end
test 'dash elements separated by a line comment offset by blank lines should not merge lists' do
input = <<~'EOS'
List
====
- Foo
- Boo
//
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
end
test 'dash elements separated by a block title offset by a blank line should not merge lists' do
input = <<~'EOS'
List
====
- Foo
- Boo
.Also
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
assert_xpath '(//ul)[2]/preceding-sibling::*[@class = "title"][text() = "Also"]', output, 1
end
test 'dash elements separated by an attribute entry offset by a blank line should not merge lists' do
input = <<~'EOS'
== List
- Foo
- Boo
:foo: bar
- Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
end
test 'a non-indented wrapped line is folded into text of list item' do
input = <<~'EOS'
List
====
- Foo
wrapped content
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li[1]/*', output, 1
assert_xpath %(//ul/li[1]/p[text() = 'Foo\nwrapped content']), output, 1
end
test 'a non-indented wrapped line that resembles a block title is folded into text of list item' do
input = <<~'EOS'
== List
- Foo
.wrapped content
- Boo
- Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li[1]/*', output, 1
assert_xpath %(//ul/li[1]/p[text() = 'Foo\n.wrapped content']), output, 1
end
test 'a non-indented wrapped line that resembles an attribute entry is folded into text of list item' do
input = <<~'EOS'
== List
- Foo
:foo: bar
- Boo
- Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li[1]/*', output, 1
assert_xpath %(//ul/li[1]/p[text() = 'Foo\n:foo: bar']), output, 1
end
test 'a list item with a nested marker terminates non-indented paragraph for text of list item' do
input = <<~'EOS'
- Foo
Bar
* Foo
EOS
output = convert_string_to_embedded input
assert_css 'ul ul', output, 1
refute_includes output, '* Foo'
end
test 'a list item for a different list terminates non-indented paragraph for text of list item' do
input = <<~'EOS'
== Example 1
- Foo
Bar
. Foo
== Example 2
* Item
text
term:: def
EOS
output = convert_string_to_embedded input
assert_css 'ul ol', output, 1
refute_includes output, '* Foo'
assert_css 'ul dl', output, 1
refute_includes output, 'term:: def'
end
test 'an indented wrapped line is unindented and folded into text of list item' do
input = <<~'EOS'
List
====
- Foo
wrapped content
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li[1]/*', output, 1
assert_xpath %(//ul/li[1]/p[text() = 'Foo\nwrapped content']), output, 1
end
test 'wrapped list item with hanging indent followed by non-indented line' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
== Lists
- list item 1
// not line comment
second wrapped line
- list item 2
EOS
output = convert_string_to_embedded input
assert_css 'ul', output, 1
assert_css 'ul li', output, 2
# NOTE for some reason, we're getting an extra line after the indented line
lines = xmlnodes_at_xpath('(//ul/li)[1]/p', output, 1).text.gsub(/\n[[:space:]]*\n/, ?\n).lines
assert_equal 3, lines.size
assert_equal 'list item 1', lines[0].chomp
assert_equal ' // not line comment', lines[1].chomp
assert_equal 'second wrapped line', lines[2].chomp
end
test 'a list item with a nested marker terminates indented paragraph for text of list item' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
- Foo
Bar
* Foo
EOS
output = convert_string_to_embedded input
assert_css 'ul ul', output, 1
refute_includes output, '* Foo'
end
test 'a list item that starts with a sequence of list markers characters should not match a nested list' do
input = <<~EOS
\x20* first item
\x20*. normal text
EOS
output = convert_string_to_embedded input
assert_css 'ul', output, 1
assert_css 'ul li', output, 1
assert_xpath %(//ul/li/p[text()='first item\n*. normal text']), output, 1
end
test 'a list item for a different list terminates indented paragraph for text of list item' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
== Example 1
- Foo
Bar
. Foo
== Example 2
* Item
text
term:: def
EOS
output = convert_string_to_embedded input
assert_css 'ul ol', output, 1
refute_includes output, '* Foo'
assert_css 'ul dl', output, 1
refute_includes output, 'term:: def'
end
test 'a literal paragraph offset by blank lines in list content is appended as a literal block' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
List
====
- Foo
literal
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul/li)[1]/p[text() = "Foo"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="literalblock"]', output, 1
assert_xpath '((//ul/li)[1]/*[@class="literalblock"])[1]//pre[text() = "literal"]', output, 1
end
test 'should escape special characters in all literal paragraphs attached to list item' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
* first item
<code>text</code>
more <code>text</code>
* second item
EOS
output = convert_string_to_embedded input
assert_css 'li', output, 2
assert_css 'code', output, 0
assert_css 'li:first-of-type > *', output, 3
assert_css 'li:first-of-type pre', output, 2
assert_xpath '((//li)[1]//pre)[1][text()="<code>text</code>"]', output, 1
assert_xpath '((//li)[1]//pre)[2][text()="more <code>text</code>"]', output, 1
end
test 'a literal paragraph offset by a blank line in list content followed by line with continuation is appended as two blocks' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
List
====
- Foo
literal
+
para
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul/li)[1]/p[text() = "Foo"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="literalblock"]', output, 1
assert_xpath '((//ul/li)[1]/*[@class="literalblock"])[1]//pre[text() = "literal"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]/following-sibling::*[@class="paragraph"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]/following-sibling::*[@class="paragraph"]/p[text()="para"]', output, 1
end
test 'an admonition paragraph attached by a line continuation to a list item with wrapped text should produce admonition' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
- first-line text
wrapped text
+
NOTE: This is a note.
EOS
output = convert_string_to_embedded input
assert_css 'ul', output, 1
assert_css 'ul > li', output, 1
assert_css 'ul > li > p', output, 1
assert_xpath %(//ul/li/p[text()="first-line text\nwrapped text"]), output, 1
assert_css 'ul > li > p + .admonitionblock.note', output, 1
assert_xpath '//ul/li/*[@class="admonitionblock note"]//td[@class="content"][normalize-space(text())="This is a note."]', output, 1
end
test 'paragraph-like blocks attached to an ancestry list item by a list continuation should produce blocks' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
* parent
** child
+
NOTE: This is a note.
* another parent
** another child
+
'''
EOS
output = convert_string_to_embedded input
assert_css 'ul ul .admonitionblock.note', output, 0
assert_xpath '(//ul)[1]/li/*[@class="admonitionblock note"]', output, 1
assert_css 'ul ul hr', output, 0
assert_xpath '(//ul)[1]/li/hr', output, 1
end
test 'should not inherit block attributes from previous block when block is attached using a list continuation' do
input = <<~'EOS'
* complex list item
+
[source,xml]
----
<name>value</name> <!--1-->
----
<1> a configuration value
EOS
doc = document_from_string input
colist = doc.blocks[0].items[0].blocks[-1]
assert_equal :colist, colist.context
refute_equal 'source', colist.style
output = doc.convert standalone: false
assert_css 'ul', output, 1
assert_css 'ul > li', output, 1
assert_css 'ul > li > p', output, 1
assert_css 'ul > li > .listingblock', output, 1
assert_css 'ul > li > .colist', output, 1
end
test 'should continue to parse blocks attached by a list continuation after block is dropped' do
input = <<~'EOS'
* item
+
paragraph
+
[comment]
comment
+
====
example
====
'''
EOS
output = convert_string_to_embedded input
assert_css 'ul > li > .paragraph', output, 1
assert_css 'ul > li > .exampleblock', output, 1
end
test 'appends line as paragraph if attached by continuation following line comment' do
input = <<~'EOS'
- list item 1
// line comment
+
paragraph in list item 1
- list item 2
EOS
output = convert_string_to_embedded input
assert_css 'ul', output, 1
assert_css 'ul li', output, 2
assert_xpath '(//ul/li)[1]/p[text()="list item 1"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="paragraph"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="paragraph"]/p[text()="paragraph in list item 1"]', output, 1
assert_xpath '(//ul/li)[2]/p[text()="list item 2"]', output, 1
end
test 'a literal paragraph with a line that appears as a list item that is followed by a continuation should create two blocks' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
* Foo
+
literal
. still literal
+
para
* Bar
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 2
assert_xpath '(//ul/li)[1]/p[text() = "Foo"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="literalblock"]', output, 1
assert_xpath %(((//ul/li)[1]/*[@class="literalblock"])[1]//pre[text() = " literal\n. still literal"]), output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]/following-sibling::*[@class="paragraph"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]/following-sibling::*[@class="paragraph"]/p[text()="para"]', output, 1
end
test 'consecutive literal paragraph offset by blank lines in list content are appended as a literal blocks' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
List
====
- Foo
literal
more
literal
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul/li)[1]/p[text() = "Foo"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]', output, 2
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="literalblock"]', output, 2
assert_xpath '((//ul/li)[1]/*[@class="literalblock"])[1]//pre[text()="literal"]', output, 1
assert_xpath %(((//ul/li)[1]/*[@class='literalblock'])[2]//pre[text()='more\nliteral']), output, 1
end
test 'a literal paragraph without a trailing blank line consumes following list items' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
List
====
- Foo
literal
- Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 1
assert_xpath '(//ul/li)[1]/p[text() = "Foo"]', output, 1
assert_xpath '(//ul/li)[1]/*[@class="literalblock"]', output, 1
assert_xpath '(//ul/li)[1]/p/following-sibling::*[@class="literalblock"]', output, 1
assert_xpath %(((//ul/li)[1]/*[@class='literalblock'])[1]//pre[text() = ' literal\n- Boo\n- Blech']), output, 1
end
test 'asterisk elements with no blank lines' do
input = <<~'EOS'
List
====
* Foo
* Boo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'indented asterisk elements using spaces' do
input = <<~EOS
\x20* Foo
\x20* Boo
\x20* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'indented unicode bullet elements using spaces' do
input = <<~EOS
\x20• Foo
\x20• Boo
\x20• Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'indented asterisk elements using tabs' do
input = <<~EOS
\t*\tFoo
\t*\tBoo
\t*\tBlech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'should represent block style as style class' do
%w(disc square circle).each do |style|
input = <<~EOS
[#{style}]
* a
* b
* c
EOS
output = convert_string_to_embedded input
assert_css %(.ulist.#{style}), output, 1
assert_css %(.ulist.#{style} ul.#{style}), output, 1
end
end
test 'asterisk elements separated by blank lines should merge lists' do
input = <<~'EOS'
List
====
* Foo
* Boo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
end
test 'asterisk elements with interspersed line comments should be skipped and not break list' do
input = <<~'EOS'
== List
* Foo
// line comment
// another line comment
* Boo
// line comment
more text
// another line comment
* Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath %((//ul/li)[2]/p[text()="Boo\nmore text"]), output, 1
end
test 'asterisk elements separated by a line comment offset by blank lines should not merge lists' do
input = <<~'EOS'
List
====
* Foo
* Boo
//
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
end
test 'asterisk elements separated by a block title offset by a blank line should not merge lists' do
input = <<~'EOS'
List
====
* Foo
* Boo
.Also
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
assert_xpath '(//ul)[2]/preceding-sibling::*[@class = "title"][text() = "Also"]', output, 1
end
test 'asterisk elements separated by an attribute entry offset by a blank line should not merge lists' do
input = <<~'EOS'
== List
* Foo
* Boo
:foo: bar
* Blech
EOS
output = convert_string_to_embedded input
assert_xpath '//ul', output, 2
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[2]/li', output, 1
end
test 'list should terminate before next lower section heading' do
input = <<~'EOS'
List
====
* first
item
* second
item
== Section
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 2
assert_xpath '//h2[text() = "Section"]', output, 1
end
test 'list should terminate before next lower section heading with implicit id' do
input = <<~'EOS'
List
====
* first
item
* second
item
[[sec]]
== Section
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 2
assert_xpath '//h2[@id = "sec"][text() = "Section"]', output, 1
end
test 'should not find section title immediately below last list item' do
input = <<~'EOS'
* first
* second
== Not a section
EOS
output = convert_string_to_embedded input
assert_css 'ul', output, 1
assert_css 'ul > li', output, 2
assert_css 'h2', output, 0
assert_includes output, '== Not a section'
assert_xpath %((//li)[2]/p[text() = "second\n== Not a section"]), output, 1
end
test 'should match trailing line separator in text of list item' do
input = <<~EOS.chop
* a
* b#{decode_char 8232}
* c
EOS
output = convert_string input
assert_css 'li', output, 3
assert_xpath %((//li)[2]/p[text()="b#{decode_char 8232}"]), output, 1
end
test 'should match line separator in text of list item' do
input = <<~EOS.chop
* a
* b#{decode_char 8232}b
* c
EOS
output = convert_string input
assert_css 'li', output, 3
assert_xpath %((//li)[2]/p[text()="b#{decode_char 8232}b"]), output, 1
end
end
context 'Lists with inline markup' do
test 'quoted text' do
input = <<~'EOS'
List
====
- I am *strong*.
- I am _stressed_.
- I am `flexible`.
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul/li)[1]//strong', output, 1
assert_xpath '(//ul/li)[2]//em', output, 1
assert_xpath '(//ul/li)[3]//code', output, 1
end
test 'attribute substitutions' do
input = <<~'EOS'
List
====
:foo: bar
- side a {vbar} side b
- Take me to a {foo}.
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 2
assert_xpath '(//ul/li)[1]//p[text() = "side a | side b"]', output, 1
assert_xpath '(//ul/li)[2]//p[text() = "Take me to a bar."]', output, 1
end
test 'leading dot is treated as text not block title' do
input = <<~'EOS'
* .first
* .second
* .third
EOS
output = convert_string input
assert_xpath '//ul', output, 1
assert_xpath '//ul/li', output, 3
%w(.first .second .third).each_with_index do |text, index|
assert_xpath %((//ul/li)[#{index + 1}]//p[text() = '#{text}']), output, 1
end
end
test 'word ending sentence on continuing line not treated as a list item' do
# NOTE cannot use single-quoted heredoc because of https://github.com/jruby/jruby/issues/4260
input = <<~EOS
A. This is the story about
AsciiDoc. It begins here.
B. And it ends here.
EOS
output = convert_string input
assert_xpath '//ol', output, 1
assert_xpath '//ol/li', output, 2
end
test 'should discover anchor at start of unordered list item text and register it as a reference' do
input = <<~'EOS'
The highest peak in the Front Range is <<grays-peak>>, which tops <<mount-evans>> by just a few feet.
* [[mount-evans,Mount Evans]]At 14,271 feet, Mount Evans is the highest summit of the Chicago Peaks in the Front Range of the Rocky Mountains.
* [[grays-peak,Grays Peak]]
Grays Peak rises to 14,278 feet, making it the highest summit in the Front Range of the Rocky Mountains.
* Longs Peak is a 14,259-foot high, prominent mountain summit in the northern Front Range of the Rocky Mountains.
* Pikes Peak is the highest summit of the southern Front Range of the Rocky Mountains at 14,115 feet.
EOS
doc = document_from_string input
refs = doc.catalog[:refs]
assert refs.key?('mount-evans')
assert refs.key?('grays-peak')
output = doc.convert standalone: false
assert_xpath '(//p)[1]/a[@href="#grays-peak"][text()="Grays Peak"]', output, 1
assert_xpath '(//p)[1]/a[@href="#mount-evans"][text()="Mount Evans"]', output, 1
end
test 'should discover anchor at start of ordered list item text and register it as a reference' do
input = <<~'EOS'
This is a cross-reference to <<step-2>>.
This is a cross-reference to <<step-4>>.
. Ordered list, item 1, without anchor
. [[step-2,Step 2]]Ordered list, item 2, with anchor
. Ordered list, item 3, without anchor
. [[step-4,Step 4]]Ordered list, item 4, with anchor
EOS
doc = document_from_string input
refs = doc.catalog[:refs]
assert refs.key?('step-2')
assert refs.key?('step-4')
output = doc.convert standalone: false
assert_xpath '(//p)[1]/a[@href="#step-2"][text()="Step 2"]', output, 1
assert_xpath '(//p)[1]/a[@href="#step-4"][text()="Step 4"]', output, 1
end
test 'should discover anchor at start of callout list item text and register it as a reference' do
input = <<~'EOS'
This is a cross-reference to <<url-mapping>>.
[source,ruby]
----
require 'sinatra' <1>
get '/hi' do <2> <3>
"Hello World!"
end
----
<1> Library import
<2> [[url-mapping,url mapping]]URL mapping
<3> Response block
EOS
doc = document_from_string input
refs = doc.catalog[:refs]
assert refs.key?('url-mapping')
output = doc.convert standalone: false
assert_xpath '(//p)[1]/a[@href="#url-mapping"][text()="url mapping"]', output, 1
end
end
context 'Nested lists' do
test 'asterisk element mixed with dash elements should be nested' do
input = <<~'EOS'
List
====
- Foo
* Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[1]/li//ul/li', output, 1
end
test 'dash element mixed with asterisks elements should be nested' do
input = <<~'EOS'
List
====
* Foo
- Boo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[1]/li//ul/li', output, 1
end
test 'lines prefixed with alternating list markers separated by blank lines should be nested' do
input = <<~'EOS'
List
====
- Foo
* Boo
- Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[1]/li//ul/li', output, 1
end
test 'nested elements (2) with asterisks' do
input = <<~'EOS'
List
====
* Foo
** Boo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 2
assert_xpath '//ul/li', output, 3
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '(//ul)[1]/li//ul/li', output, 1
end
test 'nested elements (3) with asterisks' do
input = <<~'EOS'
List
====
* Foo
** Boo
*** Snoo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 3
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '((//ul)[1]/li//ul)[1]/li', output, 1
assert_xpath '(((//ul)[1]/li//ul)[1]/li//ul)[1]/li', output, 1
end
test 'nested elements (4) with asterisks' do
input = <<~'EOS'
List
====
* Foo
** Boo
*** Snoo
**** Froo
* Blech
EOS
output = convert_string input
assert_xpath '//ul', output, 4
assert_xpath '(//ul)[1]/li', output, 2
assert_xpath '((//ul)[1]/li//ul)[1]/li', output, 1
assert_xpath '(((//ul)[1]/li//ul)[1]/li//ul)[1]/li', output, 1
assert_xpath '((((//ul)[1]/li//ul)[1]/li//ul)[1]/li//ul)[1]/li', output, 1
end
test 'nested elements (5) with asterisks' do
input = <<~'EOS'
List
====
* Foo
** Boo
*** Snoo
**** Froo