1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::PDF::Converter - Section' do
it 'should apply font size according to section level' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
== Level 1
=== Level 2
section content
== Back To Level 1
EOS
expected_text = [
['Document Title', 27],
['Level 1', 22],
['Level 2', 18],
['section content', 10.5],
['Back To Level 1', 22],
]
(expect pdf.text.map {|it| it.values_at :string, :font_size }).to eql expected_text
end
it 'should render section titles in bold by default' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
== Level 1
=== Level 2
section content
== Back To Level 1
EOS
expected_text = [
['Document Title', 'NotoSerif-Bold'],
['Level 1', 'NotoSerif-Bold'],
['Level 2', 'NotoSerif-Bold'],
['section content', 'NotoSerif'],
['Back To Level 1', 'NotoSerif-Bold'],
]
(expect pdf.text.map {|it| it.values_at :string, :font_name }).to eql expected_text
end
it 'should apply text formatting in section title' do
pdf = to_pdf <<~'EOS', analyze: true
== Section Title with Some _Oomph_
text
EOS
(expect pdf.lines[0]).to eql 'Section Title with Some Oomph'
text_with_emphasis = pdf.find_unique_text 'Oomph'
(expect text_with_emphasis).not_to be_nil
(expect text_with_emphasis[:font_name]).to end_with 'Italic'
end
it 'should ignore hard line break at end of section title' do
pdf = to_pdf <<~'EOS', analyze: true
== Reference Title
reference text
== Section Title +
section text
EOS
expected_gap = ((pdf.find_unique_text 'Reference Title')[:y] - (pdf.find_unique_text 'reference text')[:y]).round 4
actual_gap = ((pdf.find_unique_text 'Section Title')[:y] - (pdf.find_unique_text 'section text')[:y]).round 4
(expect actual_gap).to eql expected_gap
end
it 'should allow theme to set font family for headings' do
pdf_theme = {
heading_font_family: 'Helvetica',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
= Document Title
== Helvetica-Bold
Noto Serif
EOS
heading_text = pdf.find_unique_text 'Helvetica-Bold'
(expect heading_text[:font_name]).to eql 'Helvetica-Bold'
body_text = pdf.find_unique_text 'Noto Serif'
(expect body_text[:font_name]).to eql 'NotoSerif'
end
it 'should allow theme to set font family for headings per heading level' do
pdf_theme = {
heading_font_family: 'Helvetica',
heading_h3_font_family: 'Times-Roman',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
= Document Title
== Helvetica-Bold
=== Times-Bold
EOS
h2_text = pdf.find_unique_text 'Helvetica-Bold'
(expect h2_text[:font_name]).to eql 'Helvetica-Bold'
h3_text = pdf.find_unique_text 'Times-Bold'
(expect h3_text[:font_name]).to eql 'Times-Bold'
end
it 'should allow theme to set font kerning for headings' do
input = <<~'EOS'
== Wave__|__
content
EOS
pdf_theme = { heading_text_transform: 'uppercase' }
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
with_kerning_position = (pdf.find_unique_text '|')[:x]
pdf_theme[:heading_font_kerning] = 'none'
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
without_kerning_position = (pdf.find_unique_text '|')[:x]
(expect with_kerning_position).to be < without_kerning_position
end
it 'should allow theme to set font kerning per heading level' do
pdf_theme = {
heading_text_transform: 'uppercase',
heading_h2_font_size: 22,
heading_h3_font_size: 22,
heading_h3_font_kerning: 'none',
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
== Wave__|__
=== Wave__|__
EOS
kerning_positions = (pdf.find_text '|').map {|it| it[:x] }
(expect kerning_positions[0]).to be < kerning_positions[1]
end
it 'should add text formatting styles to styles defined in theme' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_font_style: 'bold' }, analyze: true
== Get Started _Quickly_
EOS
text = pdf.text
(expect text).to have_size 2
(expect text[0][:font_name]).to eql 'NotoSerif-Bold'
(expect text[1][:font_name]).to eql 'NotoSerif-BoldItalic'
end
it 'should add text formatting styles to styles defined in theme for specific level' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_font_style: nil, heading_h2_font_style: 'bold' }, analyze: true
== Get Started _Quickly_
EOS
text = pdf.text
(expect text).to have_size 2
(expect text[0][:font_name]).to eql 'NotoSerif-Bold'
(expect text[1][:font_name]).to eql 'NotoSerif-BoldItalic'
end
it 'should allow theme to align all section titles' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_align: 'center' }, analyze: true
== Drill
content
=== Down
content
==== Deep
EOS
midpoint = pdf.pages[0][:size][0] * 0.5
content_left_margin = (pdf.find_text 'content')[0][:x]
drill_text = pdf.find_unique_text 'Drill'
down_text = pdf.find_unique_text 'Down'
deep_text = pdf.find_unique_text 'Deep'
(expect drill_text[:x]).to be > content_left_margin
(expect down_text[:x]).to be > content_left_margin
(expect deep_text[:x]).to be > content_left_margin
(expect (drill_text[:x] + drill_text[:width] * 0.5).round 2).to eql midpoint
(expect (down_text[:x] + down_text[:width] * 0.5).round 2).to eql midpoint
(expect (deep_text[:x] + deep_text[:width] * 0.5).round 2).to eql midpoint
end
it 'should allow theme to align section title for specific level' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_h1_text_align: 'center' }, analyze: true
= Document Title
:notitle:
:doctype: book
= Part A
== First Chapter
content
= Part B
== Last Chapter
content
EOS
midpoint = pdf.pages[0][:size][0] * 0.5
left_content_margin = (pdf.find_text 'content')[0][:x]
part_a_text = pdf.find_unique_text 'Part A'
first_chapter_text = pdf.find_unique_text 'First Chapter'
(expect part_a_text[:x]).to be > left_content_margin
(expect (part_a_text[:x] + part_a_text[:width] * 0.5).round 2).to eql midpoint
(expect first_chapter_text[:x]).to eql left_content_margin
end
it 'should allow theme to control line height per section level' do
pdf_theme = {
heading_line_height: 1,
heading_h2_line_height: 2,
heading_h2_font_size: 20,
heading_h3_font_size: 20,
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
before
== Drill
content
=== Down
content
EOS
drill_title_text = pdf.find_unique_text 'Drill'
down_title_text = pdf.find_unique_text 'Down'
drill_section_text, down_section_text = pdf.find_text 'content'
(expect drill_title_text[:y] - drill_section_text[:y]).to eql (down_title_text[:y] - down_section_text[:y] + down_title_text[:font_size] * 0.5)
end
it 'should allow theme to add borders to specific heading levels' do
pdf_theme = {
heading_h2_border_width: [2, 0],
heading_h2_border_color: 'AA0000',
heading_h3_border_width: [0, 0, 1, 0],
heading_h3_border_style: 'dashed',
heading_h3_border_color: 'DDDDDD',
}
input = <<~'EOS'
= Document Title
== Section Level 1
content
=== Section Level 2
content
EOS
lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
(expect lines).to have_size 3
(expect lines[0][:color]).to eql 'AA0000'
(expect lines[0][:width]).to eql 2
(expect lines[0][:style]).to eql :solid
(expect lines[1][:color]).to eql 'AA0000'
(expect lines[1][:width]).to eql 2
(expect lines[1][:style]).to eql :solid
(expect lines[2][:color]).to eql 'DDDDDD'
(expect lines[2][:width]).to eql 1
(expect lines[2][:style]).to eql :dashed
lines.each do |line|
(expect line[:from][:y]).to eql line[:to][:y]
end
(expect lines[0][:from][:y]).to be > (pdf.find_unique_text 'Section Level 1')[:y]
(expect lines[1][:from][:y]).to be < (pdf.find_unique_text 'Section Level 1')[:y]
(expect lines[2][:from][:y]).to be < (pdf.find_unique_text 'Section Level 2')[:y]
end
it 'should insert padding around heading with border' do
pdf_theme = {
heading_h2_border_width: [0, 0, 1, 0],
heading_h2_border_color: 'EEEEEE',
}
input = <<~'EOS'
== Section Title
content
EOS
pdf_a_lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines
pdf_b_lines = (to_pdf input, pdf_theme: (pdf_theme.merge heading_h2_padding: [0, 0, 5, 10]), analyze: :line).lines
pdf_b_text = (to_pdf input, pdf_theme: (pdf_theme.merge heading_h2_padding: [0, 0, 5, 10]), analyze: true).text
(expect pdf_a_lines).to have_size 1
(expect pdf_b_lines).to have_size 1
(expect pdf_b_lines[0][:from][:y]).to eql (pdf_a_lines[0][:from][:y] - 5)
(expect pdf_b_text[0][:x]).to eql 58.24
end
it 'should insert top padding value between text and top border' do
pdf_theme = {
heading_h2_border_width: [1, 0, 0, 0],
heading_h2_border_color: 'EEEEEE',
}
input = <<~'EOS'
== Section Title
content
EOS
pdf_a_lines = (to_pdf input, pdf_theme: pdf_theme, analyze: :line).lines
pdf_a = to_pdf input, pdf_theme: pdf_theme, analyze: true
pdf_b_lines = (to_pdf input, pdf_theme: (pdf_theme.merge heading_h2_padding: [10, 0, 0]), analyze: :line).lines
pdf_b = to_pdf input, pdf_theme: (pdf_theme.merge heading_h2_padding: [10, 0, 0]), analyze: true
(expect pdf_a_lines).to have_size 1
(expect pdf_b_lines).to have_size 1
(expect pdf_b_lines[0][:from][:y]).to eql pdf_a_lines[0][:from][:y]
(expect pdf_b.text[0][:y]).to eql (pdf_a.text[0][:y] - 10)
end
it 'should draw border around heading if it is advanced to next page' do
pdf_theme = {
heading_h2_border_width: [0.5, 0],
heading_h2_border_color: '0000FF',
}
pdf = with_content_spacer 10, 700 do |spacer_path|
to_pdf <<~EOS, pdf_theme: pdf_theme, analyze: :line
image::#{spacer_path}[]
== Pushed to Next Page
content
EOS
end
heading_lines = pdf.lines.select {|it| it[:color] == '0000FF' }
(expect heading_lines).to have_size 2
(expect heading_lines.map {|it| it[:page_number] }.uniq).to eql [2]
(expect heading_lines[0][:from][:y]).to eql 805.89
end
it 'should not partition section title by default' do
pdf = to_pdf <<~'EOS', analyze: true
== Title: Subtitle
EOS
lines = pdf.lines
(expect lines).to have_size 1
(expect lines[0]).to eql 'Title: Subtitle'
end
it 'should partition section title if title-separator document attribute is set and present in title' do
pdf = to_pdf <<~'EOS', analyze: true
:title-separator: :
== The Title: The Subtitle
EOS
lines = pdf.lines
(expect lines).to have_size 2
(expect lines).to eql ['The Title', 'The Subtitle']
title_text = (pdf.find_text 'The Title')[0]
subtitle_text = (pdf.find_text 'The Subtitle')[0]
(expect subtitle_text[:font_size]).to be < title_text[:font_size]
(expect subtitle_text[:font_color]).to eql '999999'
(expect subtitle_text[:font_name]).to eql 'NotoSerif-Italic'
end
it 'should partition section title if separator block attribute is set and present in title' do
pdf = to_pdf <<~'EOS', analyze: true
[separator=:]
== The Title: The Subtitle
EOS
lines = pdf.lines
(expect lines).to have_size 2
(expect lines).to eql ['The Title', 'The Subtitle']
title_text = (pdf.find_text 'The Title')[0]
subtitle_text = (pdf.find_text 'The Subtitle')[0]
(expect subtitle_text[:font_size]).to be < title_text[:font_size]
(expect subtitle_text[:font_color]).to eql '999999'
(expect subtitle_text[:font_name]).to eql 'NotoSerif-Italic'
end
it 'should partition title on last occurrence of separator' do
pdf = to_pdf <<~'EOS', analyze: true
:title-separator: :
== Foo: Bar: Baz
EOS
lines = pdf.lines
(expect lines).to have_size 2
(expect lines).to eql ['Foo: Bar', 'Baz']
end
it 'should not partition section title if separator is not followed by space' do
pdf = to_pdf <<~'EOS', analyze: true
[separator=:]
== Title:Subtitle
EOS
lines = pdf.lines
(expect lines).to have_size 1
(expect lines[0]).to eql 'Title:Subtitle'
end
it 'should not partition section title if separator block attribute is empty' do
pdf = to_pdf <<~'EOS', analyze: true
:title-separator: :
[separator=]
== Title: Subtitle
EOS
lines = pdf.lines
(expect lines).to have_size 1
(expect lines[0]).to eql 'Title: Subtitle'
end
it 'should not add top margin to section title if it is positioned at the top of the page' do
pdf = to_pdf '== Section Title', analyze: true
y1 = (pdf.find_text 'Section Title')[0][:y]
pdf = to_pdf '== Section Title', pdf_theme: { heading_margin_top: 50 }, analyze: true
y2 = (pdf.find_text 'Section Title')[0][:y]
(expect y1).to eql y2
end
it 'should add page top margin to section title if it is positioned at the top of the page' do
pdf = to_pdf '== Section Title', analyze: true
y1 = (pdf.find_text 'Section Title')[0][:y]
pdf = to_pdf '== Section Title', pdf_theme: { heading_margin_page_top: 50 }, analyze: true
y2 = (pdf.find_text 'Section Title')[0][:y]
(expect y1).to be > y2
end
it 'should allow theme to specify different top margin for part titles' do
pdf_theme = {
heading_h1_font_size: 20,
heading_h1_margin_page_top: 100,
heading_h2_font_size: 20,
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
= Document Title
:doctype: book
= Part A
== First Chapter
content
= Part B
== Last Chapter
content
EOS
part_a_text = pdf.find_unique_text 'Part A'
first_chapter_text = pdf.find_unique_text 'First Chapter'
(expect part_a_text[:y]).to eql first_chapter_text[:y] - 100.0
end
it 'should allow theme to specify different margin top and bottom values for a given section level' do
pdf_theme = {
heading_h2_font_size: 28,
heading_h2_margin_top: 10,
heading_h2_margin_bottom: 10,
heading_h3_font_size: 28,
heading_h3_margin_top: 5,
heading_h3_margin_bottom: 5,
}
pdf = to_pdf <<~'EOS', pdf_theme: pdf_theme, analyze: true
preamble
== Level 1
content for level 1
=== Level 2
content for level 2
EOS
l1_title_text = pdf.find_unique_text 'Level 1'
l1_content_text = pdf.find_unique_text 'content for level 1'
l2_title_text = pdf.find_unique_text 'Level 2'
l2_content_text = pdf.find_unique_text 'content for level 2'
l1_gap = l1_title_text[:y] - l1_content_text[:y]
l2_gap = l2_title_text[:y] - l2_content_text[:y]
(expect l1_gap - 5).to eql l2_gap
end
it 'should uppercase section titles if text_transform key in theme is set to uppercase' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
= Document Title
== Beginning
== Middle
== End
EOS
pdf.text.each do |text|
(expect text[:string]).to eql text[:string].upcase
end
end
it 'should not alter character references when text transform is uppercase' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
== <Tom & Jerry>
EOS
(expect pdf.text[0][:string]).to eql '<TOM & JERRY>'
end
it 'should underline section titles if text_decoration key in theme is set to underline' do
pdf_theme = { heading_text_decoration: 'underline' }
input = '== Section Title'
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line
lines = pdf.lines
(expect lines).to have_size 1
underline = lines[0]
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
text = pdf.text
(expect text).to have_size 1
underlined_text = text[0]
(expect underline[:from][:x]).to eql underlined_text[:x]
(expect underline[:from][:y]).to be_within(2).of(underlined_text[:y])
(expect underlined_text[:font_color]).to eql underline[:color]
(expect underline[:to][:x] - underline[:from][:x]).to be_within(2).of 140
end
it 'should be able to adjust color and width of text decoration' do
pdf_theme = { heading_text_decoration: 'underline', heading_text_decoration_color: 'cccccc', heading_text_decoration_width: 0.5 }
input = '== Section Title'
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line
lines = pdf.lines
(expect lines).to have_size 1
underline = lines[0]
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
text = pdf.text
(expect text).to have_size 1
underlined_text = text[0]
(expect underlined_text[:font_color]).not_to eql underline[:color]
(expect underline[:color]).to eql 'CCCCCC'
(expect underline[:width]).to eql 0.5
end
it 'should be able to set text decoration properties per heading level' do
pdf_theme = { heading_h3_text_decoration: 'underline', heading_h3_text_decoration_color: 'cccccc', heading_h3_text_decoration_width: 0.5 }
input = <<~'EOS'
== Plain Title
=== Decorated Title
EOS
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: :line
lines = pdf.lines
(expect lines).to have_size 1
underline = lines[0]
pdf = to_pdf input, pdf_theme: pdf_theme, analyze: true
underlined_text = pdf.find_unique_text 'Decorated Title'
(expect underlined_text[:font_color]).not_to eql underline[:color]
(expect underline[:color]).to eql 'CCCCCC'
(expect underline[:width]).to eql 0.5
(expect underline[:from][:y]).to be < underlined_text[:y]
(expect underline[:from][:y]).to be_within(2).of(underlined_text[:y])
end
it 'should support hexadecimal character reference in section title' do
pdf = to_pdf <<~'EOS', analyze: true
== µServices
EOS
(expect pdf.text[0][:string]).to eql %(\u00b5Services)
end
it 'should not alter HTML tags when text transform is uppercase' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
== _Quick_ Start
EOS
(expect pdf.text[0][:string]).to eql 'QUICK'
end
it 'should transform non-ASCII letters when text transform is uppercase' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
== über étudier
EOS
(expect pdf.lines[0]).to eql 'ÜBER ÉTUDIER'
end
it 'should ignore letters in hexadecimal character reference in section title when transforming to uppercase' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
== µServices
EOS
(expect pdf.text[0][:string]).to eql %(\u00b5SERVICES)
end
it 'should not apply text transform if value of text_transform key is none' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_text_transform: 'uppercase', heading_h3_text_transform: 'none' }, analyze: true
== Uppercase
=== Title Case
EOS
(expect pdf.find_text 'UPPERCASE').to have_size 1
(expect pdf.find_text 'Title Case').to have_size 1
end
it 'should not crash if menu macro is used in section title' do
pdf = to_pdf <<~'EOS', analyze: true
:experimental:
== The menu:File[] menu
Describe the file menu.
EOS
(expect pdf.lines[0]).to eql 'The File menu'
end
it 'should not crash if kbd macro is used in section title' do
pdf = to_pdf <<~'EOS', analyze: true
:experimental:
== The magic of kbd:[Ctrl,p]
Describe the magic of paste.
EOS
(expect pdf.lines[0]).to eql %(The magic of Ctrl \u202f+\u202f p)
end
it 'should not crash if btn macro is used in section title' do
pdf = to_pdf <<~'EOS', analyze: true
:experimental:
== The btn:[Save] button
Describe the save button.
EOS
(expect pdf.lines[0]).to eql %(The [\u2009Save\u2009] button)
end
it 'should add part signifier and part number to part if part numbering is enabled' do
pdf = to_pdf <<~'EOS', analyze: true
= Book Title
:doctype: book
:sectnums:
:partnums:
= A
== Foo
= B
== Bar
EOS
titles = (pdf.find_text font_size: 27).map {|it| it[:string] }.reject {|it| it == 'Book Title' }
(expect titles).to eql ['Part I: A', 'Part II: B']
end
it 'should use specified part signifier if part numbering is enabled and part-signifier attribute is set' do
pdf = to_pdf <<~'EOS', analyze: true
= Book Title
:doctype: book
:sectnums:
:partnums:
:part-signifier: P
= A
== Foo
= B
== Bar
EOS
titles = (pdf.find_text font_size: 27).map {|it| it[:string] }.reject {|it| it == 'Book Title' }
(expect titles).to eql ['P I: A', 'P II: B']
end
it 'should not add part signifier to part title if partnums is enabled and part-signifier attribute is unset or empty' do
%w(!part-signifier part-signifier).each do |attr_name|
pdf = to_pdf <<~EOS, analyze: true
= Book Title
:doctype: book
:sectnums:
:partnums:
:#{attr_name}:
= A
== The Beginning
= Z
== The End
EOS
part_titles = (pdf.find_text font_size: 27).map {|it| it[:string] }.reject {|it| it == 'Book Title' }
(expect part_titles).to eql ['I: A', 'II: Z']
end
end
it 'should add default chapter signifier to chapter title if section numbering is enabled' do
pdf = to_pdf <<~'EOS', analyze: true
= Book Title
:doctype: book
:sectnums:
== The Beginning
== The End
EOS
chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] }
(expect chapter_titles).to eql ['Chapter 1. The Beginning', 'Chapter 2. The End']
end
it 'should add chapter signifier to chapter title if section numbering is enabled and chapter-signifier attribute is set' do
{ 'chapter-signifier' => 'Ch' }.each do |attr_name, attr_val|
pdf = to_pdf <<~EOS, analyze: true
= Book Title
:doctype: book
:sectnums:
:#{attr_name}: #{attr_val}
== The Beginning
== The End
EOS
chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] }
(expect chapter_titles).to eql ['Ch 1. The Beginning', 'Ch 2. The End']
end
end
it 'should add chapter signifier to chapter title if section numbering and toc are enabled and chapter-signifier attribute is set' do
{ 'chapter-signifier' => 'Ch' }.each do |attr_name, attr_val|
pdf = to_pdf <<~EOS, analyze: true
= Book Title
:doctype: book
:sectnums:
:toc:
:#{attr_name}: #{attr_val}
== The Beginning
== The End
EOS
chapter_titles = (pdf.find_text font_size: 22).select {|it| it[:page_number] >= 3 }.map {|it| it[:string] }
(expect chapter_titles).to eql ['Ch 1. The Beginning', 'Ch 2. The End']
end
end
it 'should not add chapter signifier to chapter title if sectnums is enabled and chapter-signifier attribute is unset or empty' do
%w(!chapter-signifier chapter-signifier).each do |attr_name|
pdf = to_pdf <<~EOS, analyze: true
= Book Title
:doctype: book
:sectnums:
:#{attr_name}:
== The Beginning
== The End
EOS
chapter_titles = (pdf.find_text font_size: 22).map {|it| it[:string] }
(expect chapter_titles).to eql ['1. The Beginning', '2. The End']
end
end
it 'should number sections in article when sectnums attribute is set' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
:sectnums:
== Beginning
== Middle
=== Detail
=== More Detail
== End
EOS
(expect pdf.find_unique_text '1. Beginning', font_size: 22).not_to be_nil
(expect pdf.find_unique_text '2.1. Detail', font_size: 18).not_to be_nil
end
it 'should number subsection of appendix based on appendix letter' do
pdf = to_pdf <<~'EOS', analyze: true
= Book Title
:doctype: book
:sectnums:
== Chapter
content
[appendix]
= Appendix
content
=== Appendix Subsection
content
EOS
(expect pdf.lines).to include 'A.1. Appendix Subsection'
end
it 'should treat level-0 special section as chapter in multipart book' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_h2_font_color: 'AA0000' }, analyze: true
= Document Title
:doctype: book
= Part
== Chapter
content
[appendix]
= Details
We let you know.
EOS
chapter_texts = pdf.find_text font_color: 'AA0000'
(expect chapter_texts).to have_size 2
chapter_text = chapter_texts[0]
(expect chapter_text[:string]).to eql 'Chapter'
(expect chapter_text[:page_number]).to be 3
appendix_text = chapter_texts[1]
(expect appendix_text[:string]).to eql 'Appendix A: Details'
(expect appendix_text[:page_number]).to be 4
end
it 'should not output section title for section marked with notitle option' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
:doctype: book
== Intro
Let's get started.
[%notitle]
== Middle
The bulk of the content.
== Conclusion
Wrapping it up.
EOS
middle_chapter_text = pdf.find_text page_number: 3
(expect middle_chapter_text).to have_size 1
(expect middle_chapter_text[0][:string]).to eql 'The bulk of the content.'
end
it 'should add entry to toc for section with notitle option' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
:doctype: book
:toc:
== Intro
Let's get started.
[%notitle]
== Middle
The bulk of the content.
== Conclusion
Wrapping it up.
EOS
toc_lines = pdf.lines pdf.find_text page_number: 2
middle_entry = toc_lines.find {|it| it.start_with? 'Middle' }
(expect middle_entry).not_to be_nil
(expect middle_entry).to end_with '2'
end
it 'should not output section title for special section marked with notitle option' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_h2_font_color: 'AA0000' }, analyze: true
= Document Title
:doctype: book
[colophon%notitle]
= Hidden
Colophon with no title.
= Part
== Chapter
content
[appendix]
= Details
We let you know.
EOS
colophon_page_text = pdf.find_text page_number: 2
(expect colophon_page_text).to have_size 1
(expect colophon_page_text[0][:string]).to eql 'Colophon with no title.'
chapter_texts = pdf.find_text font_color: 'AA0000'
(expect chapter_texts).to have_size 2
chapter_text = chapter_texts[0]
(expect chapter_text[:string]).to eql 'Chapter'
(expect chapter_text[:page_number]).to be 4
appendix_text = chapter_texts[1]
(expect appendix_text[:string]).to eql 'Appendix A: Details'
(expect appendix_text[:page_number]).to be 5
end
it 'should not leave behind dest for empty section marked with notitle option' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
== Chapter
Musings.
[colophon%notitle]
== Hidden
EOS
(expect pdf.pages).to have_size 2
all_text = pdf.pages.map(&:text).join ?\n
(expect all_text).not_to include 'Hidden'
(expect get_names pdf).not_to have_key '_hidden'
end
it 'should not add entry to toc for section marked with notitle option when no content follows it' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:toc:
== Chapter
Musings.
[colophon%notitle]
== Hidden
EOS
(expect pdf.pages).to have_size 3
all_text = pdf.pages.map(&:text).join ?\n
(expect all_text).not_to include 'Hidden'
end
it 'should not promote anonymous preface in book doctype to preface section if preface-title attribute is not set' do
input = <<~'EOS'
= Book Title
:doctype: book
anonymous preface
== First Chapter
chapter content
EOS
pdf = to_pdf input
names = get_names pdf
(expect names).not_to have_key '_preface'
text = (to_pdf input, analyze: true).text
(expect text[1][:string]).to eql 'anonymous preface'
(expect text[1][:font_size]).to be 13
end
# QUESTION: is this the right behavior? should the value default to Preface instead?
it 'should not promote anonymous preface in book doctype to preface section if preface-title attribute is empty' do
input = <<~'EOS'
= Book Title
:doctype: book
:preface-title:
anonymous preface
== First Chapter
chapter content
EOS
pdf = to_pdf input
names = get_names pdf
(expect names).not_to have_key '_preface'
text = (to_pdf input, analyze: true).text
(expect text[1][:string]).to eql 'anonymous preface'
(expect text[1][:font_size]).to be 13
end
it 'should promote anonymous preface in book doctype to preface section if preface-title attribute is non-empty' do
input = <<~'EOS'
= Book Title
:doctype: book
:preface-title: Prelude
anonymous preface
== First Chapter
chapter content
EOS
pdf = to_pdf input
(expect (preface_dest = get_dest pdf, '_prelude')).not_to be_nil
_, page_height = get_page_size pdf, preface_dest[:page_number]
(expect preface_dest[:y]).to eql page_height
text = (to_pdf input, analyze: true).text
(expect text[1][:string]).to eql 'Prelude'
(expect text[1][:font_size]).to be 22
(expect text[2][:string]).to eql 'anonymous preface'
(expect text[2][:font_size]).to eql 10.5
end
it 'should only show preface title in TOC if notitle option is set on first child block of anonymous preface' do
input = <<~'EOS'
= Book Title
:doctype: book
:preface-title: Preface
:toc:
[%notitle]
anonymous preface
== First Chapter
chapter content
EOS
pdf = to_pdf input
(expect (preface_dest = get_dest pdf, '_preface')).not_to be_nil
_, page_height = get_page_size pdf, preface_dest[:page_number]
(expect preface_dest[:y]).to eql page_height
pdf = to_pdf input, analyze: true
(expect pdf.find_unique_text 'Preface', page_number: 2).not_to be_nil
(expect pdf.find_unique_text 'Preface', page_number: 3).to be_nil
# NOTE: test that lead role on first paragraph is retained
(expect (pdf.find_unique_text 'anonymous preface', page_number: 3)[:font_size]).to eql 13
end
it 'should not force title of empty section to next page if it fits on page' do
pdf = to_pdf <<~EOS, analyze: true
== Section A
[%hardbreaks]
#{(['filler'] * 41).join ?\n}
== Section B
EOS
section_b_text = (pdf.find_text 'Section B')[0]
(expect section_b_text[:page_number]).to be 1
end
it 'should force section title to next page to keep with first line of section content' do
pdf = to_pdf <<~EOS, analyze: true
== Section A
[%hardbreaks]
#{(['filler'] * 41).join ?\n}
== Section B
content
EOS
section_b_text = (pdf.find_text 'Section B')[0]
(expect section_b_text[:page_number]).to be 2
content_text = (pdf.find_text 'content')[0]
(expect content_text[:page_number]).to be 2
end
it 'should force section title of non-empty section to next page if wrapped line does not fit on current page' do
pdf = with_content_spacer 10, 690 do |spacer_path|
to_pdf <<~EOS, pdf_theme: { heading_min_height_after: nil, heading_font_color: 'AA0000' }, analyze: true
image::#{spacer_path}[]
== This is a long heading that wraps to a second line
content
EOS
end
heading_texts = pdf.find_text font_color: 'AA0000'
(expect heading_texts).to have_size 2
(expect heading_texts.map {|it| it[:page_number] }.uniq).to eql [2]
end
it 'should force section title of empty section to next page if wrapped line does not fit on current page' do
pdf = with_content_spacer 10, 690 do |spacer_path|
to_pdf <<~EOS, pdf_theme: { heading_font_color: 'AA0000' }, analyze: true
image::#{spacer_path}[]
== This is a long heading that wraps to a second line
EOS
end
heading_texts = pdf.find_text font_color: 'AA0000'
(expect heading_texts).to have_size 2
(expect heading_texts.map {|it| it[:page_number] }.uniq).to eql [2]
end
it 'should not require space for bottom margin between section title and bottom of page if min-height-after is 0' do
pdf = with_content_spacer 10, 710 do |spacer_path|
to_pdf <<~EOS, pdf_theme: { heading_min_height_after: 0, heading_font_color: 'AA0000' }, analyze: true
image::#{spacer_path}[]
== Heading Fits
content
EOS
end
heading_text = pdf.find_unique_text font_color: 'AA0000'
(expect heading_text[:page_number]).to eql 1
end
it 'should ignore heading-min-height-after if section is empty' do
pdf = with_content_spacer 10, 650 do |spacer_path|
to_pdf <<~EOS, pdf_theme: { heading_min_height_after: 100, heading_font_color: 'AA0000' }, analyze: true
image::#{spacer_path}[]
== Heading Fits
EOS
end
(expect pdf.pages).to have_size 1
heading_text = pdf.find_unique_text font_color: 'AA0000'
(expect heading_text[:page_number]).to eql 1
end
it 'should force section title with text transform to next page to keep with first line of section content' do
pdf = to_pdf <<~EOS, pdf_theme: { heading_text_transform: 'uppercase' }, analyze: true
image::tall.svg[pdfwidth=80mm]
== A long heading with uppercase characters
content
EOS
section_text = pdf.find_unique_text %r/^A LONG HEADING/
(expect section_text[:page_number]).to be 2
content_text = pdf.find_unique_text 'content'
(expect content_text[:page_number]).to be 2
end
it 'should not force section title with inline formatting to next page if text formatting does not affect height' do
pdf = to_pdf <<~EOS, analyze: true
image::tall.svg[pdfwidth=80mm]
== A long heading with some inline #markup#
content
EOS
section_text = pdf.find_unique_text %r/^A long heading/
(expect section_text[:page_number]).to be 1
content_text = pdf.find_unique_text 'content'
(expect content_text[:page_number]).to be 1
end
it 'should not force section title to next page to keep with content if heading-min-height-after theme key is zero' do
pdf = to_pdf <<~EOS, pdf_theme: { heading_min_height_after: 0 }, analyze: true
== Section A
[%hardbreaks]
#{(['filler'] * 41).join ?\n}
== Section B
content
EOS
section_b_text = (pdf.find_text 'Section B')[0]
(expect section_b_text[:page_number]).to be 1
content_text = (pdf.find_text 'content')[0]
(expect content_text[:page_number]).to be 2
end
it 'should allow arrange_heading to be reimplemented to always keep section title with content that follows it' do
source_file = doc_file 'modules/extend/examples/pdf-converter-avoid-break-after-heading.rb'
source_lines = (File.readlines source_file).select {|l| l == ?\n || (l.start_with? ' ') }
ext_class = create_class Asciidoctor::Converter.for 'pdf'
backend = %(pdf#{ext_class.object_id})
source_lines[0] = %( register_for '#{backend}'\n)
ext_class.class_eval source_lines.join, source_file
pdf = to_pdf <<~EOS, backend: backend, analyze: true
== Section A
image::tall.svg[pdfwidth=70mm]
== Section B
[%unbreakable]
--
keep
this
together
--
EOS
section_b_text = pdf.find_unique_text 'Section B'
(expect section_b_text[:page_number]).to be 2
content_text = pdf.find_unique_text 'keep'
(expect content_text[:page_number]).to be 2
end
it 'should keep section with first block of content if breakable option is set on section' do
pdf = to_pdf <<~EOS, pdf_theme: { heading_min_height_after: nil }, analyze: true
== Section A
image::tall.svg[pdfwidth=70mm]
[%breakable]
== Section B
[%unbreakable]
--
keep
this
together
--
EOS
section_b_text = pdf.find_unique_text 'Section B'
(expect section_b_text[:page_number]).to be 2
content_text = pdf.find_unique_text 'keep'
(expect content_text[:page_number]).to be 2
end
it 'should keep section with first block of content if heading-min-height-after theme key is auto' do
pdf = to_pdf <<~EOS, pdf_theme: { heading_min_height_after: 'auto' }, analyze: true
== Section A
image::tall.svg[pdfwidth=70mm]
== Section B
[%unbreakable]
--
keep
this
together
--
EOS
section_b_text = pdf.find_unique_text 'Section B'
(expect section_b_text[:page_number]).to be 2
content_text = pdf.find_unique_text 'keep'
(expect content_text[:page_number]).to be 2
end
it 'should not alter document state when arranging heading' do
input = <<~'EOS'
== Section A
image::tall.svg[pdfwidth=75mm]
[%breakable]
== Section B
This is the first paragraph of Section B.footnote:[This paragraph falls on the first page.]
This paragraph falls on the second page.
EOS
pdf = to_pdf input, analyze: true
(expect (pdf.find_unique_text 'This is the first paragraph of Section B.')[:page_number]).to eql 1
(expect (pdf.find_unique_text %r/This paragraph falls on the first page\.$/)[:page_number]).to eql 2
(expect (pdf.find_unique_text 'This paragraph falls on the second page.')[:page_number]).to eql 2
pdf = to_pdf input
p1_annotations = get_annotations pdf, 1
(expect p1_annotations).to have_size 1
p2_annotations = get_annotations pdf, 2
(expect p2_annotations).to have_size 1
footnote_label_y = p1_annotations[0][:Rect][3]
footnote_item_y = p2_annotations[0][:Rect][3]
(expect (footnoteref_dest = get_dest pdf, '_footnoteref_1')).not_to be_nil
(expect footnote_label_y - footnoteref_dest[:y]).to be < 1
(expect (footnotedef_dest = get_dest pdf, '_footnotedef_1')).not_to be_nil
(expect footnotedef_dest[:y]).to eql footnote_item_y
end
it 'should not add break before chapter if heading-chapter-break-before key in theme is auto' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_chapter_break_before: 'auto' }, analyze: true
= Document Title
:doctype: book
== Chapter A
== Chapter B
EOS
chapter_a_text = (pdf.find_text 'Chapter A')[0]
chapter_b_text = (pdf.find_text 'Chapter B')[0]
(expect chapter_a_text[:page_number]).to be 2
(expect chapter_b_text[:page_number]).to be 2
end
it 'should not add break before part if heading-part-break-before key in theme is auto' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_part_break_before: 'auto', heading_chapter_break_before: 'auto' }, analyze: true
= Document Title
:doctype: book
= Part I
== Chapter in Part I
= Part II
== Chapter in Part II
EOS
part1_text = (pdf.find_text 'Part I')[0]
part2_text = (pdf.find_text 'Part II')[0]
(expect part1_text[:page_number]).to be 2
(expect part2_text[:page_number]).to be 2
end
it 'should add break after part if heading-part-break-after key in theme is always' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_part_break_after: 'always', heading_chapter_break_before: 'auto' }, analyze: true
= Document Title
:doctype: book
= Part I
== Chapter in Part I
== Another Chapter in Part I
= Part II
== Chapter in Part II
EOS
part1_text = (pdf.find_text 'Part I')[0]
part2_text = (pdf.find_text 'Part II')[0]
chapter1_text = (pdf.find_text 'Chapter in Part I')[0]
chapter2_text = (pdf.find_text 'Another Chapter in Part I')[0]
(expect part1_text[:page_number]).to be 2
(expect chapter1_text[:page_number]).to be 3
(expect chapter2_text[:page_number]).to be 3
(expect part2_text[:page_number]).to be 4
end
it 'should not add page break after part if heading-part-break-after key in theme is avoid' do
pdf = to_pdf <<~'EOS', pdf_theme: { heading_part_break_after: 'avoid' }, analyze: true
= Document Title
:doctype: book
= Part I
== Chapter in Part I
EOS
(expect pdf.pages).to have_size 2
part1_text = (pdf.find_text 'Part I')[0]
chapter1_text = (pdf.find_text 'Chapter in Part I')[0]
(expect part1_text[:page_number]).to be 2
(expect chapter1_text[:page_number]).to be 2
(expect part1_text[:y] - chapter1_text[:y]).to be < 50
end
it 'should support abstract defined as special section' do
pdf = to_pdf <<~'EOS', analyze: true
= Document Title
:toc:
[abstract]
== Abstract
A presage of what is to come.
== Body
What came to pass.
EOS
abstract_title_text = (pdf.find_text 'Abstract')[0]
(expect abstract_title_text[:x]).to be > 48.24
abstract_content_text = (pdf.find_text 'A presage of what is to come.')[0]
(expect abstract_content_text[:font_name]).to eql 'NotoSerif-BoldItalic'
(expect abstract_content_text[:font_color]).to eql '5C6266'
toc_entries = pdf.lines.select {|it| it.include? '. . .' }
(expect toc_entries).to have_size 1
(expect toc_entries[0]).to start_with 'Body'
end
context 'Section indent' do
it 'should indent section body if section_indent is set to single value in theme' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
== Section Title
paragraph
[.text-right]
paragraph
EOS
section_text = (pdf.find_text 'Section Title')[0]
paragraph_text = pdf.find_text 'paragraph'
(expect section_text[:x]).to eql 48.24
(expect paragraph_text[0][:x]).to eql 84.24
(expect paragraph_text[1][:x].to_i).to be 458
end
it 'should indent section body if section_indent is set to array in theme' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: [36, 0] }, analyze: true
= Document Title
== Section Title
paragraph
[.text-right]
paragraph
EOS
section_text = (pdf.find_text 'Section Title')[0]
paragraph_text = pdf.find_text 'paragraph'
(expect section_text[:x]).to eql 48.24
(expect paragraph_text[0][:x]).to eql 84.24
(expect paragraph_text[1][:x].to_i).to eql (458 + 36)
end
it 'should indent toc entries if section_indent is set in theme' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
:doctype: book
:toc:
== Chapter
== Another Chapter
EOS
toc_texts = pdf.find_text page_number: 2
toc_title_text = toc_texts.find {|it| it[:string] == 'Table of Contents' }
(expect toc_title_text[:x]).to eql 48.24
chapter_title_text = toc_texts.find {|it| it[:string] == 'Chapter' }
(expect chapter_title_text[:x]).to eql 84.24
end
it 'should indent preamble if section_indent is set in theme' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
preamble
== Section
content
EOS
preamble_text = (pdf.find_text 'preamble')[0]
(expect preamble_text[:x]).to eql 84.24
section_content_text = (pdf.find_text 'content')[0]
(expect section_content_text[:x]).to eql 84.24
end
it 'should not reapply section indent to nested sections' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
:doctype: book
:notitle:
== Chapter
chapter body
=== Section
section body
EOS
chapter_title_text = (pdf.find_text 'Chapter')[0]
section_title_text = (pdf.find_text 'Section')[0]
(expect chapter_title_text[:x]).to eql 48.24
(expect section_title_text[:x]).to eql 48.24
chapter_body_text = (pdf.find_text 'chapter body')[0]
section_body_text = (pdf.find_text 'section body')[0]
(expect chapter_body_text[:x]).to eql 84.24
(expect section_body_text[:x]).to eql 84.24
end
it 'should outdent footnotes in article' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
== Section
paragraph{blank}footnote:[About this paragraph]
EOS
paragraph_text = (pdf.find_text 'paragraph')[0]
footnote_text_fragments = pdf.text.select {|it| it[:y] < paragraph_text[:y] }
(expect footnote_text_fragments[0][:string]).to eql '['
(expect footnote_text_fragments[0][:x]).to eql 48.24
end
it 'should outdent footnotes in book' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
:doctype: book
== Chapter
paragraph{blank}footnote:[About this paragraph]
EOS
paragraph_text = (pdf.find_text 'paragraph')[0]
footnote_text_fragments = (pdf.find_text page_number: 2).select {|it| it[:y] < paragraph_text[:y] }
(expect footnote_text_fragments[0][:string]).to eql '['
(expect footnote_text_fragments[0][:x]).to eql 48.24
end
it 'should not indent body of index section' do
pdf = to_pdf <<~'EOS', pdf_theme: { section_indent: 36 }, analyze: true
= Document Title
:doctype: book
== Chapter
((paragraph))
[index]
== Index
EOS
index_page_texts = pdf.find_text page_number: 3
index_title_text = index_page_texts.find {|it| it[:string] == 'Index' }
(expect index_title_text[:x]).to eql 48.24
category_text = index_page_texts.find {|it| it[:string] == 'P' }
(expect category_text[:x]).to eql 48.24
end
end
end
|