2019-02-10 00:50:21 -08:00
|
|
|
# © 2019 James R. Barlow: github.com/jbarlow83
|
|
|
|
#
|
2020-08-05 00:44:42 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2019-02-10 00:50:21 -08:00
|
|
|
|
2019-11-28 16:52:56 -08:00
|
|
|
from unittest.mock import patch
|
2019-02-10 00:50:21 -08:00
|
|
|
|
2019-12-19 15:29:56 -08:00
|
|
|
import pikepdf
|
2019-02-10 00:50:21 -08:00
|
|
|
import pytest
|
|
|
|
|
2019-06-12 17:52:25 -07:00
|
|
|
import ocrmypdf
|
2019-02-10 00:50:21 -08:00
|
|
|
|
2019-02-10 01:52:31 -08:00
|
|
|
|
2019-06-13 01:16:56 -07:00
|
|
|
def test_no_glyphless_graft(resources, outdir):
|
2020-03-29 22:44:16 -07:00
|
|
|
with pikepdf.open(resources / 'francais.pdf') as pdf, pikepdf.open(
|
|
|
|
resources / 'aspect.pdf'
|
|
|
|
) as pdf_aspect, pikepdf.open(resources / 'cmyk.pdf') as pdf_cmyk:
|
|
|
|
pdf.pages.extend(pdf_aspect.pages)
|
|
|
|
pdf.pages.extend(pdf_cmyk.pages)
|
|
|
|
pdf.save(outdir / 'test.pdf')
|
2019-02-10 01:52:31 -08:00
|
|
|
|
2019-11-28 16:52:56 -08:00
|
|
|
with patch('ocrmypdf._graft.MAX_REPLACE_PAGES', 2):
|
2019-07-07 02:11:44 -07:00
|
|
|
ocrmypdf.ocr(
|
2020-03-29 22:44:16 -07:00
|
|
|
outdir / 'test.pdf',
|
|
|
|
outdir / 'out.pdf',
|
|
|
|
deskew=True,
|
|
|
|
tesseract_timeout=0,
|
|
|
|
force_ocr=True,
|
2019-05-22 23:53:48 -07:00
|
|
|
)
|
2020-03-29 22:44:16 -07:00
|
|
|
# This test needs asserts
|
2019-05-12 03:36:33 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_links(resources, outpdf):
|
2019-07-07 02:11:44 -07:00
|
|
|
ocrmypdf.ocr(
|
2019-05-22 23:53:48 -07:00
|
|
|
resources / 'link.pdf', outpdf, redo_ocr=True, oversample=200, output_type='pdf'
|
2019-05-12 03:36:33 -07:00
|
|
|
)
|
2020-03-29 22:44:16 -07:00
|
|
|
with pikepdf.open(outpdf) as pdf:
|
|
|
|
p1 = pdf.pages[0]
|
|
|
|
p2 = pdf.pages[1]
|
|
|
|
assert p1.Annots[0].A.D[0].objgen == p2.objgen
|
|
|
|
assert p2.Annots[0].A.D[0].objgen == p1.objgen
|