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
|
# frozen_string_literal: true
require_relative 'spec_helper'
describe 'Asciidoctor::PDF::Converter - Outline' do
context 'General' do
it 'should set /PageMode /UseOutlines in PDF catalog to enable outline hierarchy' do
pdf = to_pdf <<~'EOS'
= Document Title
== First
== Last
EOS
(expect pdf.catalog[:PageMode]).to eql :UseOutlines
end
it 'should set /NonFullScreenPageMode /UseOutlines in PDF catalog if fullscreen mode is enabled' do
pdf = to_pdf <<~'EOS'
= Document Title
:pdf-page-mode: fullscreen
== First
== Last
EOS
(expect pdf.catalog[:PageMode]).not_to eql :UseOutlines
(expect pdf.catalog[:NonFullScreenPageMode]).to eql :UseOutlines
end
it 'should not create outline if the outline document attribute is unset in document' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:!outline:
== First Chapter
=== Chapter Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to be_empty
end
it 'should not create outline if the outline document attribute is unset via API' do
pdf = to_pdf <<~'EOS', attribute_overrides: { 'outline' => nil }
= Document Title
:doctype: book
== First Chapter
=== Chapter Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to be_empty
end
it 'should create an outline to navigate the document structure' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
== First Chapter
=== Chapter Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to have_size 4
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql 'i'
(expect outline[0][:dest][:top]).to be true
(expect outline[0][:children]).to be_empty
(expect outline[1][:title]).to eql 'First Chapter'
(expect outline[1][:dest][:pagenum]).to be 2
(expect outline[1][:dest][:label]).to eql '1'
(expect outline[1][:dest][:top]).to be true
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).to have_size 1
(expect outline[1][:children][0][:title]).to eql 'Chapter Section'
(expect outline[1][:children][0][:dest][:pagenum]).to be 2
(expect outline[1][:children][0][:dest][:label]).to eql '1'
(expect outline[1][:children][0][:dest][:top]).to be false
(expect outline[1][:children][0][:children]).to be_empty
chapter_section_ref = (get_names pdf)['_chapter_section']
(expect chapter_section_ref).not_to be_nil
chapter_section_obj = pdf.objects[chapter_section_ref]
(expect outline[1][:children][0][:dest][:y]).to eql chapter_section_obj[3]
(expect outline[1][:children][0][:dest][:pagenum]).to eql get_page_number pdf, chapter_section_obj[0]
(expect outline[3][:title]).to eql 'Last Chapter'
(expect outline[3][:dest][:pagenum]).to be 4
(expect outline[3][:dest][:label]).to eql '3'
(expect outline[3][:dest][:top]).to be true
(expect outline[3][:children]).to be_empty
end
it 'should generate outline for book that only consists of doctitle' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
EOS
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql 'i'
(expect outline[0][:children]).to be_empty
end
it 'should not generate outline for book that only consists of front cover' do
pdf = to_pdf <<~'EOS'
:front-cover-image: image:cover.jpg[]
:doctype: book
EOS
(expect pdf.pages).to have_size 1
outline = extract_outline pdf
(expect outline).to have_size 0
end
it 'should generate outline for article that only consists of doctitle' do
pdf = to_pdf <<~'EOS'
= Document Title
EOS
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql '1'
(expect outline[0][:children]).to be_empty
end
it 'should not generate outline for article that only consists of front cover' do
pdf = to_pdf <<~'EOS'
:front-cover-image: image:cover.jpg[]
EOS
(expect pdf.pages).to have_size 1
outline = extract_outline pdf
(expect outline).to have_size 0
end
end
context 'Depth' do
it 'should limit outline depth according to value of toclevels attribute' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:toclevels: 1
== First Chapter
=== Chapter Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to have_size 4
(expect outline[1][:title]).to eql 'First Chapter'
(expect outline[1][:children]).to be_empty
end
it 'should allow outline depth to exceed toclevels if outlinelevels attribute is set' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:toclevels: 1
:outlinelevels: 2
== First Chapter
=== Chapter Section
==== Nested Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to have_size 4
(expect outline[1][:title]).to eql 'First Chapter'
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).not_to be_empty
(expect outline[1][:children][0][:title]).to eql 'Chapter Section'
(expect outline[1][:children][0][:children]).to be_empty
end
it 'should limit outline depth if value of outlinelevels attribute is less than value of toclevels attribute' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:toclevels: 2
:outlinelevels: 1
== First Chapter
=== Chapter Section
==== Nested Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to have_size 4
(expect outline[1][:title]).to eql 'First Chapter'
(expect outline[1][:children]).to be_empty
end
it 'should limit outline depth per section if value of outlinelevels attribute is specified on section' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
== First Chapter
[outlinelevels=2]
=== Chapter Section
==== Nested Section
== Middle Chapter
== Last Chapter
EOS
outline = extract_outline pdf
(expect outline).to have_size 4
(expect outline[1][:title]).to eql 'First Chapter'
(expect outline[1][:children]).not_to be_empty
first_chapter_children = outline[1][:children]
(expect first_chapter_children).to have_size 1
chapter_section = first_chapter_children[0]
(expect chapter_section[:title]).to eql 'Chapter Section'
(expect chapter_section[:children]).to be_empty
end
it 'should not include parts in outline if outlinelevels is less than 0' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:outlinelevels: -1
= Part A
== Chapter A
= Part B
== Chapter B
EOS
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
end
it 'should not include chapters in outline if outlinelevels is 0' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:outlinelevels: 0
== Chapter A
=== Topic A
== Chapter B
=== Topic B
EOS
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
end
it 'should use second argument of outlinelevels attribute to control depth at which outline is expanded' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:outlinelevels: 3:1
== Chapter
=== Section
==== Subsection
== Another Chapter
=== Another Section
EOS
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
(expect outline[1][:title]).to eql 'Chapter'
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).to have_size 1
(expect outline[1][:children][0][:title]).to eql 'Section'
(expect outline[1][:children][0][:closed]).to be true
(expect outline[1][:children][0][:children]).to have_size 1
(expect outline[1][:children][0][:children][0][:title]).to eql 'Subsection'
(expect outline[1][:children][0][:children][0][:children]).to be_empty
end
it 'should expand outline based on depth not level' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:outlinelevels: 3:1
= Part
== Chapter
=== Section
EOS
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
(expect outline[1][:title]).to eql 'Part'
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).to have_size 1
(expect outline[1][:children][0][:title]).to eql 'Chapter'
(expect outline[1][:children][0][:closed]).to be true
end
it 'should use default toclevels for outline level if only expand levels is specified' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:outlinelevels: :1
= Part
== Chapter
=== Section
==== Subsection
EOS
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
(expect outline[1][:title]).to eql 'Part'
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).to have_size 1
(expect outline[1][:children][0][:title]).to eql 'Chapter'
(expect outline[1][:children][0][:closed]).to be true
(expect outline[1][:children][0][:children]).to have_size 1
(expect outline[1][:children][0][:children][0][:title]).to eql 'Section'
(expect outline[1][:children][0][:children][0][:children]).to have_size 0
end
it 'should use value of toclevels for outline level if only expand levels is specified' do
pdf = to_pdf <<~'EOS'
= Document Title
:doctype: book
:toclevels: 3
:outlinelevels: :1
= Part
== Chapter
=== Section
==== Subsection
EOS
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[0][:children]).to be_empty
(expect outline[1][:title]).to eql 'Part'
(expect outline[1][:closed]).to be false
(expect outline[1][:children]).to have_size 1
(expect outline[1][:children][0][:title]).to eql 'Chapter'
(expect outline[1][:children][0][:closed]).to be true
(expect outline[1][:children][0][:children]).to have_size 1
(expect outline[1][:children][0][:children][0][:title]).to eql 'Section'
(expect outline[1][:children][0][:children][0][:children]).to have_size 1
(expect outline[1][:children][0][:children][0][:children][0][:title]).to eql 'Subsection'
end
end
context 'Doctitle' do
it 'should include doctitle in outline for book even if notitle attribute is set' do
pdf = to_pdf <<~'EOS'
= Book Title
:doctype: book
:notitle:
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 2
(expect pdf.pages[0].text).to eql 'Foo'
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Book Title'
(expect outline[1][:title]).to eql 'Foo'
(expect outline[1][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:pagenum]).to eql outline[1][:dest][:pagenum]
(expect outline[0][:dest][:label]).to eql outline[1][:dest][:label]
end
it 'should include doctitle in outline for article when title-page attribute is set' do
pdf = to_pdf <<~'EOS'
= Article Title
:title-page:
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 2
(expect pdf.pages[0].text).to eql 'Article Title'
(expect pdf.pages[1].text).to include 'Foo'
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Article Title'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql 'i'
(expect outline[1][:title]).to eql 'Foo'
(expect outline[1][:dest][:pagenum]).to be 2
(expect outline[1][:dest][:label]).to eql '1'
end
it 'should include doctitle in outline for article' do
pdf = to_pdf <<~'EOS'
= Article Title
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 1
(expect pdf.pages[0].text).to include 'Article Title'
(expect pdf.pages[0].text).to include 'Foo'
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Article Title'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql '1'
(expect outline[1][:title]).to eql 'Foo'
(expect outline[1][:dest][:pagenum]).to be 1
(expect outline[1][:dest][:label]).to eql '1'
end
it 'should include doctitle in outline for article even if notitle attribute is set' do
pdf = to_pdf <<~'EOS'
= Article Title
:notitle:
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 1
(expect pdf.pages[0].text).not_to include 'Article Title'
(expect pdf.pages[0].text).to include 'Foo'
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Article Title'
(expect outline[1][:title]).to eql 'Foo'
(expect outline[1][:dest][:pagenum]).to be 1
(expect outline[1][:dest][:label]).to eql '1'
(expect outline[0][:dest][:pagenum]).to eql outline[1][:dest][:pagenum]
(expect outline[0][:dest][:label]).to eql outline[1][:dest][:label]
end
it 'should not include doctitle in outline if outline-title is unset' do
pdf = to_pdf <<~'EOS'
= Article Title
:outline-title!:
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 1
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql 'Foo'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql '1'
end
it 'should allow title for document in outline to be customized using outline-title attribute' do
pdf = to_pdf <<~'EOS'
= Article Title
:outline-title: Outline
== Foo
== Bar
EOS
(expect pdf.pages).to have_size 1
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Outline'
(expect outline[0][:dest][:pagenum]).to be 1
(expect outline[0][:dest][:label]).to eql '1'
(expect outline[1][:title]).to eql 'Foo'
(expect outline[1][:dest][:pagenum]).to be 1
(expect outline[1][:dest][:label]).to eql '1'
end
it 'should link doctitle dest to second page of article with front cover' do
pdf = to_pdf <<~EOS
= Document Title
:front-cover-image: #{fixture_file 'cover.jpg', relative: true}
content page
EOS
(expect pdf.pages).to have_size 2
outline = extract_outline pdf
(expect outline).to have_size 1
doctitle_entry = outline[0]
(expect doctitle_entry[:title]).to eql 'Document Title'
(expect doctitle_entry[:dest][:pagenum]).to be 2
(expect doctitle_entry[:dest][:label]).to eql '1'
end
it 'should link doctitle dest to second page of book with front cover' do
pdf = to_pdf <<~EOS
= Document Title
:doctype: book
:front-cover-image: #{fixture_file 'cover.jpg', relative: true}
content page
EOS
(expect pdf.pages).to have_size 3
outline = extract_outline pdf
(expect outline).to have_size 1
doctitle_entry = outline[0]
(expect doctitle_entry[:title]).to eql 'Document Title'
(expect doctitle_entry[:dest][:pagenum]).to be 2
(expect doctitle_entry[:dest][:label]).to eql 'ii'
end
it 'should set doctitle in outline to value of untitled-label attribute if article has no doctitle or sections' do
pdf = to_pdf 'body only'
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Untitled'
(expect outline[0][:dest][:label]).to eql '1'
(expect outline[0][:children]).to be_empty
end
it 'should set doctitle in outline to value of untitled-label attribute if book has no doctitle or chapters' do
pdf = to_pdf 'body only', doctype: :book
outline = extract_outline pdf
(expect outline).to have_size 1
(expect outline[0][:title]).to eql 'Untitled'
(expect outline[0][:dest][:label]).to eql '1'
(expect outline[0][:children]).to be_empty
end
it 'should set doctitle in outline to value of untitled-label attribute if document has no doctitle and has sections' do
pdf = to_pdf <<~'EOS'
== First Section
== Last Section
EOS
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Untitled'
(expect outline[0][:children]).to be_empty
end
it 'should not put doctitle in outline if document has no doctitle, has sections, and untitled-label attribute is unset' do
pdf = to_pdf <<~'EOS'
:untitled-label!:
== First Section
== Last Section
EOS
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql 'First Section'
(expect outline[1][:title]).to eql 'Last Section'
end
it 'should not crash if doctitle is not set and untitled-label attribute is unset and document has no sections' do
pdf = to_pdf <<~'EOS'
:untitled-label!:
body only
EOS
(expect extract_outline pdf).to be_empty
end
end
context 'notitle section' do
it 'should add entry for visible section with notitle option' do
pdf = to_pdf <<~'EOS'
= Document Title
== Section Present
content
[%notitle]
== Title for Outline
content
EOS
outline = extract_outline pdf
(expect outline[-1][:title]).to eql 'Title for Outline'
(expect (pdf.page 1).text).not_to include 'Title for Outline'
end
it 'should not add entry for section with no blocks' do
pdf = to_pdf <<~'EOS'
= Document Title
== Section Present
content
[%notitle]
== Section Not Present
EOS
outline = extract_outline pdf
(expect outline[-1][:title]).to eql 'Section Present'
end
it 'should not add entry for section on page which has been deleted' do
pdf = to_pdf <<~'EOS'
= Document Title
== Section Present
content
<<<
[%notitle]
== Section Not Present
EOS
outline = extract_outline pdf
(expect outline[-1][:title]).to eql 'Section Present'
end
end
context 'Labels' do
it 'should label front matter pages using roman numerals' do
pdf = to_pdf <<~'EOS'
= Book Title
:doctype: book
:toc:
== Chapter 1
== Chapter 2
EOS
(expect get_page_labels pdf).to eql %w(i ii 1 2)
end
it 'should label title page using roman numeral ii if cover page is present' do
pdf = to_pdf <<~'EOS'
= Book Title
:doctype: book
:toc:
:front-cover-image: image:cover.jpg[]
== Chapter 1
== Chapter 2
EOS
(expect get_page_labels pdf).to eql %w(i ii iii 1 2)
outline = extract_outline pdf
(expect outline[0][:title]).to eql 'Book Title'
(expect outline[0][:dest][:pagenum]).to be 2
end
it 'should label first page starting with 1 if no front matter is present' do
pdf = to_pdf <<~'EOS', doctype: :book
no front matter
<<<
more content
EOS
(expect get_page_labels pdf).to eql %w(1 2)
end
end
context 'Sanitizer' do
it 'should sanitize titles' do
pdf = to_pdf <<~'EOS'
= _Document_ *Title*
:doctype: book
:sectnums:
== _First_ *Chapter*
== ((Wetland Birds))
EOS
outline = extract_outline pdf
(expect outline).to have_size 3
(expect outline[0][:title]).to eql 'Document Title'
(expect outline[1][:title]).to eql 'Chapter 1. First Chapter'
(expect outline[2][:title]).to eql 'Chapter 2. Wetland Birds'
end
it 'should decode character references in entries' do
pdf = to_pdf <<~'EOS'
= ACME(TM) Catalog <№ 1>
:doctype: book
== Paper Clips € 4
EOS
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql %(ACME\u2122 Catalog <\u2116 1>)
(expect outline[1][:title]).to eql %(Paper Clips \u20ac 4)
end
it 'should sanitize value of custom outline title' do
pdf = to_pdf <<~'EOS'
= Article Title
:outline-title: Outline <№ 1>
== Section
EOS
(expect pdf.pages).to have_size 1
outline = extract_outline pdf
(expect outline).to have_size 2
(expect outline[0][:title]).to eql %(Outline <\u2116 1>)
end
end
end
|