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
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe Asciidoctor::PDF::ThemeLoader do
subject { described_class }
describe '#load' do
it 'should not fail if theme data is empty' do
theme = subject.new.load ''
(expect theme).not_to be_nil
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.to_h).to be_empty
end
it 'should not fail if theme data is falsy' do
theme = subject.new.load false
(expect theme).not_to be_nil
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.to_h).to be_empty
end
# NOTE: this API is not used by the converter
it 'should use specified theme data if raw theme data is nil' do
theme_data = Asciidoctor::PDF::ThemeData.new
theme_data.base_font_color = '222222'
theme = subject.new.load nil, theme_data
(expect theme).to be theme_data
end
it 'should store flattened keys in Asciidoctor::PDF::ThemeData' do
theme_data = YAML.safe_load <<~'EOS'
page:
size: A4
base:
font:
family: Times-Roman
border_width: 0.5
admonition:
label:
font_style: bold
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme).to respond_to :page_size
(expect theme).to respond_to :base_font_family
(expect theme).to respond_to :base_border_width
(expect theme).to respond_to :admonition_label_font_style
end
it 'should not flatten admonition icon keys' do
theme_data = YAML.safe_load <<~'EOS'
admonition:
icon:
tip:
name: far-lightbulb
stroke_color: ffff00
size: 24
note:
name: far-sticky-note
stroke_color: 0000ff
size: 24
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.admonition_icon_tip).to be_a Hash
(expect theme.admonition_icon_tip).to eql name: 'far-lightbulb', stroke_color: 'FFFF00', size: 24
(expect theme.admonition_icon_note).to be_a Hash
(expect theme.admonition_icon_note).to eql name: 'far-sticky-note', stroke_color: '0000FF', size: 24
end
it 'should ignore admonition icon type def if value is falsy' do
theme_data = YAML.safe_load <<~'EOS'
admonition:
icon:
advice: ~
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.admonition_icon_advice).to be_nil
end
it 'should replace hyphens in key names with underscores' do
theme_data = YAML.safe_load <<~'EOS'
page-size: A4
base:
font-family: Times-Roman
abstract:
title-font-size: 20
admonition:
icon:
tip:
stroke-color: FFFF00
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme).to respond_to :page_size
(expect theme).to respond_to :base_font_family
(expect theme).to respond_to :abstract_title_font_size
(expect theme).to respond_to :admonition_icon_tip
(expect theme.admonition_icon_tip).to be_a Hash
(expect theme.admonition_icon_tip).to have_key :stroke_color
end
it 'should not replace hyphens with underscores in role names' do
theme_data = YAML.safe_load <<~'EOS'
role:
flaming-red:
font-color: ff0000
so-very-blue:
font:
color: 0000ff
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme).to respond_to 'role_flaming-red_font_color'
(expect theme['role_flaming-red_font_color']).to eql 'FF0000'
(expect theme).to respond_to 'role_so-very-blue_font_color'
(expect theme['role_so-very-blue_font_color']).to eql '0000FF'
end
it 'should allow role to contain uppercase characters' do
theme_data = YAML.safe_load <<~'EOS'
role:
BOLD:
font-style: bold
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme).to respond_to 'role_BOLD_font_style'
(expect theme['role_BOLD_font_style']).to eql 'bold'
end
it 'should coerce value of keys that end in content to a string' do
theme_data = YAML.safe_load <<~'EOS'
menu:
caret_content:
- '>'
ulist:
marker:
disc:
content: 0
footer:
recto:
left:
content: true
right:
content: 2 * 2
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.menu_caret_content).to eql '[">"]'
(expect theme.ulist_marker_disc_content).to eql '0'
(expect theme.footer_recto_left_content).to eql 'true'
(expect theme.footer_recto_right_content).to eql '2 * 2'
end
it 'should remap align keys to text-align keys' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
base:
align: center
heading:
align: left
h2:
align: right
sidebar:
title:
align: $heading-align
caption:
align: $base-align
text-align: $heading-align
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.base_align).to be_nil
(expect theme.base_text_align).to eql 'center'
(expect theme.heading_align).to be_nil
(expect theme.heading_text_align).to eql 'left'
(expect theme.heading_h2_align).to be_nil
(expect theme.heading_h2_text_align).to eql 'right'
(expect theme.sidebar_title_align).to be_nil
(expect theme.sidebar_title_text_align).to eql 'left'
(expect theme.caption_align).to eql 'center'
(expect theme.caption_text_align).to eql 'left'
end).to not_log_message
end
it 'should remap table-caption-side key to table-caption-end' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
table:
caption:
side: bottom
image:
caption:
end: $table-caption-side
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.table_caption_side).to be_nil
(expect theme.table_caption_end).to eql 'bottom'
(expect theme.image_caption_end).to eql 'bottom'
end).to not_log_message
end
it 'should remap outline-list category to list category and warn' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
outline-list:
item-spacing: 6
footnotes:
margin-top: $outline-list-item-spacing
item-spacing: $outline_list_item_spacing / 2
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.outline_list_item_spacing).to be_nil
(expect theme.list_item_spacing).to eql 6
(expect theme.footnotes_margin_top).to eql theme.list_item_spacing
(expect theme.footnotes_item_spacing).to eql 3
end).to log_message severity: :WARN, message: 'the outline-list theme category is deprecated; use the list category instead'
end
it 'should remap blockquote category to quote category and warn' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
blockquote:
font-color: 4A4A4A
border-color: $blockquote-font-color
verse:
font-color: $blockquote-font-color
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.blockquote_font_color).to be_nil
(expect theme.quote_font_color).to eql '4A4A4A'
(expect theme.quote_border_color).to eql theme.quote_font_color
(expect theme.verse_font_color).to eql theme.quote_font_color
end).to log_message severity: :WARN, message: 'the blockquote theme category is deprecated; use the quote category instead'
end
it 'should remap key category to kbd category and warn' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
key:
border-color: CCCCCC
background-color: EFEFEF
font-color: $key-border-color
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.key_border_color).to be_nil
(expect theme.kbd_border_color).to eql 'CCCCCC'
(expect theme.kbd_font_color).to eql theme.kbd_border_color
end).to log_message severity: :WARN, message: 'the key theme category is deprecated; use the kbd category instead'
end
it 'should remap literal category to codespan category and warn' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
literal:
font-family: M+ 1mn
verse:
font-family: $literal-font-family
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.literal_font_family).to be_nil
(expect theme.codespan_font_family).to eql 'M+ 1mn'
(expect theme.verse_font_family).to eql 'M+ 1mn'
end).to log_message severity: :WARN, message: 'the literal theme category is deprecated; use the codespan category instead'
end
it 'should neutralize bottom padding hack on example, quote, sidebar, and verse categories' do
theme_data = YAML.safe_load <<~'EOS'
example:
padding: [12, 12, 0, 12]
quote:
padding: [0, 12, -9, 14]
sidebar:
padding: [12, 12, 0, 12]
verse:
padding: [6, 12, -6, 14]
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.example_padding).to eql [12, 12, 12, 12]
(expect theme.quote_padding).to eql [0, 12, 0, 14]
(expect theme.sidebar_padding).to eql [12, 12, 12, 12]
(expect theme.verse_padding).to eql [6, 12, 6, 14]
end
it 'should not neutralize bottom padding hack if top padding is negative' do
theme_data = YAML.safe_load <<~'EOS'
quote:
padding: [-3, 12, -3, 14]
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.quote_padding).to eql [-3, 12, -3, 14]
end
it 'should expand variables in value of keys that end in _content' do
theme_data = YAML.safe_load <<~'EOS'
page:
size: A4
base:
font_size: 12
footer:
verso:
left:
content: 2 * $base_font_size
right:
content: $page_size
EOS
theme = subject.new.load theme_data
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.footer_verso_left_content).to eql '2 * 12'
(expect theme.footer_verso_right_content).to eql 'A4'
end
it 'should ignore font key if value is not a Hash' do
theme_data = YAML.safe_load <<~'EOS'
font: ~
base_font_color: 333333
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_nil
(expect theme.base_font_color).to eql '333333'
end
it 'should ignore font_catalog key if value is not a Hash' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog: ~
base_font_color: 333333
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_nil
(expect theme.base_font_color).to eql '333333'
end
it 'should ignore unrecognized font subkeys' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Yolo:
normal: /path/to/yolo.ttf
foo:
- bar
- baz
yin: yang
base:
font_family: Yolo
EOS
theme = subject.new.load theme_data
(expect theme.foo).to be_nil
(expect theme.yin).to be_nil
(expect theme.base_font_family).to eql 'Yolo'
(expect theme.font_catalog).to eql 'Yolo' => { 'normal' => '/path/to/yolo.ttf' }
end
it 'should ignore font if value is falsy' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Fancy:
normal: /path/to/fancy.ttf
Yolo: ~
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to have_size 1
(expect theme.font_catalog).to have_key 'Fancy'
(expect theme.font_catalog['Fancy']).to be_a Hash
(expect theme.font_catalog).not_to have_key 'Yolo'
end
it 'should allow font to be declared once for all styles using string value' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Serif: /path/to/serif-font.ttf
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']).to have_size 4
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['italic']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold_italic']).to eql '/path/to/serif-font.ttf'
end
it 'should allow font to be declared once for all styles using * style' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Serif:
'*': /path/to/serif-font.ttf
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']).to have_size 4
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['italic']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold_italic']).to eql '/path/to/serif-font.ttf'
end
it 'should allow single style to be customized for font defined using * key' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Serif:
'*': /path/to/serif-font.ttf
bold: /path/to/bold-serif-font.ttf
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']).to have_size 4
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold']).to eql '/path/to/bold-serif-font.ttf'
(expect theme.font_catalog['Serif']['italic']).to eql '/path/to/serif-font.ttf'
(expect theme.font_catalog['Serif']['bold_italic']).to eql '/path/to/serif-font.ttf'
end
it 'should allow regular to be used as alias for normal style when defining fonts' do
theme_data = YAML.safe_load <<~'EOS'
font:
catalog:
Serif:
regular: /path/to/serif-regular.ttf
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-regular.ttf'
end
it 'should allow font catalog and font fallbacks to be defined as flat keys' do
theme_data = YAML.safe_load <<~'EOS'
font_catalog:
Serif:
normal: /path/to/serif-font.ttf
Fallback:
normal: /path/to/fallback-font.ttf
font_fallbacks:
- Fallback
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
(expect theme.font_fallbacks).to be_a Array
(expect theme.font_fallbacks).to eql ['Fallback']
end
it 'should set font fallbacks to empty array if value is falsy' do
theme_data = YAML.safe_load <<~'EOS'
font_catalog:
Serif:
normal: /path/to/serif-font.ttf
font_fallbacks: ~
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
(expect theme.font_fallbacks).to be_a Array
(expect theme.font_fallbacks).to be_empty
end
end
describe '.load_file' do
it 'should not fail if theme file is empty' do
theme = subject.load_file fixture_file 'empty-theme.yml'
(expect theme).to be_an Asciidoctor::PDF::ThemeData
theme.delete_field :__loaded__
(expect theme).to eql Asciidoctor::PDF::ThemeData.new
end
it 'should not fail if theme file resolves to nil' do
theme = subject.load_file fixture_file 'nil-theme.yml'
(expect theme).to be_an Asciidoctor::PDF::ThemeData
theme.delete_field :__loaded__
(expect theme).to eql Asciidoctor::PDF::ThemeData.new
end
it 'should throw error that includes filename and reason if theme is indented using tabs' do
(expect do
subject.load_file fixture_file 'tab-indentation-theme.yml'
end).to raise_exception RuntimeError, /tab-indentation-theme\.yml\): found character .*that cannot start any token/
end
it 'should load and extend themes specified by extends array' do
with_pdf_theme_file <<~'EOS' do |custom_theme_path|
base:
font-family: Times-Roman
EOS
with_pdf_theme_file <<~'EOS' do |red_theme_path|
base:
font-color: ff0000
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename custom_theme_path}
- ./#{File.basename red_theme_path}
base:
text-align: justify
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_text_align).to eql 'justify'
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.base_font_color).to eql 'FF0000'
end
end
end
end
it 'should be able to extend them from absolute path' do
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{fixture_file 'custom-theme.yml'}
base:
text-align: justify
EOS
theme = subject.load_file theme_path
(expect theme.base_text_align).to eql 'justify'
(expect theme.base_font_family).to eql 'Times-Roman'
end
end
it 'should extend built-in default theme if value of extends entry is default' do
with_pdf_theme_file <<~'EOS' do |red_theme_path|
base:
font-color: ff0000
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- default
- #{File.basename red_theme_path}
base:
font-color: 0000ff
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_font_family).to eql 'Noto Serif'
(expect theme.base_font_color).to eql '0000FF'
end
end
end
it 'should extend built-in base theme last if listed last in extends entry' do
with_pdf_theme_file <<~'EOS' do |heading_font_color_theme_path|
heading:
font-color: #AA0000
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename heading_font_color_theme_path}
- base
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.heading_font_color).to eql 'AA0000'
(expect theme.base_font_family).to eql 'Helvetica'
end
end
end
it 'should only extend theme once by default' do
with_pdf_theme_file <<~'EOS' do |extended_default_theme_path|
extends: default
base:
font-color: 222222
EOS
with_pdf_theme_file <<~'EOS' do |heading_font_family_theme_path|
extends: default
heading:
font-family: M+ 1mn
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename extended_default_theme_path}
- #{File.basename heading_font_family_theme_path}
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_font_color).to eql '222222'
(expect theme.heading_font_family).to eql 'M+ 1mn'
end
end
end
end
it 'should only extend base theme once by default' do
with_pdf_theme_file <<~'EOS' do |extended_base_theme_path|
extends: base
base:
font-family: Times-Roman
font-color: 333333
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename extended_base_theme_path}
- base
link:
font-color: 0000FF
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_font_color).to eql '333333'
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.link_font_color).to eql '0000FF'
end
end
end
it 'should force base theme to be loaded if qualified with !important' do
with_pdf_theme_file <<~'EOS' do |extended_base_theme_path|
extends: base
base:
font-color: 222222
font-family: Times-Roman
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename extended_base_theme_path}
- base !important
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_family).to eql 'Helvetica'
end
end
end
it 'should force default theme to be loaded if qualified with !important' do
with_pdf_theme_file <<~'EOS' do |extended_default_theme_path|
extends: default
base:
font-color: 222222
font-family: Times-Roman
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename extended_default_theme_path}
- default !important
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.base_font_color).to eql '333333'
(expect theme.base_font_family).to eql 'Noto Serif'
end
end
end
it 'should allow font catalog to be merged with font catalog from theme being extended' do
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: default
font:
catalog:
merge: true
M+ 1mn:
normal: /path/to/mplus1mn-regular.ttf
VLGothic:
normal: &VLGothic /path/to/vlgothic-regular.ttf
bold: *VLGothic
italic: *VLGothic
bold_italic: *VLGothic
fallbacks:
- VLGothic
EOS
theme = subject.load_file theme_path
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog).to have_size 3
(expect theme.font_catalog).to have_key 'Noto Serif'
(expect theme.font_catalog).to have_key 'M+ 1mn'
(expect theme.font_catalog['Noto Serif']).to have_size 4
(expect theme.font_catalog['M+ 1mn']).to have_size 1
(expect theme.font_catalog['M+ 1mn']['normal']).to eql '/path/to/mplus1mn-regular.ttf'
(expect theme.font_catalog).to have_key 'VLGothic'
(expect theme.font_catalog['VLGothic']).to have_size 4
(expect theme.font_catalog['VLGothic'].values.uniq).to have_size 1
(expect theme.font_catalog['VLGothic']['normal']).to eql '/path/to/vlgothic-regular.ttf'
(expect theme.font_fallbacks).to be_a Array
(expect theme.font_fallbacks).to eql ['VLGothic']
end
end
it 'should not fail to merge font catalog if inherited theme does not define a font catalog' do
with_pdf_theme_file <<~'EOS' do |extends_no_theme_path|
extends: ~
base:
font_family: Times-Roman
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends: #{File.basename extends_no_theme_path}
font:
catalog:
merge: true
M+ 1p:
normal: /path/to/mplus1p-regular.ttf
VLGothic:
normal: &VLGothic /path/to/vlgothic-regular.ttf
bold: *VLGothic
italic: *VLGothic
bold_italic: *VLGothic
fallbacks:
- VLGothic
base:
font_family: M+ 1p
EOS
theme = subject.load_file theme_path, nil, (File.dirname theme_path)
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog).to have_size 2
(expect theme.font_catalog).to have_key 'M+ 1p'
(expect theme.font_catalog).to have_key 'VLGothic'
(expect theme.font_fallbacks).to be_a Array
(expect theme.font_fallbacks).to eql ['VLGothic']
(expect theme.base_font_family).to eql 'M+ 1p'
end
end
end
end
describe '.load_theme' do
it 'should load base theme if theme name is base' do
theme = subject.load_theme 'base'
(expect theme).not_to be_nil
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.base_font_family).to eql 'Helvetica'
(expect theme.codespan_font_family).to eql 'Courier'
(expect theme).to eql subject.load_base_theme
end
it 'should load default theme if no arguments are given' do
theme = subject.load_theme
(expect theme).not_to be_nil
(expect theme).to be_an Asciidoctor::PDF::ThemeData
(expect theme.base_font_family).to eql 'Noto Serif'
(expect theme.link_font_color).to eql '428BCA'
end
it 'should not inherit from base theme when loading default theme' do
theme = subject.load_theme
# NOTE: table_border_style is only set in the base theme
(expect theme.table_border_style).to be_nil
end
it 'should not inherit from base theme when loading custom theme' do
theme = subject.load_theme fixture_file 'empty-theme.yml'
(expect theme.table_border_style).to be_nil
end
it 'should not inherit from base theme if custom theme extends nothing' do
theme = subject.load_theme fixture_file 'bare-theme.yml'
(expect theme.table_border_style).to be_nil
end
it 'should not inherit from base theme if custom theme extends default' do
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: default
base:
font-color: 222222
EOS
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.table_border_style).to be_nil
end
end
it 'should not inherit from base theme if custom theme extends nil' do
with_pdf_theme_file <<~'EOS' do |extends_no_theme_path|
extends: ~
base:
font-family: Times-Roman
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends: #{File.basename extends_no_theme_path}
heading:
font-family: $base-font-family
EOS
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.heading_font_family).to eql 'Times-Roman'
(expect theme.base_font_size).to be 12
end
end
end
it 'should not inherit from base theme if custom theme extends theme that resolves to nil' do
with_pdf_theme_file %(extends: #{fixture_file 'nil-theme.yml'}) do |theme_path|
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_family).to be_nil
end
end
it 'should inherit from base theme if custom theme extends base' do
base_theme = subject.load_base_theme
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: base
base:
font_family: Times-Roman
font_color: 333333
EOS
theme = subject.load_theme theme_path
(expect theme.base_font_family).not_to eql base_theme.base_font_family
(expect theme.base_font_color).not_to eql base_theme.base_font_color
(expect theme.base_font_size).to eql base_theme.base_font_size
end
end
it 'should look for file ending in -theme.yml when resolving custom theme' do
theme = subject.load_theme 'custom', fixtures_dir
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.__dir__).to eql fixtures_dir
end
it 'should set __dir__ to dirname of theme file if theme path not set' do
theme = subject.load_theme fixture_file 'custom-theme.yml'
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.__dir__).to eql fixtures_dir
end
it 'should load specified file ending with .yml if path is not given' do
theme = subject.load_theme fixture_file 'custom-theme.yml'
(expect theme.base_font_family).to eql 'Times-Roman'
end
it 'should load specified file ending with .yml from specified path' do
theme = subject.load_theme 'custom-theme.yml', fixtures_dir
(expect theme.base_font_family).to eql 'Times-Roman'
end
it 'should load extended themes relative to theme file if they start with ./' do
with_pdf_theme_file <<~'EOS' do |custom_theme_path|
base:
font-family: Times-Roman
EOS
with_pdf_theme_file <<~'EOS' do |red_theme_path|
base:
font-color: ff0000
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- ./#{File.basename custom_theme_path}
- ./#{File.basename red_theme_path}
base:
text-align: justify
EOS
theme = subject.load_theme theme_path, fixtures_dir
(expect theme.__dir__).to eql fixtures_dir
(expect theme.base_text_align).to eql 'justify'
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.base_font_color).to eql 'FF0000'
end
end
end
end
it 'should load extended themes relative to theme file when theme_dir is not specified' do
with_pdf_theme_file <<~'EOS' do |custom_theme_path|
base:
font-family: Times-Roman
EOS
with_pdf_theme_file <<~'EOS' do |red_theme_path|
base:
font-color: ff0000
EOS
with_pdf_theme_file <<~EOS do |theme_path|
extends:
- #{File.basename custom_theme_path}
- #{File.basename red_theme_path}
base:
text-align: justify
EOS
theme = subject.load_theme theme_path
(expect theme.__dir__).to eql File.dirname theme_path
(expect theme.base_text_align).to eql 'justify'
(expect theme.base_font_family).to eql 'Times-Roman'
(expect theme.base_font_color).to eql 'FF0000'
end
end
end
end
it 'should ensure required keys are set in non-built-in theme' do
theme = subject.load_theme 'bare-theme.yml', fixtures_dir
(expect theme.__dir__).to eql fixtures_dir
(expect theme.base_text_align).to eql 'left'
(expect theme.base_line_height).to be 1
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_size).to be 12
(expect theme.code_font_family).to eql 'Courier'
(expect theme.conum_font_family).to eql 'Courier'
(expect theme.to_h.keys).to have_size 7
end
it 'should link code and conum font family to codespan font family by default' do
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: ~
codespan:
font-family: M+ 1mn
EOS
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.__dir__).to eql (File.dirname theme_path)
(expect theme.codespan_font_family).to eql 'M+ 1mn'
(expect theme.code_font_family).to eql 'M+ 1mn'
(expect theme.conum_font_family).to eql 'M+ 1mn'
end
end
it 'should link sidebar and abstract title font family to heading font family if only latter is set' do
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: default
heading:
font-family: M+ 1mn
EOS
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.__dir__).to eql (File.dirname theme_path)
(expect theme.heading_font_family).to eql 'M+ 1mn'
(expect theme.abstract_title_font_family).to eql 'M+ 1mn'
(expect theme.sidebar_title_font_family).to eql 'M+ 1mn'
end
end
it 'should not overwrite required keys with default values if already set' do
with_pdf_theme_file <<~'EOS' do |theme_path|
extends: default
base:
font-color: 222222
EOS
theme = subject.load_theme (File.basename theme_path), (File.dirname theme_path)
(expect theme.base_text_align).to eql 'justify'
(expect theme.code_font_family).to eql 'M+ 1mn'
(expect theme.conum_font_family).to eql 'M+ 1mn'
end
end
end
describe '.resolve_theme_file' do
it 'should resolve built-in default theme by default' do
expected_dir = subject::ThemesDir
expected_path = File.join expected_dir, 'default-theme.yml'
theme_path, theme_dir = subject.resolve_theme_file
(expect theme_path).to eql expected_path
(expect theme_dir).to eql expected_dir
end
it 'should expand reference to home directory in theme dir when resolving theme file from name' do
expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml'
expected_dir = File.dirname expected_path
theme_path, theme_dir = subject.resolve_theme_file 'custom', '~/.local/share/asciidoctor-pdf'
(expect theme_path).to eql expected_path
(expect theme_dir).to eql expected_dir
end
it 'should expand reference to home directory in theme dir when resolving theme file from filename' do
expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml'
expected_dir = File.dirname expected_path
theme_path, theme_dir = subject.resolve_theme_file 'custom-theme.yml', '~/.local/share/asciidoctor-pdf'
(expect theme_path).to eql expected_path
(expect theme_dir).to eql expected_dir
end
it 'should expand reference to home directory in theme file when resolving theme file' do
expected_path = File.join home_dir, '.local/share/asciidoctor-pdf/custom-theme.yml'
expected_dir = File.dirname expected_path
theme_path, theme_dir = subject.resolve_theme_file '~/.local/share/asciidoctor-pdf/custom-theme.yml'
(expect theme_path).to eql expected_path
(expect theme_dir).to eql expected_dir
end
end
describe '.resolve_theme_asset' do
it 'should resolve theme asset relative to built-in themes dir by default' do
(expect subject.resolve_theme_asset 'base-theme.yml').to eql (File.join subject::ThemesDir, 'base-theme.yml')
end
end
context 'data types' do
it 'should resolve null color value as nil' do
theme_data = YAML.safe_load <<~'EOS'
page:
background_color: null
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to be_nil
end
it 'should resolve transparent color value' do
theme_data = YAML.safe_load <<~'EOS'
sidebar:
background_color: transparent
EOS
theme = subject.new.load theme_data
(expect theme.sidebar_background_color).to eql 'transparent'
(expect theme.sidebar_background_color).to be_a subject::TransparentColorValue
end
it 'should expand color value to 6 hexadecimal digits' do
{
'0' => '000000',
'9' => '000009',
'000000' => '000000',
'222' => '222222',
'123' => '112233',
'000011' => '000009',
'2222' => '002222',
'11223344' => '112233',
}.each do |input, resolved|
theme_data = YAML.safe_load <<~EOS
page:
background_color: #{input}
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to eql resolved
end
end
it 'should wrap cmyk color values in color type if key ends with _color' do
theme_data = YAML.safe_load <<~'EOS'
page:
background_color: [0, 0, 0, 0]
base:
font_color: [100, 100, 100, 100]
heading:
font-color: [0, 0, 0, 0.92]
link:
font-color: [67.33%, 31.19%, 0, 20.78%]
codespan:
font-color: [0%, 0%, 0%, 0.87]
table:
grid-color: [0, 0, 0, 27]
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to eql 'FFFFFF'
(expect theme.page_background_color).to be_a subject::HexColorValue
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_color).to be_a subject::HexColorValue
(expect theme.heading_font_color).to eql [0, 0, 0, 92]
(expect theme.heading_font_color).to be_a subject::CMYKColorValue
(expect theme.link_font_color).to eql [67.33, 31.19, 0, 20.78]
(expect theme.link_font_color).to be_a subject::CMYKColorValue
(expect theme.codespan_font_color).to eql [0, 0, 0, 87]
(expect theme.codespan_font_color).to be_a subject::CMYKColorValue
(expect theme.table_grid_color).to eql [0, 0, 0, 27]
(expect theme.table_grid_color).to be_a subject::CMYKColorValue
end
it 'should wrap hex color values in color type if key ends with _color' do
theme_data = YAML.safe_load <<~'EOS'
page:
background_color: 'ffffff'
base:
font_color: '000000'
heading:
font-color: 333333
link:
font-color: 428bca
codespan:
font-color: 222
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to eql 'FFFFFF'
(expect theme.page_background_color).to be_a subject::HexColorValue
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_color).to be_a subject::HexColorValue
# NOTE: this assertion tests that the value can be an integer, not a string
(expect theme.heading_font_color).to eql '333333'
(expect theme.heading_font_color).to be_a subject::HexColorValue
(expect theme.link_font_color).to eql '428BCA'
(expect theme.link_font_color).to be_a subject::HexColorValue
(expect theme.codespan_font_color).to eql '222222'
(expect theme.codespan_font_color).to be_a subject::HexColorValue
end
it 'should coerce rgb color values to hex and wrap in color type if key ends with _color' do
theme_data = YAML.safe_load <<~'EOS'
page:
background_color: [255, 255, 255]
base:
font_color: [0, 0, 0]
heading:
font-color: [51, 51, 51]
link:
font-color: [66, 139, 202]
codespan:
font-color: ['34', '34', '34']
table:
grid-color: [187, 187, 187]
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to eql 'FFFFFF'
(expect theme.page_background_color).to be_a subject::HexColorValue
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_color).to be_a subject::HexColorValue
(expect theme.heading_font_color).to eql '333333'
(expect theme.heading_font_color).to be_a subject::HexColorValue
(expect theme.link_font_color).to eql '428BCA'
(expect theme.link_font_color).to be_a subject::HexColorValue
(expect theme.codespan_font_color).to eql '222222'
(expect theme.codespan_font_color).to be_a subject::HexColorValue
(expect theme.table_grid_color).to eql 'BBBBBB'
(expect theme.table_grid_color).to be_a subject::HexColorValue
end
it 'should coerce rgb color values for each axis of table grid' do
theme_data = YAML.safe_load <<~'EOS'
table:
grid-color: [[255, 0, 0], [0, 255, 0]]
EOS
theme = subject.new.load theme_data
(expect theme.table_grid_color).to eql %w(FF0000 00FF00)
end
it 'should coerce cmyk color values for each axis of table grid' do
theme_data = YAML.safe_load <<~'EOS'
table:
grid-color: [[0, 1, 1, 0], [1, 0, 1, 0]]
EOS
theme = subject.new.load theme_data
(expect theme.table_grid_color).to eql [[0, 100, 100, 0], [100, 0, 100, 0]]
(expect theme.table_grid_color[0]).to be_a subject::CMYKColorValue
(expect theme.table_grid_color[1]).to be_a subject::CMYKColorValue
end
it 'should flatten array color value of unsupported length to string if key ends with _color' do
theme_data = YAML.safe_load <<~'EOS'
page:
background_color: ['fff', 'fff']
base:
font_color: [0, 0, 0, 0, 0, 0]
EOS
theme = subject.new.load theme_data
(expect theme.page_background_color).to eql 'FFFFFF'
(expect theme.page_background_color).to be_a subject::HexColorValue
(expect theme.base_font_color).to eql '000000'
(expect theme.base_font_color).to be_a subject::HexColorValue
end
it 'should not wrap value in color type if key does not end with _color' do
theme_data = YAML.safe_load <<~'EOS'
menu:
caret:
content: 4a4a4a
EOS
theme = subject.new.load theme_data
(expect theme.menu_caret_content).to eql '4a4a4a'
(expect theme.menu_caret_content).not_to be_a subject::HexColorValue
end
# NOTE: this only works when the theme is read from a file
it 'should allow hex color values to be prefixed with # for any key' do
theme = subject.load_theme 'hex-color-shorthand', fixtures_dir
(expect theme.base_font_color).to eql '222222'
(expect theme.base_border_color).to eql 'DDDDDD'
(expect theme.page_background_color).to eql 'FEFEFE'
(expect theme.link_font_color).to eql '428BCA'
(expect theme.codespan_font_color).to eql 'AA0000'
(expect theme.footer_font_color).to eql '000099'
(expect theme.footer_background_color).to be_nil
end
# NOTE: this is only relevant when the theme is read from a file
it 'should not coerce color-like values to string if key does not end with color' do
theme = subject.load_theme 'color-like-value', fixtures_dir
(expect theme.footer_height).to be 100
end
it 'should coerce content key to a string' do
theme_data = YAML.safe_load <<~'EOS'
vars:
foo: bar
footer:
recto:
left:
content: $vars_foo
right:
content: 10
EOS
theme = subject.new.load theme_data
(expect theme.footer_recto_left_content).to eql 'bar'
(expect theme.footer_recto_right_content).to be_a String
(expect theme.footer_recto_right_content).to eql '10'
end
it 'should not modify value without units' do
[36, 36.0, 48.24, (20 / 17.0)].each do |val|
theme_data = YAML.safe_load <<~EOS
footer:
padding: #{val}
EOS
theme = subject.new.load theme_data
(expect theme.footer_padding).to eql val
end
end
it 'should resolve value with fixed units to PDF point value' do
['0.5in', '36pt', '48px', '12.7mm', '1.27cm'].each do |val|
theme_data = YAML.safe_load <<~EOS
footer:
padding: #{val}
EOS
theme = subject.new.load theme_data
(expect theme.footer_padding.to_f.round 2).to eql 36.0
end
end
it 'should preserve value with relative units' do
theme_data = YAML.safe_load <<~EOS
role:
big:
font-size: 1.2em
EOS
theme = subject.new.load theme_data
(expect theme.role_big_font_size).to eql '1.2em'
end
end
context 'interpolation' do
it 'should resolve variable reference with underscores to previously defined key' do
theme_data = YAML.safe_load <<~'EOS'
brand:
blue: '0000FF'
base:
font_color: $brand_blue
heading:
font_color: $base_font_color
EOS
theme = subject.new.load theme_data
(expect theme.base_font_color).to eql '0000FF'
(expect theme.heading_font_color).to eql theme.base_font_color
end
it 'should resolve variable reference with hyphens to previously defined key' do
theme_data = YAML.safe_load <<~'EOS'
brand:
blue: '0000FF'
base:
font_color: $brand-blue
heading:
font_color: $base-font-color
EOS
theme = subject.new.load theme_data
(expect theme.base_font_color).to eql '0000FF'
(expect theme.heading_font_color).to eql theme.base_font_color
end
it 'should resolve variable reference to previously defined color' do
theme_data = YAML.safe_load <<~'EOS'
brand:
blue-color: '0000FF'
base:
font_color: $brand-blue-color
heading:
font_color: $base-font-color
EOS
theme = subject.new.load theme_data
(expect theme.base_font_color).to eql '0000FF'
(expect theme.heading_font_color).to eql theme.base_font_color
end
it 'should warn if variable reference cannot be resolved' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
brand:
blue: '0000FF'
base:
font_color: $brand-red
EOS
theme = subject.new.load theme_data
(expect theme.base_font_color).to eql '$BRAND'
end).to log_message severity: :WARN, message: %(unknown variable reference in PDF theme: $brand-red)
end
it 'should warn if negated variable reference cannot be resolved' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
block:
margin-bottom: -$vertical-rhythm
EOS
theme = subject.new.load theme_data
(expect theme.block_margin_bottom).to eql '-$vertical-rhythm'
end).to log_message severity: :WARN, message: %(unknown variable reference in PDF theme: $vertical-rhythm)
end
it 'should interpolate variables in value' do
theme_data = YAML.safe_load <<~'EOS'
brand:
font_family_name: Noto
font_family_variant: Serif
base:
font_family: $brand_font_family_name $brand_font_family_variant
heading:
font_family: $brand_font_family_name Sans
EOS
theme = subject.new.load theme_data
(expect theme.base_font_family).to eql 'Noto Serif'
(expect theme.heading_font_family).to eql 'Noto Sans'
end
it 'should warn if variable reference cannot be resolved when interpolating value' do
(expect do
theme_data = YAML.safe_load <<~'EOS'
brand:
font_family_name: Noto
base:
font_family: $brand-font-family-name $brand-font-family-variant
EOS
theme = subject.new.load theme_data
(expect theme.base_font_family).to eql 'Noto $brand-font-family-variant'
end).to log_message severity: :WARN, message: %(unknown variable reference in PDF theme: $brand-font-family-variant)
end
it 'should interpolate computed value' do
theme_data = YAML.safe_load <<~'EOS'
base:
font_size: 10
line_height_length: 12
line_height: $base_line_height_length / $base_font_size
font_size_large: $base_font_size * 1.25
font_size_min: $base_font_size * 3 / 4
border_radius: 3 ^ 2
quote:
border_width: 5
padding: [-0.001, $base_line_height_length - 2, $base_line_height_length * -0.75, $base_line_height_length + $quote_border_width / 2]
EOS
theme = subject.new.load theme_data
(expect theme.base_line_height).to eql 1.2
(expect theme.base_font_size_large).to eql 12.5
(expect theme.base_font_size_min).to eql 7.5
(expect theme.base_border_radius).to eql 9
(expect theme.quote_padding).to eql [-0.001, 10, -9, 14.5]
end
it 'should coerce value to numeric if negated variable is a number' do
theme_data = YAML.safe_load <<~'EOS'
vertical-rhythm: 12
block:
anchor-top: -$vertical-rhythm
EOS
theme = subject.new.load theme_data
expected = -12
(expect theme.block_anchor_top).to eql expected
end
it 'should allow numeric value with units to be negative' do
theme_data = YAML.safe_load <<~'EOS'
footer:
padding: [0, -0.67in, 0, -0.67in]
EOS
theme = subject.new.load theme_data
(expect theme.footer_padding).to eql [0, -48.24, 0, -48.24]
end
it 'should not compute value if operator is not surrounded by spaces on either side' do
theme_data = YAML.safe_load <<~'EOS'
brand:
ten: 10
a_string: ten*10
another_string: ten-10
EOS
theme = subject.new.load theme_data
(expect theme.brand_ten).to be 10
(expect theme.brand_a_string).to eql 'ten*10'
(expect theme.brand_another_string).to eql 'ten-10'
end
it 'should resolve fixed units before computing value' do
theme_data = YAML.safe_load <<~'EOS'
title-page:
title:
top: 3in / 4
EOS
theme = subject.new.load theme_data
(expect theme.title_page_title_top).to eql 54
end
it 'should apply precision functions to value' do
theme_data = YAML.safe_load <<~'EOS'
base:
font_size: 10.5
heading:
h1_font_size: ceil($base_font_size * 2.6)
h2_font_size: floor($base_font_size * 2.1)
h3_font_size: round($base_font_size * 1.5)
EOS
theme = subject.new.load theme_data
(expect theme.heading_h1_font_size).to be 28
(expect theme.heading_h2_font_size).to be 22
(expect theme.heading_h3_font_size).to be 16
end
it 'should resolve variable references in font catalog' do
theme_data = YAML.safe_load <<~'EOS'
vars:
serif-font: /path/to/serif-font.ttf
font:
catalog:
Serif:
normal: $vars-serif-font
EOS
theme = subject.new.load theme_data
(expect theme.font_catalog).to be_a Hash
(expect theme.font_catalog['Serif']).to be_a Hash
(expect theme.font_catalog['Serif']['normal']).to eql '/path/to/serif-font.ttf'
end
end
end
|