forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables_test.rb
1416 lines (1250 loc) · 42.3 KB
/
tables_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
# encoding: UTF-8
unless defined? ASCIIDOCTOR_PROJECT_DIR
$: << File.dirname(__FILE__); $:.uniq!
require 'test_helper'
end
context 'Tables' do
context 'PSV' do
test 'renders simple psv table' do
input = <<-EOS
|=======
|A |B |C
|a |b |c
|1 |2 |3
|=======
EOS
cells = [%w(A B C), %w(a b c), %w(1 2 3)]
doc = document_from_string input, :header_footer => false
table = doc.blocks[0]
assert 100, table.columns.map {|col| col.attributes['colpcwidth'] }.reduce(:+)
output = doc.convert
assert_css 'table', output, 1
assert_css 'table.tableblock.frame-all.grid-all.spread', output, 1
assert_css 'table > colgroup > col[style*="width: 33.3333%"]', output, 2
assert_css 'table > colgroup > col:last-of-type[style*="width: 33.3334%"]', output, 1
assert_css 'table tr', output, 3
assert_css 'table > tbody > tr', output, 3
assert_css 'table td', output, 9
assert_css 'table > tbody > tr > td.tableblock.halign-left.valign-top > p.tableblock', output, 9
cells.each_with_index {|row, rowi|
assert_css "table > tbody > tr:nth-child(#{rowi + 1}) > td", output, row.size
assert_css "table > tbody > tr:nth-child(#{rowi + 1}) > td > p", output, row.size
row.each_with_index {|cell, celli|
assert_xpath "(//tr)[#{rowi + 1}]/td[#{celli + 1}]/p[text()='#{cell}']", output, 1
}
}
end
test 'renders caption on simple psv table' do
input = <<-EOS
.Simple psv table
|=======
|A |B |C
|a |b |c
|1 |2 |3
|=======
EOS
output = render_embedded_string input
assert_xpath '/table/caption[@class="title"][text()="Table 1. Simple psv table"]', output, 1
assert_xpath '/table/caption/following-sibling::colgroup', output, 1
end
test 'only increments table counter for tables that have a title' do
input = <<-EOS
.First numbered table
|=======
|1 |2 |3
|=======
|=======
|4 |5 |6
|=======
.Second numbered table
|=======
|7 |8 |9
|=======
EOS
output = render_embedded_string input
assert_css 'table:root', output, 3
assert_xpath '(/table)[1]/caption', output, 1
assert_xpath '(/table)[1]/caption[text()="Table 1. First numbered table"]', output, 1
assert_xpath '(/table)[2]/caption', output, 0
assert_xpath '(/table)[3]/caption', output, 1
assert_xpath '(/table)[3]/caption[text()="Table 2. Second numbered table"]', output, 1
end
test 'renders explicit caption on simple psv table' do
input = <<-EOS
[caption="All the Data. "]
.Simple psv table
|=======
|A |B |C
|a |b |c
|1 |2 |3
|=======
EOS
output = render_embedded_string input
assert_xpath '/table/caption[@class="title"][text()="All the Data. Simple psv table"]', output, 1
assert_xpath '/table/caption/following-sibling::colgroup', output, 1
end
test 'ignores escaped separators' do
input = <<-EOS
|===
|A \\| here| a \\| there
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > tbody > tr', output, 1
assert_css 'table > tbody > tr > td', output, 2
assert_xpath '/table/tbody/tr/td[1]/p[text()="A | here"]', output, 1
assert_xpath '/table/tbody/tr/td[2]/p[text()="a | there"]', output, 1
end
test 'preserves escaped delimiters at the end of the line' do
input = <<-EOS
[%header,cols="1,1"]
|====
|A |B\\|
|A1 |B1\\|
|A2 |B2\\|
|====
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr:nth-child(1) > th', output, 2
assert_xpath '/table/thead/tr[1]/th[2][text()="B|"]', output, 1
assert_css 'table > tbody > tr', output, 2
assert_css 'table > tbody > tr:nth-child(1) > td', output, 2
assert_xpath '/table/tbody/tr[1]/td[2]/p[text()="B1|"]', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td', output, 2
assert_xpath '/table/tbody/tr[2]/td[2]/p[text()="B2|"]', output, 1
end
test 'should treat trailing pipe as an empty cell' do
input = <<-EOS
|====
|A1 |
|B1 |B2
|C1 |C2
|====
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > tbody > tr', output, 3
assert_xpath '/table/tbody/tr[1]/td', output, 2
assert_xpath '/table/tbody/tr[1]/td[1]/p[text()="A1"]', output, 1
assert_xpath '/table/tbody/tr[1]/td[2]/p', output, 0
assert_xpath '/table/tbody/tr[2]/td[1]/p[text()="B1"]', output, 1
end
test 'should auto recover with warning if missing leading separator on first cell' do
input = <<-EOS
|===
A | here| a | there
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 4
assert_css 'table > tbody > tr', output, 1
assert_css 'table > tbody > tr > td', output, 4
assert_xpath '/table/tbody/tr/td[1]/p[text()="A"]', output, 1
assert_xpath '/table/tbody/tr/td[2]/p[text()="here"]', output, 1
assert_xpath '/table/tbody/tr/td[3]/p[text()="a"]', output, 1
assert_xpath '/table/tbody/tr/td[4]/p[text()="there"]', output, 1
end
test 'performs normal substitutions on cell content' do
input = <<-EOS
:show_title: Cool new show
|===
|{show_title} |Coming soon...
|===
EOS
output = render_embedded_string input
assert_xpath '//tbody/tr/td[1]/p[text()="Cool new show"]', output, 1
assert_xpath %(//tbody/tr/td[2]/p[text()='Coming soon#{expand_entity 8230}#{expand_entity 8203}']), output, 1
end
test 'should only substitute specialchars for literal table cells' do
input = <<-EOS
|===
l|one
*two*
three
<four>
|===
EOS
output = render_embedded_string input
result = xmlnodes_at_xpath('/table//pre', output, 1)
assert_equal %(<pre>one\n*two*\nthree\n<four></pre>), result.to_s
end
test 'should preserving leading spaces but not leading endlines or trailing spaces in literal table cells' do
input = <<-EOS
[cols=2*]
|===
l|
one
two
three
| normal
|===
EOS
output = render_embedded_string input
result = xmlnodes_at_xpath('/table//pre', output, 1)
assert_equal %(<pre> one\n two\nthree</pre>), result.to_s
end
test 'should preserving leading spaces but not leading endlines or trailing spaces in verse table cells' do
input = <<-EOS
[cols=2*]
|===
v|
one
two
three
| normal
|===
EOS
output = render_embedded_string input
result = xmlnodes_at_xpath('/table//div[@class="verse"]', output, 1)
assert_equal %(<div class="verse"> one\n two\nthree</div>), result.to_s
end
test 'table and col width not assigned when autowidth option is specified' do
input = <<-EOS
[options="autowidth"]
|=======
|A |B |C
|a |b |c
|1 |2 |3
|=======
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table[style*="width"]', output, 0
assert_css 'table colgroup col', output, 3
assert_css 'table colgroup col[width]', output, 0
end
test 'explicit table width is used even when autowidth option is specified' do
input = <<-EOS
[%autowidth,width=75%]
|=======
|A |B |C
|a |b |c
|1 |2 |3
|=======
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table[style*="width"]', output, 1
assert_css 'table colgroup col', output, 3
assert_css 'table colgroup col[width]', output, 0
end
test 'first row sets number of columns when not specified' do
input = <<-EOS
|====
|first |second |third |fourth
|1 |2 |3
|4
|====
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 4
assert_css 'table > tbody > tr', output, 2
assert_css 'table > tbody > tr:nth-child(1) > td', output, 4
assert_css 'table > tbody > tr:nth-child(2) > td', output, 4
end
test 'colspec attribute using asterisk syntax sets number of columns' do
input = <<-EOS
[cols="3*"]
|===
|A |B |C |a |b |c |1 |2 |3
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > tbody > tr', output, 3
end
test 'table with explicit column count can have multiple rows on a single line' do
input = <<-EOS
[cols="3*"]
|===
|one |two
|1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 3
assert_css 'table > tbody > tr', output, 2
end
test 'table with explicit deprecated colspec syntax can have multiple rows on a single line' do
input = <<-EOS
[cols="3"]
|===
|one |two
|1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 3
assert_css 'table > tbody > tr', output, 2
end
test 'columns are added for empty records in colspec attribute' do
input = <<-EOS
[cols="<,"]
|===
|one |two
|1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > tbody > tr', output, 3
end
test 'cols attribute may include spaces' do
input = <<-EOS
[cols=" 1, 1 "]
|===
|one |two |1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'col[style="width: 50%;"]', output, 2
assert_css 'table > tbody > tr', output, 3
end
test 'blank cols attribute should be ignored' do
input = <<-EOS
[cols=" "]
|===
|one |two
|1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'col[style="width: 50%;"]', output, 2
assert_css 'table > tbody > tr', output, 3
end
test 'empty cols attribute should be ignored' do
input = <<-EOS
[cols=""]
|===
|one |two
|1 |2 |a |b
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'col[style="width: 50%;"]', output, 2
assert_css 'table > tbody > tr', output, 3
end
test 'table with header and footer' do
input = <<-EOS
[frame="topbot",options="header,footer"]
|===
|Item |Quantity
|Item 1 |1
|Item 2 |2
|Item 3 |3
|Total |6
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 1
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr > th', output, 2
assert_css 'table > tfoot', output, 1
assert_css 'table > tfoot > tr', output, 1
assert_css 'table > tfoot > tr > td', output, 2
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 3
end
test 'table with header and footer docbook' do
input = <<-EOS
.Table with header, body and footer
[frame="topbot",options="header,footer"]
|===
|Item |Quantity
|Item 1 |1
|Item 2 |2
|Item 3 |3
|Total |6
|===
EOS
output = render_embedded_string input, :backend => 'docbook'
assert_css 'table', output, 1
assert_css 'table[frame="topbot"]', output, 1
assert_css 'table > title', output, 1
assert_css 'table > tgroup', output, 1
assert_css 'table > tgroup[cols="2"]', output, 1
assert_css 'table > tgroup[cols="2"] > colspec', output, 2
assert_css 'table > tgroup[cols="2"] > colspec[colwidth="50*"]', output, 2
assert_css 'table > tgroup > thead', output, 1
assert_css 'table > tgroup > thead > row', output, 1
assert_css 'table > tgroup > thead > row > entry', output, 2
assert_css 'table > tgroup > thead > row > entry > simpara', output, 0
assert_css 'table > tgroup > tfoot', output, 1
assert_css 'table > tgroup > tfoot > row', output, 1
assert_css 'table > tgroup > tfoot > row > entry', output, 2
assert_css 'table > tgroup > tfoot > row > entry > simpara', output, 2
assert_css 'table > tgroup > tbody', output, 1
assert_css 'table > tgroup > tbody > row', output, 3
assert_css 'table > tgroup > tbody > row', output, 3
end
test 'table with landscape orientation in DocBook' do
['orientation=landscape', '%rotate'].each do |attrs|
input = <<-EOS
[#{attrs}]
|===
|Column A | Column B | Column C
|===
EOS
output = render_embedded_string input, :backend => 'docbook'
assert_css 'informaltable', output, 1
assert_css 'informaltable[orient="land"]', output, 1
end
end
test 'table with implicit header row' do
input = <<-EOS
|===
|Column 1 |Column 2
|Data A1
|Data B1
|Data A2
|Data B2
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 1
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr > th', output, 2
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 2
end
test 'table with implicit header row when other options set' do
input = <<-EOS
[%autowidth]
|===
|Column 1 |Column 2
|Data A1
|Data B1
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table[style*="width"]', output, 0
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 1
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr > th', output, 2
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 1
end
test 'no implicit header row if second line not blank' do
input = <<-EOS
|===
|Column 1 |Column 2
|Data A1
|Data B1
|Data A2
|Data B2
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 0
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 3
end
test 'no implicit header row if first line blank' do
input = <<-EOS
|===
|Column 1 |Column 2
|Data A1
|Data B1
|Data A2
|Data B2
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 0
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 3
end
test 'no implicit header row if noheader option is specified' do
input = <<-EOS
[%noheader]
|===
|Column 1 |Column 2
|Data A1
|Data B1
|Data A2
|Data B2
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 2
assert_css 'table > thead', output, 0
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 3
end
test 'styles not applied to header cells' do
input = <<-EOS
[cols="1h,1s,1e",options="header,footer"]
|====
|Name |Occupation| Website
|Octocat |Social coding| http://github.com
|Name |Occupation| Website
|====
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > thead > tr > th', output, 3
assert_css 'table > thead > tr > th > *', output, 0
assert_css 'table > tfoot > tr > th', output, 1
assert_css 'table > tfoot > tr > td', output, 2
assert_css 'table > tfoot > tr > td > p > strong', output, 1
assert_css 'table > tfoot > tr > td > p > em', output, 1
assert_css 'table > tbody > tr > th', output, 1
assert_css 'table > tbody > tr > td', output, 2
assert_css 'table > tbody > tr > td > p.header', output, 0
assert_css 'table > tbody > tr > td > p > strong', output, 1
assert_css 'table > tbody > tr > td > p > em > a', output, 1
end
test 'vertical table headers use th element instead of header class' do
input = <<-EOS
[cols="1h,1s,1e"]
|====
|Name |Occupation| Website
|Octocat |Social coding| http://github.com
|Name |Occupation| Website
|====
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > tbody > tr > th', output, 3
assert_css 'table > tbody > tr > td', output, 6
assert_css 'table > tbody > tr .header', output, 0
assert_css 'table > tbody > tr > td > p > strong', output, 3
assert_css 'table > tbody > tr > td > p > em', output, 3
assert_css 'table > tbody > tr > td > p > em > a', output, 1
end
test 'supports horizontal and vertical source data with blank lines and table header' do
input = <<-EOS
.Horizontal and vertical source data
[width="80%",cols="3,^2,^2,10",options="header"]
|===
|Date |Duration |Avg HR |Notes
|22-Aug-08 |10:24 | 157 |
Worked out MSHR (max sustainable heart rate) by going hard
for this interval.
|22-Aug-08 |23:03 | 152 |
Back-to-back with previous interval.
|24-Aug-08 |40:00 | 145 |
Moderately hard interspersed with 3x 3min intervals (2 min
hard + 1 min really hard taking the HR up to 160).
I am getting in shape!
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table[style*="width: 80%"]', output, 1
assert_xpath '/table/caption[@class="title"][text()="Table 1. Horizontal and vertical source data"]', output, 1
assert_css 'table > colgroup > col', output, 4
assert_css 'table > colgroup > col:nth-child(1)[@style*="width: 17.647%"]', output, 1
assert_css 'table > colgroup > col:nth-child(2)[@style*="width: 11.7647%"]', output, 1
assert_css 'table > colgroup > col:nth-child(3)[@style*="width: 11.7647%"]', output, 1
assert_css 'table > colgroup > col:nth-child(4)[@style*="width: 58.8236%"]', output, 1
assert_css 'table > thead', output, 1
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr > th', output, 4
assert_css 'table > tbody > tr', output, 3
assert_css 'table > tbody > tr:nth-child(1) > td', output, 4
assert_css 'table > tbody > tr:nth-child(2) > td', output, 4
assert_css 'table > tbody > tr:nth-child(3) > td', output, 4
assert_xpath "/table/tbody/tr[1]/td[4]/p[text()='Worked out MSHR (max sustainable heart rate) by going hard\nfor this interval.']", output, 1
assert_css 'table > tbody > tr:nth-child(3) > td:nth-child(4) > p', output, 2
assert_xpath '/table/tbody/tr[3]/td[4]/p[2][text()="I am getting in shape!"]', output, 1
end
test 'percentages as column widths' do
input = <<-EOS
[cols="<.^10%,<90%"]
|===
|column A |column B
|===
EOS
output = render_embedded_string input
assert_xpath '/table/colgroup/col', output, 2
assert_xpath '(/table/colgroup/col)[1][@style="width: 10%;"]', output, 1
assert_xpath '(/table/colgroup/col)[2][@style="width: 90%;"]', output, 1
end
test 'spans, alignments and styles' do
input = <<-EOS
[cols="e,m,^,>s",width="25%"]
|===
|1 >s|2 |3 |4
^|5 2.2+^.^|6 .3+<.>m|7
^|8
d|9 2+>|10
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col[style*="width: 25%"]', output, 4
assert_css 'table > tbody > tr', output, 4
assert_css 'table > tbody > tr > td', output, 10
assert_css 'table > tbody > tr:nth-child(1) > td', output, 4
assert_css 'table > tbody > tr:nth-child(2) > td', output, 3
assert_css 'table > tbody > tr:nth-child(3) > td', output, 1
assert_css 'table > tbody > tr:nth-child(4) > td', output, 2
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(1).halign-left.valign-top p em', output, 1
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(2).halign-right.valign-top p strong', output, 1
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(3).halign-center.valign-top p', output, 1
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(3).halign-center.valign-top p *', output, 0
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(4).halign-right.valign-top p strong', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td:nth-child(1).halign-center.valign-top p em', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td:nth-child(2).halign-center.valign-middle[colspan="2"][rowspan="2"] p code', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td:nth-child(3).halign-left.valign-bottom[rowspan="3"] p code', output, 1
assert_css 'table > tbody > tr:nth-child(3) > td:nth-child(1).halign-center.valign-top p em', output, 1
assert_css 'table > tbody > tr:nth-child(4) > td:nth-child(1).halign-left.valign-top p', output, 1
assert_css 'table > tbody > tr:nth-child(4) > td:nth-child(1).halign-left.valign-top p em', output, 0
assert_css 'table > tbody > tr:nth-child(4) > td:nth-child(2).halign-right.valign-top[colspan="2"] p code', output, 1
end
test 'sets up columns correctly if first row has cell that spans columns' do
input = <<-EOS
|===
2+^|AAA |CCC
|AAA |BBB |CCC
|AAA |BBB |CCC
|===
EOS
output = render_embedded_string input
assert_css 'table > tbody > tr:nth-child(1) > td', output, 2
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(1)[colspan="2"]', output, 1
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(2):not([colspan])', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td:not([colspan])', output, 3
assert_css 'table > tbody > tr:nth-child(3) > td:not([colspan])', output, 3
end
test 'supports repeating cells' do
input = <<-EOS
|===
3*|A
|1 3*|2
|b |c
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 3
assert_css 'table > tbody > tr', output, 3
assert_css 'table > tbody > tr:nth-child(1) > td', output, 3
assert_css 'table > tbody > tr:nth-child(2) > td', output, 3
assert_css 'table > tbody > tr:nth-child(3) > td', output, 3
assert_xpath '/table/tbody/tr[1]/td[1]/p[text()="A"]', output, 1
assert_xpath '/table/tbody/tr[1]/td[2]/p[text()="A"]', output, 1
assert_xpath '/table/tbody/tr[1]/td[3]/p[text()="A"]', output, 1
assert_xpath '/table/tbody/tr[2]/td[1]/p[text()="1"]', output, 1
assert_xpath '/table/tbody/tr[2]/td[2]/p[text()="2"]', output, 1
assert_xpath '/table/tbody/tr[2]/td[3]/p[text()="2"]', output, 1
assert_xpath '/table/tbody/tr[3]/td[1]/p[text()="2"]', output, 1
assert_xpath '/table/tbody/tr[3]/td[2]/p[text()="b"]', output, 1
assert_xpath '/table/tbody/tr[3]/td[3]/p[text()="c"]', output, 1
end
test 'calculates colnames correctly when using implicit column count and single cell with colspan' do
input = <<-EOS
|===
2+|Two Columns
|One Column |One Column
|===
EOS
output = render_embedded_string input, :backend => 'docbook'
assert_xpath '//colspec', output, 2
assert_xpath '(//colspec)[1][@colname="col_1"]', output, 1
assert_xpath '(//colspec)[2][@colname="col_2"]', output, 1
assert_xpath '//row', output, 2
assert_xpath '(//row)[1]/entry', output, 1
assert_xpath '(//row)[1]/entry[@namest="col_1"][@nameend="col_2"]', output, 1
end
test 'calculates colnames correctly when using implicit column count and cells with mixed colspans' do
input = <<-EOS
|===
2+|Two Columns | One Column
|One Column |One Column |One Column
|===
EOS
output = render_embedded_string input, :backend => 'docbook'
assert_xpath '//colspec', output, 3
assert_xpath '(//colspec)[1][@colname="col_1"]', output, 1
assert_xpath '(//colspec)[2][@colname="col_2"]', output, 1
assert_xpath '(//colspec)[3][@colname="col_3"]', output, 1
assert_xpath '//row', output, 2
assert_xpath '(//row)[1]/entry', output, 2
assert_xpath '(//row)[1]/entry[@namest="col_1"][@nameend="col_2"]', output, 1
assert_xpath '(//row)[2]/entry[@namest]', output, 0
assert_xpath '(//row)[2]/entry[@nameend]', output, 0
end
test 'assigns unique column names for table with implicit column count and colspans in first row' do
input = <<-EOS
|====
| 2+| Node 0 2+| Node 1
| Host processes | Core 0 | Core 1 | Core 4 | Core 5
| Guest processes | Core 2 | Core 3 | Core 6 | Core 7
|====
EOS
output = render_embedded_string input, :backend => 'docbook'
assert_xpath '//colspec', output, 5
(1..5).each do |n|
assert_xpath %((//colspec)[#{n}][@colname="col_#{n}"]), output, 1
end
assert_xpath '(//row)[1]/entry', output, 3
assert_xpath '((//row)[1]/entry)[1][@namest]', output, 0
assert_xpath '((//row)[1]/entry)[1][@namend]', output, 0
assert_xpath '((//row)[1]/entry)[2][@namest="col_2"][@nameend="col_3"]', output, 1
assert_xpath '((//row)[1]/entry)[3][@namest="col_4"][@nameend="col_5"]', output, 1
end
test 'ignores cell with colspan that exceeds colspec' do
input = <<-EOS
[cols="1,1"]
|===
3+|A
|B
a|C
more C
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table *', output, 0
end
test 'paragraph, verse and literal content' do
input = <<-EOS
[cols=",^v,^l",options="header"]
|===
|Paragraphs |Verse |Literal
3*|The discussion about what is good,
what is beautiful, what is noble,
what is pure, and what is true
could always go on.
Why is that important?
Why would I like to do that?
Because that's the only conversation worth having.
And whether it goes on or not after I die, I don't know.
But, I do know that it is the conversation I want to have while I am still alive.
Which means that to me the offer of certainty,
the offer of complete security,
the offer of an impermeable faith that can't give way
is an offer of something not worth having.
I want to live my life taking the risk all the time
that I don't know anything like enough yet...
that I haven't understood enough...
that I can't know enough...
that I am always hungrily operating on the margins
of a potentially great harvest of future knowledge and wisdom.
I wouldn't have it any other way.
|===
EOS
output = render_embedded_string input
assert_css 'table', output, 1
assert_css 'table > colgroup > col', output, 3
assert_css 'table > thead', output, 1
assert_css 'table > thead > tr', output, 1
assert_css 'table > thead > tr > th', output, 3
assert_css 'table > tbody', output, 1
assert_css 'table > tbody > tr', output, 1
assert_css 'table > tbody > tr > td', output, 3
assert_css 'table > tbody > tr > td:nth-child(1).halign-left.valign-top > p.tableblock', output, 7
assert_css 'table > tbody > tr > td:nth-child(2).halign-center.valign-top > div.verse', output, 1
verse = xmlnodes_at_css 'table > tbody > tr > td:nth-child(2).halign-center.valign-top > div.verse', output, 1
assert_equal 26, verse.text.lines.entries.size
assert_css 'table > tbody > tr > td:nth-child(3).halign-center.valign-top > div.literal > pre', output, 1
literal = xmlnodes_at_css 'table > tbody > tr > td:nth-child(3).halign-center.valign-top > div.literal > pre', output, 1
assert_equal 26, literal.text.lines.entries.size
end
test 'should strip trailing endline when splitting paragraphs' do
input = <<-EOS
|===
|first wrapped
paragraph
second paragraph
third paragraph
|===
EOS
result = render_embedded_string input
assert_xpath %((//p[@class="tableblock"])[1][text()="first wrapped\nparagraph"]), result, 1
assert_xpath %((//p[@class="tableblock"])[2][text()="second paragraph"]), result, 1
assert_xpath %((//p[@class="tableblock"])[3][text()="third paragraph"]), result, 1
end
test 'basic asciidoc cell' do
input = <<-EOS
|===
a|--
NOTE: content
content
--
|===
EOS
result = render_embedded_string input
assert_css 'table.tableblock', result, 1
assert_css 'table.tableblock td.tableblock', result, 1
assert_css 'table.tableblock td.tableblock .openblock', result, 1
assert_css 'table.tableblock td.tableblock .openblock .admonitionblock', result, 1
assert_css 'table.tableblock td.tableblock .openblock .paragraph', result, 1
end
test 'doctype can be set in asciidoc table cell' do
input = <<-EOS
|===
a|
:doctype: inline
content
|===
EOS
result = render_embedded_string input
assert_css 'table.tableblock', result, 1
assert_css 'table.tableblock .paragraph', result, 0
end
test 'compat mode can be activated in asciidoc table cell' do
input = <<-EOS
|===
a|
:compat-mode:
'italic'
|===
EOS
result = render_embedded_string input
assert_css 'table.tableblock td em', result, 1
end
test 'asciidoc content' do
input = <<-EOS
[cols="1e,1,5a",frame="topbot",options="header"]
|===
|Name |Backends |Description
|badges |xhtml11, html5 |
Link badges ('XHTML 1.1' and 'CSS') in document footers.
NOTE: The path names of images, icons and scripts are relative path
names to the output document not the source document.
|[[X97]] docinfo, docinfo1, docinfo2 |All backends |
These three attributes control which document information
files will be included in the the header of the output file:
docinfo:: Include `<filename>-docinfo.<ext>`
docinfo1:: Include `docinfo.<ext>`
docinfo2:: Include `docinfo.<ext>` and `<filename>-docinfo.<ext>`
Where `<filename>` is the file name (sans extension) of the AsciiDoc
input file and `<ext>` is `.html` for HTML outputs or `.xml` for
DocBook outputs. If the input file is the standard input then the
output file name is used.
|===
EOS
doc = document_from_string input
table = doc.blocks.first
assert !table.nil?
tbody = table.rows.body
assert_equal 2, tbody.size
body_cell_1_3 = tbody[0][2]
assert !body_cell_1_3.inner_document.nil?
assert body_cell_1_3.inner_document.nested?
assert_equal doc, body_cell_1_3.inner_document.parent_document
assert_equal doc.converter, body_cell_1_3.inner_document.converter
output = doc.render
assert_css 'table > tbody > tr', output, 2
assert_css 'table > tbody > tr:nth-child(1) > td:nth-child(3) div.admonitionblock', output, 1
assert_css 'table > tbody > tr:nth-child(2) > td:nth-child(3) div.dlist', output, 1
end
test 'preprocessor directive on first line of an AsciiDoc table cell should be processed' do
input = <<-EOS
|===
a|include::fixtures/include-file.asciidoc[]
|===
EOS
output = render_embedded_string input, :safe => :safe, :base_dir => File.dirname(__FILE__)
assert_match(/included content/, output)
end
test 'cross reference link in an AsciiDoc table cell should resolve to reference in main document' do
input = <<-EOS
== Some
|===
a|See <<_more>>
|===
== More
content
EOS
result = render_string input
assert_xpath '//a[@href="#_more"]', result, 1
assert_xpath '//a[@href="#_more"][text()="More"]', result, 1
end