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 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
|
# typed: false
# coding: utf-8
# These specs are a kind of integration spec. They're not unit testing small pieces
# of code, it's just parsing a range of PDF files and ensuring the result is
# consistent. An extra check to make sure parsing these files will continue
# to work for our users.
#
# Where possible, specs that unit test correctly should be written in addition to
# these
describe PDF::Reader, "integration specs" do
context "cairo-unicode-short" do
let(:filename) { pdf_spec_file("cairo-unicode-short") }
it "extracts unicode strings correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eql("Chunky Bacon")
end
end
it "extracts unicode strings correctly from part of the page" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(
page.text(rect: PDF::Reader::Rectangle.new(29, 779, 100, 800))
).to eql("Chunky")
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# pitstop co-ords
# C 32.0176, 779.5879
# h 48.8279, 779.89
# u 60.2067, 779.5879
# n 73.8355, 779.89
# k 87.3393, 779.89
# y 97.3745, 775.4526
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(29, 779, 100, 800)
)
expect(some_runs.size).to eql(6)
expect(some_runs[0].text).to eql("C")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(30,779.89))
expect(some_runs[1].text).to eql("h")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(44.89,779.89))
expect(some_runs[2].text).to eql("u")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(58.39, 779.89))
expect(some_runs[3].text).to eql("n")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(71.89, 779.89))
expect(some_runs[4].text).to eql("k")
expect(some_runs[4].origin).to be_close_to(PDF::Reader::Point.new(85.40, 779.89))
expect(some_runs[5].text).to eql("y")
expect(some_runs[5].origin).to be_close_to(PDF::Reader::Point.new(96.73, 779.89))
end
end
it "is portrait orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("portrait")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 portrait
expect(page.width).to be_within(0.1).of(595.28)
expect(page.height).to be_within(0.1).of(841.89)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin).to eq PDF::Reader::Point.new(0,0)
end
end
end
context "vertical-text-in-identity-v" do
let(:filename) { pdf_spec_file("vertical-text-in-identity-v") }
it "interprets Identity-V encoded strings correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text.split.map(&:strip)).to eql(%w{V e r t i c a l T e x t})
end
end
end
context "adobe_sample" do
let(:filename) { pdf_spec_file("adobe_sample") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("This is a sample PDF file")
expect(page.text).to include("If you can read this, you already have Adobe Acrobat")
end
end
end
context "dutch PDF with NBSP characters" do
let(:filename) { pdf_spec_file("dutch") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.pages.size).to eql(3)
page = reader.page(1)
expect(page.text).to include(
"Dit\302\240is\302\240een\302\240pdf\302\240test\302\240van\302\240drie\302\240pagina"
)
expect(page.text).to include("’s")
expect(page.text).to include("Pagina\302\2401")
end
end
end
context "PDF with a difference table" do
let(:filename) { pdf_spec_file("difference_table") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eql("Goiás")
end
end
end
context "PDF with a difference table (v2)" do
let(:filename) { pdf_spec_file("difference_table2") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eql("This PDF contains ligatures,for example in “file”and “floor”.")
end
end
end
context "PDF with a content stream that has trailing whitespace" do
let(:filename) { pdf_spec_file("content_stream_trailing_whitespace") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to match(/Tax\s+Invoice/)
end
end
end
context "PDF with a content stream that is enclosed with CR characters only" do
let(:filename) { pdf_spec_file("content_stream_cr_only") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("This is a weird PDF file")
end
end
end
context "PDF with a content stream that is missing an operator (has hanging params)" do
let(:filename) { pdf_spec_file("content_stream_missing_final_operator") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to match(/Locatrix/)
expect(reader.page(2).text).to match(/Ubuntu/)
end
end
end
# this spec is to detect an hard lock issue some people were encountering on some OSX
# systems. Real pain to debug.
context "PDF with a string containing a high byte (D1) under MacRomanEncoding" do
let(:filename) { pdf_spec_file("hard_lock_under_osx") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text[0,1]).to eql("’")
end
end
end
context "PDF with a stream that has its length specified as an indirect reference" do
let(:filename) { pdf_spec_file("content_stream_with_length_as_ref") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("Hello World")
end
end
end
# PDF::Reader::XRef#object was saving an incorrect position when seeking. We
# were saving the current pos of the underlying IO stream, then seeking back
# to it. This was fine, except when there was still content in the buffer.
context "PDF with a stream length specified via indirect object and uses windows line breaks" do
let(:filename) { pdf_spec_file("content_stream_with_length_as_ref_and_windows_breaks") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("Hello World")
end
end
end
context "PDF that uses an ASCII85Decode filter" do
let(:filename) { pdf_spec_file("ascii85_filter") }
# The text on this page is rotated 45 degrees, so mapping it to plain text isn't straight
# forward. Still, it'd be nice to see if this can be improved somehow
#
# If not, maybe it'd be good to drop this spec, and replace it with one that confirms the text
# position if a few key characters
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
lines = reader.page(1).text.split("\n")
expect(lines[0].strip).to eq("E")
expect(lines[1].strip).to eq("t Iu")
end
end
end
context "PDF that has an inline image in a content stream with no line breaks" do
let(:filename) { pdf_spec_file("inline_image_single_line_content_stream") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text.strip[0,7]).to eql("WORKING")
end
end
end
context "PDF that has dummy inline data no white-space before EI" do
let(:filename) { pdf_spec_file("inline_data_followed_by_ei") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("ID followed by EI on same line\n__END__")
end
end
end
context "PDF that uses Form XObjects to repeat content" do
let(:filename) { pdf_spec_file("form_xobject") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("James Healy")
expect(reader.page(2).text).to eql("James Healy")
end
end
end
context "PDF that uses Form XObjects to repeat content" do
let(:filename) { pdf_spec_file("form_xobject_more") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to include("Some regular content")
expect(reader.page(1).text).to include("James Healy")
expect(reader.page(2).text).to include("€10")
expect(reader.page(2).text).to include("James Healy")
end
end
end
context "PDF that uses indirect Form XObjects to repeat content" do
let(:filename) { pdf_spec_file("indirect_xobject") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).not_to be_nil
end
end
end
context "PDF that has a Form XObjects that references itself" do
let(:filename) { pdf_spec_file("form_xobject_recursive") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to include("this form XObject contains a reference to itself")
end
end
end
context "PDF that uses multiple content streams for a single page" do
let(:filename) { pdf_spec_file("split_params_and_operator") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to include("My name is")
expect(reader.page(1).text).to include("James Healy")
end
end
end
context "PDF that has a single space after the EOF marker" do
let(:filename) { pdf_spec_file("space_after_eof") }
# This text is rotated at 45 degrees, which isn't particularly easy to map to plain text
# It would be nice if all the "Hello World" characters were at least visible though
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql(" r\n loo\nHe")
end
end
end
context "PDF that was generated in open office 3" do
let(:filename) { pdf_spec_file("oo3") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to include("test")
end
end
end
context "PDF has newlines at the start of a content stream" do
let(:filename) { pdf_spec_file("content_stream_begins_with_newline") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("This file has a content stream that begins with \\n\\n")
end
end
end
context "PDF has password mutiple of 32" do
let(:filename) { pdf_spec_file("encrypted_pdf_with_64_chars_string") }
let(:pass) { "8c24e855ef6f2eeabe9beb87478cef5ba14aa6e627364f3c7e2b1101bb791729" }
context "with the user pass" do
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("Dummy PDF file")
end
end
end
end
context "encrypted_version1_revision2_40bit_rc4_user_pass_apples" do
let(:filename) { pdf_spec_file("encrypted_version1_revision2_40bit_rc4_user_pass_apples") }
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115142929+11'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115142929+11'00'"
)
end
end
end
end
context "encrypted_version1_revision2_128bit_rc4_blank_user_password" do
let(:filename) { pdf_spec_file("encrypted_version1_revision2_128bit_rc4_blank_user_password") }
context "with no user pass" do
it "correctly extracts text" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("WOOOOO DOCUMENT!")
end
end
end
context "with the owner pass" do
it "correctly extracts text"
end
end
context "encrypted_version2_revision3_128bit_rc4_blank_user_pass" do
let(:filename) { pdf_spec_file("encrypted_version2_revision3_128bit_rc4_blank_user_pass") }
context "with no user pass" do
it "correctly extracts text" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("This sample file is encrypted with no user password")
end
end
end
context "with the owner pass" do
it "correctly extracts text"
end
end
context "encrypted_version1_revision2_128bit_rc4_no_doc_id" do
let(:filename) {pdf_spec_file("encrypted_version1_revision2_128bit_rc4_no_doc_id") }
context "with no user pass" do
it "correctly extracts text" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql(
"This encryped file breaks compatability with the PDF spec " \
"because it has no document ID"
)
end
end
end
context "with the owner pass" do
it "correctly extracts text"
end
end
context "encrypted_version2_revision3_128bit_rc4_user_pass_apples" do
let(:filename) { pdf_spec_file("encrypted_version2_revision3_128bit_rc4_user_pass_apples") }
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'"
)
end
end
end
context "with no pass" do
it "raises an exception" do
expect {
PDF::Reader.open(filename) do |reader|
reader.page(1).text
end
}.to raise_error(PDF::Reader::EncryptedPDFError)
end
end
end
context "encrypted_version4_revision_4user_pass_apples_enc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version4_revision4_128bit_rc4_user_pass_apples_enc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170114125054+11'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170114125054+11'00'"
)
end
end
end
end
context "encrypted_version4_revision4_128bit_rc4_user_pass_apples_unenc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version4_revision4_128bit_rc4_user_pass_apples_unenc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate => "D:20170114125141+11'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate => "D:20170114125141+11'00'"
)
end
end
end
end
context "encrypted_version4_revision4_128bit_aes_user_pass_apples_enc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version4_revision4_128bit_aes_user_pass_apples_enc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:CreationDate=>"D:20110814231057+10'00'",
:Creator=>"Writer",
:ModDate=>"D:20170115224117+11'00'",
:Producer=>"LibreOffice 3.3",
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:CreationDate=>"D:20110814231057+10'00'",
:Creator=>"Writer",
:ModDate=>"D:20170115224117+11'00'",
:Producer=>"LibreOffice 3.3",
)
end
end
end
end
context "encrypted_version4_revision4_128bit_aes_user_pass_apples_unenc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version4_revision4_128bit_aes_user_pass_apples_unenc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:CreationDate=>"D:20110814231057+10'00'",
:Creator=>"Writer",
:ModDate=>"D:20170115224244+11'00'",
:Producer=>"LibreOffice 3.3",
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:CreationDate=>"D:20110814231057+10'00'",
:Creator=>"Writer",
:ModDate=>"D:20170115224244+11'00'",
:Producer=>"LibreOffice 3.3",
)
end
end
end
end
context "encrypted_version5_revision5_256bit_aes_user_pass_apples_enc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version5_revision5_256bit_aes_user_pass_apples_enc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Author => "Gyuchang Jun",
:CreationDate => "D:20170312093033+00'00'",
:Creator => "Microsoft Word",
:ModDate => "D:20170312093033+00'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Author => "Gyuchang Jun",
:CreationDate => "D:20170312093033+00'00'",
:Creator => "Microsoft Word",
:ModDate => "D:20170312093033+00'00'"
)
end
end
end
end
context "encrypted_version5_revision5_256bit_aes_user_pass_apples_unenc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version5_revision5_256bit_aes_user_pass_apples_unenc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Author => "Gyuchang Jun",
:CreationDate => "D:20170312093033+00'00'",
:Creator => "Microsoft Word",
:ModDate => "D:20170312093033+00'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to include("This sample file is encrypted")
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Author => "Gyuchang Jun",
:CreationDate => "D:20170312093033+00'00'",
:Creator => "Microsoft Word",
:ModDate => "D:20170312093033+00'00'"
)
end
end
end
end
context "encrypted_version5_revision6_256bit_aes_user_pass_apples_enc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version5_revision6_256bit_aes_user_pass_apples_enc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to start_with(
"This sample file is encrypted with a user password"
)
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115224358+11'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to start_with(
"This sample file is encrypted with a user password"
)
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115224358+11'00'"
)
end
end
end
end
context "encrypted_version5_revision6_256bit_aes_user_pass_apples_unenc_metadata" do
let(:filename) {
pdf_spec_file("encrypted_version5_revision6_256bit_aes_user_pass_apples_unenc_metadata")
}
context "with the user pass" do
let(:pass) { "apples" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to start_with(
"This sample file is encrypted with a user password"
)
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115224526+11'00'"
)
end
end
end
context "with the owner pass" do
let(:pass) { "password" }
it "correctly extracts text" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.page(1).text).to start_with(
"This sample file is encrypted with a user password"
)
end
end
it "correctly extracts info" do
PDF::Reader.open(filename, :password => pass) do |reader|
expect(reader.info).to eq(
:Creator=>"Writer",
:Producer=>"LibreOffice 3.3",
:CreationDate=>"D:20110814231057+10'00'",
:ModDate=>"D:20170115224526+11'00'"
)
end
end
end
end
context "Encrypted PDF with an xref stream" do
let(:filename) {
pdf_spec_file("encrypted_and_xref_stream")
}
it "correctly extracts text" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eq("This text is encrypted")
end
end
it "correctly parses indirect objects" do
PDF::Reader.open(filename) do |reader|
expect { reader.objects.values }.not_to raise_error
end
end
end
context "PDF with inline images" do
let(:filename) { pdf_spec_file("inline_image") }
it "extracts inline images correctly" do
@browser = PDF::Reader.new(filename)
@page = @browser.page(1)
receiver = PDF::Reader::RegisterReceiver.new
@page.walk(receiver)
callbacks = receiver.series(:begin_inline_image, :begin_inline_image_data, :end_inline_image)
# inline images should trigger 3 callbacks. The first with no args.
expect(callbacks[0]).to eql(:name => :begin_inline_image, :args => [])
# the second with the image header (colorspace, etc)
expect(callbacks[1]).to eql(
:name => :begin_inline_image_data,
:args => [:CS, :RGB, :I, true, :W, 234, :H, 70, :BPC, 8]
)
# the last with the image data
expect(callbacks[2][:name]).to eql :end_inline_image
image_data = callbacks[2][:args].first
expect(image_data).to be_a(String)
expect(image_data.size).to eql 49140
expect(image_data[0,3].unpack("C*")).to eql [255,255,255]
expect(image_data[-3,3].unpack("C*")).to eql [255,255,255]
end
end
context "PDF with a page that has multiple content streams" do
let(:filename) { pdf_spec_file("content_stream_as_array") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to include("Arkansas Declaration Relating")
end
end
end
context "PDF with a junk prefix" do
let(:filename) { pdf_spec_file("junk_prefix") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eql("This PDF contains junk before the %-PDF marker")
end
end
end
context "PDF with a 1024 bytes of junk prefix" do
let(:filename) { pdf_spec_file("junk_prefix_1024") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eql("This PDF contains junk before the %-PDF marker")
end
end
end
context "PDF that has a cmap entry that uses ligatures" do
let(:filename) { pdf_spec_file("ligature_integration_sample") }
it "extracts text correctly" do
# there are two locations in the following pdf that have the following sequence
# [ 85, 68, 73, 192, 70] after cmap translation this should yield
# [[114], [97], [102], [102, 105], [99]] or more specifically
# [r, a, f, fi, c]
#
# prior to commit d37b4bf52e243dfb999fa0cda791449c50f6d16d
# the fi would be returned as f
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
m = /raffic/.match(page.text)
expect(m[0].to_s).to eql("raffic")
end
end
end
context "PDF that has a cmap entry that contains surrogate pairs" do
let(:filename) { pdf_spec_file("surrogate_pair_integration_sample") }
it "extracts text correctly" do
# the following pdf has a sequence in it that requires 32-bit Unicode, pdf requires
# all text to be stored in 16-bit. To acheive this surrogate-pairs are used. cmap
# converts the surrogate-pairs back to 32-bit and ruby handles them nicely.
# the following sequence exists in this pdf page
# \u{1d475}\u{1d468}\u{1d47a}\u{1d46a}\u{1d468}\u{1d479} => NASCAR
# these codepoints are in the "Math Alphanumeric Symbols (Italic) section of Unicode"
#
# prior to commit d37b4bf52e243dfb999fa0cda791449c50f6d16d
# pdf-reader would return Nil instead of the correct unicode character
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# 𝑵𝑨𝑺𝑪𝑨𝑹
utf8_str = [0x1d475, 0x1d468, 0x1d47a, 0x1d46a, 0x1d468, 0x1d479].pack("U*")
expect(page.text).to include(utf8_str)
end
end
end
context "PDF that uses a standatd font and a ligature" do
let(:filename) { pdf_spec_file("standard_font_with_a_difference") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("The following word uses a ligature: five")
end
end
end
context "PDF that uses a type1 font that isn't embedded and isn't one of the 14 built-ins" do
let(:filename) { pdf_spec_file("type1-arial") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("This text uses a Type1 font that isn't embedded")
end
end
end
context "PDF that uses a TrueType font that isn't embedded and has no metrics" do
let(:filename) { pdf_spec_file("truetype-arial") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to start_with("This text uses a TrueType font that isn't embedded")
end
end
end
context "PDF that uses a type3 bitmap font" do
let(:filename) { pdf_spec_file("type3_font") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("a\nb\nc")
end
end
end
context "PDF that uses a type3 bitmap font with a rare FontMatrix" do
let(:filename) { pdf_spec_file("type3_font_with_rare_font_matrix") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("ParallelGenetic Algorithms")
end
end
end
context "PDF with a Type0 font and Encoding is a CMap called OneByteIdentityH" do
let(:filename) { pdf_spec_file("one-byte-identity") }
# I'm not 100% confident that we'rr correctly handling OneByteIdentityH files in a way
# that will always work. It works for the sample file I have though, so that's better than
# nothing
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("abc")
end
end
end
context "PDF with rotated text" do
let(:filename) { pdf_spec_file("rotated_text") }
# TODO this spec isn't ideal as our support for extracting rotated text is quite
# rubbish. I've added this to ensure we don't throw an exception with
# rotated text. It's a start.
it "extracts text without raising an exception" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text.split("\n").map(&:strip).slice(0,2)).to eq(["0","9"])
end
end
end
context "PDF with a TJ operator that receives an array starting with a number" do
let(:filename) { pdf_spec_file("TJ_starts_with_a_number") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text[0,18]).to eq("This file has a TJ")
end
end
end
context "PDF with a TJ operator that aims to correct for character spacing" do
let(:filename) { pdf_spec_file("TJ_and_char_spacing") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text[15,17]).to eq("The big brown fox")
end
end
end
context "PDF with a page that's missing the MediaBox attribute" do
let(:filename) { pdf_spec_file("mediabox_missing") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text[0,54]).to eq("This page is missing the compulsory MediaBox attribute")
end
end
it "is portrait orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("portrait")
end
end
it "returns correct page dimensions (defaults to portrait US letter)" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.width).to be_within(0.1).of(612)
expect(page.height).to be_within(0.1).of(792)
end
end
end
context "PDF using a standard fint and no difference table" do
let(:filename) { pdf_spec_file("standard_font_with_no_difference") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("This page uses contains a €")
end
end
end
context "PDF using zapf dingbats" do
let(:filename) { pdf_spec_file("zapf") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("✄☎✇")
end
end
end
context "PDF using symbol text" do
let(:filename) { pdf_spec_file("symbol") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("θρ")
end
end
end
context "Scanned PDF with invisible text added by ClearScan" do
let(:filename) { pdf_spec_file("clearscan") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("This document was scanned and then OCRd with Adobe ClearScan")
end
end
end
context "PDF with text that contains a control char" do
let(:filename) { pdf_spec_file("times-with-control-character") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("This text includes an ASCII control")
end
end
end
context "PDF where the top-level Pages object has no Type" do
let(:filename) { pdf_spec_file("pages_object_missing_type") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("The top level Pages object has no Type")
end
end
end
context "PDF where the entries in a Kids array are direct objects, rather than indirect" do
let(:filename) { pdf_spec_file("kids-as-direct-objects") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("page 1")
end
end
end
context "PDF with text positioned at 0,0" do
let(:filename) { pdf_spec_file("minimal") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("Hello World")
end
end
end
context "PDF with bad xref: using 1 not 0" do
let(:filename) { pdf_spec_file("minimal-xref-1") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("Hello World")
end
end
end
context "PDF with octal data" do
let(:filename) { pdf_spec_file("octal101") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("A ]A[")
end
end
end
context "PDF with octal data" do
let(:filename) { pdf_spec_file("octal74") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("< ]<8[")
end
end
end
context "PDF with CR line-wrapped text" do
let(:filename) { pdf_spec_file("textwrapcr") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("aaaa bbbb")
end
end
end
context "PDF with LF line-wrapped text" do
let(:filename) { pdf_spec_file("textwraplf") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("aaaa bbbb")
end
end
end
context "PDF with CRLF line-wrapped text" do
let(:filename) { pdf_spec_file("textwrapcrlf") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("aaaabbbb")
end
end
end
context "PDF with LFCR line-wrapped text" do
let(:filename) { pdf_spec_file("textwraplfcr") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("aaaabbbb")
end
end
end
context "PDF with MediaBox specified as an indirect object" do
let(:filename) { pdf_spec_file("indirect_mediabox") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq("The MediaBox for this page is specified via an indirect object")
end
end
end
context "PDF with overlapping chars to achieve fake bold effect" do
let(:filename) { pdf_spec_file("overlapping-chars-xy-fake-bold") }
let(:text) {
"Some characters that overlap with different X and Y to achieve a fake bold effect"
}
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
end
context "PDF with overlapping chars (same Y pos) to achieve fake bold effect" do
let(:filename) { pdf_spec_file("overlapping-chars-x-fake-bold") }
let(:text) {
"Some characters that overlap with different X to achieve a fake bold effect"
}
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
end
context "PDF with 180 page rotation followed by matrix transformations to undo it" do
let(:filename) { pdf_spec_file("rotate-180") }
let(:text) {
"This text is rendered upside down\nand then the page is rotated"
}
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# Pitstop numbers
#
# u -437.08, -68.018
# p -431.054, -70.4555
# s -424.851, -68.018
# i -420.4, -67.9
# d -416.918, -68.018
# e -410.978, -68.018
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(-438, -68, -405, -62)
)
expect(some_runs.size).to eql(6)
expect(some_runs[0].text).to eql("u")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(-437.24, -67.9))
expect(some_runs[1].text).to eql("p")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(-431.24, -67.9))
expect(some_runs[2].text).to eql("s")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(-425.34, -67.9))
expect(some_runs[3].text).to eql("i")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(-420.65, -67.9))
expect(some_runs[4].text).to eql("d")
expect(some_runs[4].origin).to be_close_to(PDF::Reader::Point.new(-417.35, -67.9))
expect(some_runs[5].text).to eql("e")
expect(some_runs[5].origin).to be_close_to(PDF::Reader::Point.new(-411.26, -67.9))
end
end
it "is portrait orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("portrait")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 portrait
expect(page.width).to be_within(0.1).of(595.30)
expect(page.height).to be_within(0.1).of(841.88)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin.x).to be_within(0.1).of(-595.30)
expect(page.origin.y).to be_within(0.1).of(-841.88)
end
end
end
context "PDF with page rotation of 270 degrees followed by matrix transformations to undo it" do
let(:filename) { pdf_spec_file("rotate-then-undo") }
let(:text) {
"This page uses matrix transformations to print text sideways, " +
"then has a Rotate key to fix it"
}
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# Pitstop Numbers
#
# T -570.28, 750.95
# h -560.86, 750.95
# i -553.38, 750.95
# s -550.68, 750.76
#
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(-572, 749, -545, 760)
)
expect(some_runs.size).to eql(4)
expect(some_runs[0].text).to eql("T")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(-570.24, 750.95))
expect(some_runs[1].text).to eql("h")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(-561.95, 750.95))
expect(some_runs[2].text).to eql("i")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(-554.40, 750.95))
expect(some_runs[3].text).to eql("s")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(-551.39, 750.95))
end
end
it "is portrait orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("portrait")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 portrait
expect(page.width).to be_within(0.1).of(595.30)
expect(page.height).to be_within(0.1).of(841.88)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin.x).to be_within(0.1).of(-595.30)
expect(page.origin.y).to be_within(0.1).of(0)
end
end
end
context "PDF with 270° page rotation and matrix transformations within BT block to undo" do
let(:filename) { pdf_spec_file("rotate-270-then-undo-inside-bt") }
let(:text) { "This page is rotated 270 degrees" }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# Pitstop numbers
#
# T -320.736, 534
# h -312.408, 534
# i -305.796, 534
# s -303.408, 533.832
#
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(-322, 534, -300, 550)
)
expect(some_runs.size).to eql(4)
expect(some_runs[0].text).to eql("T")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(-320.2, 534.5))
expect(some_runs[1].text).to eql("h")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(-312.86, 534.5))
expect(some_runs[2].text).to eql("i")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(-306.19, 534.5))
expect(some_runs[3].text).to eql("s")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(-303.532, 534.5))
end
end
it "is portrait orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("portrait")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 portrait
expect(page.width).to be_within(0.1).of(595.30)
expect(page.height).to be_within(0.1).of(841.88)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin.x).to be_within(0.1).of(-595.30)
expect(page.origin.y).to be_within(0.1).of(0)
end
end
end
context "PDF with page rotation of 90 degrees followed by matrix transformations to undo it" do
let(:filename) { pdf_spec_file("rotate-90-then-undo") }
let(:text) {
"1: This PDF has Rotate:90 in the page metadata\n" +
"2: to get a landscape layout, and then uses matrix\n" +
"3: transformation to rotate the text back to normal"
}
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to eq(text)
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# Pitstop numbers
#
# T 287.298, -45.49
# h 295.626, -45.49
# i 302.238, -45.49
# s 304.626, -45.658
#
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(285, -47, 310, -35)
)
expect(some_runs.size).to eql(4)
expect(some_runs[0].text).to eql("T")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(287.33, -45.49))
expect(some_runs[1].text).to eql("h")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(294.66, -45.49))
expect(some_runs[2].text).to eql("i")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(301.33, -45.49))
expect(some_runs[3].text).to eql("s")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(304, -45.49))
end
end
it "is portrait landscape" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("landscape")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 landscape
expect(page.width).to be_within(0.1).of(842)
expect(page.height).to be_within(0.1).of(595)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin.x).to be_within(0.1).of(0)
expect(page.origin.y).to be_within(0.1).of(-595)
end
end
end
context "PDF with page rotation of 90 degrees followed by matrix transformations to undo it" do
let(:filename) { pdf_spec_file("rotate-90-then-undo-with-br-text") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.text).to include("This PDF has Rotate:90 in the page")
expect(page.text).to include("metadata to get a landscape layout")
expect(page.text).to include("and text in bottom right quadrant")
end
end
# This spec assumes high precision in our glyph positioning calcualtions. It's likely
# that the specific x,y co-ords tested here might change a bit over time as small bugs
# in glyph positioning are ironed out (kerning, etc). I still think this test is worthwhile,
# to confirm the positions don't change unintentionally.
#
# Pitstop Numbers
#
# p 216.026, -525.906
# a 222.398, -523.578
# g 228.986, -525.906
# e 235.682, -523.578
#
it "extracts individual chars with correct positions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
some_runs = page.runs(
merge: false,
rect: PDF::Reader::Rectangle.new(212, -524, 239, -520)
)
expect(some_runs.size).to eql(4)
expect(some_runs[0].text).to eql("p")
expect(some_runs[0].origin).to be_close_to(PDF::Reader::Point.new(215.06, -523.41))
expect(some_runs[1].text).to eql("a")
expect(some_runs[1].origin).to be_close_to(PDF::Reader::Point.new(221.73, -523.41))
expect(some_runs[2].text).to eql("g")
expect(some_runs[2].origin).to be_close_to(PDF::Reader::Point.new(228.41, -523.41))
expect(some_runs[3].text).to eql("e")
expect(some_runs[3].origin).to be_close_to(PDF::Reader::Point.new(235.08, -523.41))
end
end
it "is landscape orientation" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.orientation).to eql("landscape")
end
end
it "returns correct page dimensions" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
# A4 landscape
expect(page.width).to be_within(0.1).of(842)
expect(page.height).to be_within(0.1).of(595)
end
end
it "returns correct origin" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.origin.x).to be_within(0.1).of(0)
expect(page.origin.y).to be_within(0.1).of(-595)
end
end
end
context "PDF with /Prev 0 trailer entry" do
let(:filename) { pdf_spec_file("prev0") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql("aaaa bbbb")
end
end
end
context "Content stream with indirect object for filters array" do
let(:filename) { pdf_spec_file("stream-with-indirect-filters") }
it "extracts text correctly" do
PDF::Reader.open(filename) do |reader|
expect(reader.page(1).text).to eql(
"The content stream for this page stores the filter in an indirect object"
)
end
end
end
context "PDF with text outside the CropBox and MediaBox" do
let(:filename) { pdf_spec_file("text_outside_cropbox_and_mediabox") }
it "returns the correct rectangles for the page 1" do
PDF::Reader.open(filename) do |reader|
page = reader.page(1)
expect(page.rectangles[:MediaBox]).to eq(PDF::Reader::Rectangle.new(0, 0, 612, 792))
expect(page.rectangles[:CropBox]).to eq(PDF::Reader::Rectangle.new(100, 100, 412, 592))
end
end
it "by default only extracts text inside the CropBox" do
PDF::Reader.open(filename) do |reader|
text = reader.page(1).text
expect(text).to include("This text is inside the CropBox")
expect(text).to_not include("Between CropBox and MediaBox")
expect(text).to_not include("Outside MediaBox")
end
end
it "by default only extracts runs inside the CropBox" do
PDF::Reader.open(filename) do |reader|
text_from_runs = reader.page(1).runs.map(&:text).join(" ")
expect(text_from_runs).to include("This text is inside the CropBox")
expect(text_from_runs).to_not include("Between CropBox and MediaBox")
expect(text_from_runs).to_not include("Outside MediaBox")
end
end
it "can extract text between CropBox and MediaBox with a custom option" do
PDF::Reader.open(filename) do |reader|
text = reader.page(1).text(rect: PDF::Reader::Rectangle.new(0, 0, 612, 792))
expect(text).to include("This text is inside the CropBox")
expect(text).to include("Between CropBox and MediaBox")
expect(text).to_not include("Outside MediaBox")
end
end
it "can extract runs between CropBox and MediaBox with a custom option" do
mediabox = PDF::Reader::Rectangle.new(0, 0, 612, 792)
PDF::Reader.open(filename) do |reader|
text_from_runs = reader.page(1).runs(rect: mediabox).map(&:text).join(" ")
expect(text_from_runs).to include("This text is inside the CropBox")
expect(text_from_runs).to include("Between CropBox and MediaBox")
expect(text_from_runs).to_not include("Outside MediaBox")
end
end
# This currently doesn't work - PDF::Reader::PageLayout skips text that's outside the MediaBox
# I'm not sure we want it to work either, but I'm adding it as a pending spec for completeness
# while I consider the best options
it "can extract text outside the MediaBox with a custom option"
it "can extract runs outside the MediaBox with a custom option" do
larger_than_mediabox = PDF::Reader::Rectangle.new(0, 0, 900, 900)
PDF::Reader.open(filename) do |reader|
text_from_runs = reader.page(1).runs(rect: larger_than_mediabox).map(&:text).join(" ")
expect(text_from_runs).to include("This text is inside the CropBox")
expect(text_from_runs).to include("Between CropBox and MediaBox")
expect(text_from_runs).to include("Outside MediaBox")
end
end
end
context "PDF with different font sizes" do
let(:filename) { pdf_spec_file("font_sizes") }
it "extracts font sizes correctly" do
PDF::Reader.open(filename) do |reader|
text_runs = reader.page(1).runs
expect(text_runs.size).to eql(4)
expect(text_runs.map(&:font_size)).to eql([90.0, 90.0, 12.0, 12.0])
end
end
it "excludes text by font size" do
PDF::Reader.open(filename) do |reader|
filter = {font_size: {greater_than: 20}}
expect(reader.page(1).text(exclude: filter)).to eql("small1\nsmall2")
end
end
it "includes only text by font size" do
PDF::Reader.open(filename) do |reader|
filter = {font_size: {greater_than: 20}}
expect(reader.page(1).text(only: filter)).to eql("BIG1\nBIG2")
end
end
it "excludes text when including text" do
PDF::Reader.open(filename) do |reader|
filter = {text: {include: "1"}}
expect(reader.page(1).text(exclude: filter)).to eql("BIG2\nsmall2")
end
end
end
end
|