2017-01-26 12:28:51 -08:00
|
|
|
# © 2017 James R. Barlow: github.com/jbarlow83
|
2018-03-14 14:40:48 -07:00
|
|
|
#
|
|
|
|
# This file is part of OCRmyPDF.
|
|
|
|
#
|
|
|
|
# OCRmyPDF is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# OCRmyPDF is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with OCRmyPDF. If not, see <http://www.gnu.org/licenses/>.
|
2017-01-26 12:28:51 -08:00
|
|
|
|
2020-01-04 02:35:14 -08:00
|
|
|
import logging
|
2017-03-29 23:31:44 -07:00
|
|
|
import os
|
2020-01-04 02:35:14 -08:00
|
|
|
import subprocess
|
2018-12-30 01:28:15 -08:00
|
|
|
from os import fspath
|
2018-03-24 15:07:02 -07:00
|
|
|
from pathlib import Path
|
2017-03-29 23:31:44 -07:00
|
|
|
|
2018-12-30 00:23:26 -08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from ocrmypdf import pdfinfo
|
2019-01-02 13:34:45 -08:00
|
|
|
from ocrmypdf.exceptions import MissingDependencyError
|
2018-12-30 00:23:26 -08:00
|
|
|
from ocrmypdf.exec import tesseract
|
|
|
|
|
2019-01-02 13:34:45 -08:00
|
|
|
# pylint: disable=no-member,w0621
|
2017-03-24 13:23:03 -07:00
|
|
|
|
|
|
|
check_ocrmypdf = pytest.helpers.check_ocrmypdf
|
|
|
|
run_ocrmypdf = pytest.helpers.run_ocrmypdf
|
|
|
|
spoof = pytest.helpers.spoof
|
2017-01-26 12:28:51 -08:00
|
|
|
|
|
|
|
|
2019-06-03 01:33:24 -07:00
|
|
|
def test_tesseract_v4():
|
|
|
|
assert tesseract.v4()
|
2017-01-26 12:28:51 -08:00
|
|
|
|
|
|
|
|
2017-03-29 23:31:44 -07:00
|
|
|
@pytest.mark.parametrize('basename', ['graph_ocred.pdf', 'cardinal.pdf'])
|
2019-06-03 01:33:24 -07:00
|
|
|
def test_skip_pages_does_not_replicate(resources, basename, outdir):
|
2017-03-29 23:31:44 -07:00
|
|
|
infile = resources / basename
|
|
|
|
outpdf = outdir / basename
|
|
|
|
|
|
|
|
check_ocrmypdf(
|
|
|
|
infile,
|
2018-12-30 01:27:49 -08:00
|
|
|
outpdf,
|
|
|
|
'--pdf-renderer',
|
|
|
|
'sandwich',
|
|
|
|
'--force-ocr',
|
|
|
|
'--tesseract-timeout',
|
|
|
|
'0',
|
2017-03-29 23:31:44 -07:00
|
|
|
)
|
|
|
|
|
2017-05-19 15:48:23 -07:00
|
|
|
info_in = pdfinfo.PdfInfo(infile)
|
2017-03-29 23:31:44 -07:00
|
|
|
|
2017-05-19 15:48:23 -07:00
|
|
|
info = pdfinfo.PdfInfo(outpdf)
|
2017-03-29 23:31:44 -07:00
|
|
|
for page in info:
|
2017-05-29 13:51:21 -07:00
|
|
|
assert len(page.images) == 1, "skipped page was replicated"
|
2017-03-29 23:31:44 -07:00
|
|
|
|
2020-05-03 00:51:17 -07:00
|
|
|
for n, info_out_n in enumerate(info):
|
|
|
|
assert info_out_n.width_inches == info_in[n].width_inches
|
2017-03-29 23:44:12 -07:00
|
|
|
|
|
|
|
|
2019-06-03 01:33:24 -07:00
|
|
|
def test_content_preservation(resources, outpdf):
|
2017-03-29 23:44:12 -07:00
|
|
|
infile = resources / 'masks.pdf'
|
|
|
|
|
|
|
|
check_ocrmypdf(
|
2019-06-03 01:33:24 -07:00
|
|
|
infile, outpdf, '--pdf-renderer', 'sandwich', '--tesseract-timeout', '0'
|
2017-03-29 23:44:12 -07:00
|
|
|
)
|
|
|
|
|
2017-05-19 15:48:23 -07:00
|
|
|
info = pdfinfo.PdfInfo(outpdf)
|
2017-03-29 23:44:12 -07:00
|
|
|
page = info[0]
|
2018-02-24 12:38:58 -08:00
|
|
|
assert len(page.images) > 1, "masks were rasterized"
|
2018-11-09 01:40:01 -08:00
|
|
|
|
|
|
|
|
2019-06-03 01:33:24 -07:00
|
|
|
def test_no_languages(tmp_path):
|
|
|
|
env = os.environ.copy()
|
2019-06-01 01:55:51 -07:00
|
|
|
(tmp_path / 'tessdata').mkdir()
|
|
|
|
env['TESSDATA_PREFIX'] = fspath(tmp_path)
|
2018-11-09 01:40:01 -08:00
|
|
|
|
2019-06-03 01:33:24 -07:00
|
|
|
with pytest.raises(MissingDependencyError):
|
|
|
|
tesseract.languages(tesseract_env=env)
|
2020-01-04 02:35:14 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_image_too_large_hocr(monkeypatch, resources, outdir):
|
|
|
|
def dummy_run(args, *, env=None, **kwargs):
|
|
|
|
raise subprocess.CalledProcessError(1, 'tesseract', output=b'Image too large')
|
|
|
|
|
|
|
|
monkeypatch.setattr(tesseract, 'run', dummy_run)
|
|
|
|
tesseract.generate_hocr(
|
|
|
|
input_file=resources / 'crom.png',
|
|
|
|
output_files=[outdir / 'out.hocr', outdir / 'out.txt'],
|
|
|
|
language=['eng'],
|
|
|
|
engine_mode=None,
|
|
|
|
tessconfig=[],
|
|
|
|
timeout=180.0,
|
|
|
|
pagesegmode=None,
|
|
|
|
user_words=None,
|
|
|
|
user_patterns=None,
|
|
|
|
tesseract_env=None,
|
|
|
|
)
|
|
|
|
assert "name='ocr-capabilities'" in Path(outdir / 'out.hocr').read_text()
|
|
|
|
|
|
|
|
|
|
|
|
def test_image_too_large_pdf(monkeypatch, resources, outdir):
|
|
|
|
def dummy_run(args, *, env=None, **kwargs):
|
|
|
|
raise subprocess.CalledProcessError(1, 'tesseract', output=b'Image too large')
|
|
|
|
|
|
|
|
monkeypatch.setattr(tesseract, 'run', dummy_run)
|
|
|
|
tesseract.generate_pdf(
|
|
|
|
input_image=resources / 'crom.png',
|
|
|
|
skip_pdf=resources / 'blank.pdf',
|
|
|
|
output_pdf=outdir / 'pdf.pdf',
|
|
|
|
output_text=outdir / 'txt.txt',
|
|
|
|
language=['eng'],
|
|
|
|
engine_mode=None,
|
|
|
|
text_only=False,
|
|
|
|
tessconfig=[],
|
|
|
|
timeout=180.0,
|
|
|
|
pagesegmode=None,
|
|
|
|
user_words=None,
|
|
|
|
user_patterns=None,
|
|
|
|
tesseract_env=None,
|
|
|
|
)
|
|
|
|
assert Path(outdir / 'txt.txt').read_text() == '[skipped page]'
|
2020-01-06 02:02:05 -08:00
|
|
|
if os.name != 'nt': # different semantics
|
|
|
|
assert Path(outdir / 'pdf.pdf').samefile(resources / 'blank.pdf')
|
2020-01-04 02:35:14 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_timeout(caplog):
|
2020-05-03 00:51:17 -07:00
|
|
|
tesseract.page_timedout(5)
|
2020-01-04 02:35:14 -08:00
|
|
|
assert "took too long" in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'in_, logged',
|
|
|
|
[
|
|
|
|
(b'Tesseract Open Source', ''),
|
|
|
|
(b'lots of diacritics blah blah', 'diacritics'),
|
|
|
|
(b'Warning in pixReadMem', ''),
|
|
|
|
(b'OSD: Weak margin', 'unsure about page orientation'),
|
|
|
|
(b'Error in pixScanForForeground', ''),
|
|
|
|
(b'Error in boxClipToRectangle', ''),
|
|
|
|
(b'an unexpected error', 'an unexpected error'),
|
|
|
|
(b'a dire warning', 'a dire warning'),
|
|
|
|
(b'read_params_file something', 'read_params_file'),
|
|
|
|
(b'an innocent message', 'innocent'),
|
|
|
|
(b'\x7f\x7f\x80innocent unicode failure', 'innocent'),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_tesseract_log_output(caplog, in_, logged):
|
2020-03-04 21:24:13 -08:00
|
|
|
caplog.set_level(logging.INFO)
|
|
|
|
tesseract.tesseract_log_output(in_, 'dummy')
|
2020-01-04 02:35:14 -08:00
|
|
|
if logged == '':
|
|
|
|
assert caplog.text == ''
|
|
|
|
else:
|
|
|
|
assert logged in caplog.text
|
|
|
|
|
|
|
|
|
|
|
|
def test_tesseract_log_output_raises(caplog):
|
|
|
|
with pytest.raises(tesseract.TesseractConfigError):
|
2020-03-04 21:24:13 -08:00
|
|
|
tesseract.tesseract_log_output(b'parameter not found: moo', 'dummy')
|
2020-01-04 02:35:14 -08:00
|
|
|
assert 'not found' in caplog.text
|