2017-11-29 12:47:09 -08:00
|
|
|
# © 2015-17 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/>.
|
2015-07-22 02:59:25 -07:00
|
|
|
|
2018-05-01 23:51:35 -07:00
|
|
|
from subprocess import Popen, PIPE, DEVNULL
|
2018-02-19 22:15:07 -08:00
|
|
|
from pathlib import Path
|
2018-05-01 23:51:35 -07:00
|
|
|
from math import isclose
|
2015-07-22 02:59:25 -07:00
|
|
|
import os
|
2015-07-22 04:00:59 -07:00
|
|
|
import shutil
|
2018-03-24 15:35:57 -07:00
|
|
|
import sys
|
2018-05-01 23:51:35 -07:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
import PIL
|
|
|
|
import pytest
|
|
|
|
|
2017-05-19 15:48:23 -07:00
|
|
|
from ocrmypdf.pdfinfo import PdfInfo, Colorspace, Encoding
|
2018-11-10 00:56:22 -08:00
|
|
|
from ocrmypdf.exceptions import ExitCode, MissingDependencyError
|
2018-05-11 02:33:44 -07:00
|
|
|
from ocrmypdf.exec import ghostscript, qpdf, tesseract
|
2018-03-26 15:33:53 -07:00
|
|
|
from ocrmypdf.pdfa import file_claims_pdfa
|
2018-05-10 19:05:31 -07:00
|
|
|
from ocrmypdf.leptonica import Pix
|
2018-01-10 15:43:59 -08:00
|
|
|
|
2018-02-24 11:59:01 -08:00
|
|
|
# pytest.helpers is dynamic
|
2018-06-23 01:47:53 -07:00
|
|
|
# pylint: disable=no-member,redefined-outer-name
|
2015-07-22 11:21:33 -07:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
check_ocrmypdf = pytest.helpers.check_ocrmypdf
|
|
|
|
run_ocrmypdf = pytest.helpers.run_ocrmypdf
|
|
|
|
spoof = pytest.helpers.spoof
|
2015-12-17 11:36:47 -08:00
|
|
|
|
2016-02-19 03:48:49 -08:00
|
|
|
|
2018-05-01 17:31:34 -07:00
|
|
|
RENDERERS = ['hocr', 'sandwich']
|
2017-06-13 13:09:12 -07:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_tesseract_crash(tmpdir_factory):
|
|
|
|
return spoof(tmpdir_factory, tesseract='tesseract_crash.py')
|
2015-12-17 12:52:12 -08:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_tesseract_big_image_error(tmpdir_factory):
|
|
|
|
return spoof(tmpdir_factory, tesseract='tesseract_big_image_error.py')
|
2016-12-03 00:31:40 -08:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_no_tess_no_pdfa(tmpdir_factory):
|
|
|
|
return spoof(tmpdir_factory, tesseract='tesseract_noop.py', gs='gs_pdfa_failure.py')
|
2016-12-03 00:31:40 -08:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_no_tess_pdfa_warning(tmpdir_factory):
|
2018-12-30 01:27:49 -08:00
|
|
|
return spoof(
|
|
|
|
tmpdir_factory, tesseract='tesseract_noop.py', gs='gs_feature_elision.py'
|
|
|
|
)
|
2016-02-20 04:53:02 -08:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_no_tess_gs_render_fail(tmpdir_factory):
|
2018-12-30 01:27:49 -08:00
|
|
|
return spoof(
|
|
|
|
tmpdir_factory, tesseract='tesseract_noop.py', gs='gs_render_failure.py'
|
|
|
|
)
|
2017-05-01 15:44:21 -07:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_no_tess_gs_raster_fail(tmpdir_factory):
|
2018-12-30 01:27:49 -08:00
|
|
|
return spoof(
|
|
|
|
tmpdir_factory, tesseract='tesseract_noop.py', gs='gs_raster_failure.py'
|
|
|
|
)
|
2017-05-01 15:44:21 -07:00
|
|
|
|
|
|
|
|
2018-03-24 15:07:02 -07:00
|
|
|
@pytest.fixture(scope='session')
|
|
|
|
def spoof_tess_bad_utf8(tmpdir_factory):
|
|
|
|
return spoof(tmpdir_factory, tesseract='tesseract_badutf8.py')
|
2017-11-29 14:08:07 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_quick(spoof_tesseract_cache, resources, outpdf):
|
|
|
|
check_ocrmypdf(resources / 'ccitt.pdf', outpdf, env=spoof_tesseract_cache)
|
2015-12-17 11:56:09 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_deskew(spoof_tesseract_noop, resources, outdir):
|
2015-07-27 16:11:51 -07:00
|
|
|
# Run with deskew
|
2015-12-17 11:36:47 -08:00
|
|
|
deskewed_pdf = check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'skew.pdf', outdir / 'skew.pdf', '-d', env=spoof_tesseract_noop
|
|
|
|
)
|
2015-07-27 16:11:51 -07:00
|
|
|
|
|
|
|
# Now render as an image again and use Leptonica to find the skew angle
|
|
|
|
# to confirm that it was deskewed
|
2015-07-27 15:39:54 -07:00
|
|
|
log = logging.getLogger()
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
deskewed_png = outdir / 'deskewed.png'
|
2015-07-27 15:39:54 -07:00
|
|
|
|
2017-05-14 23:15:29 -07:00
|
|
|
ghostscript.rasterize_pdf(
|
2017-07-21 13:28:30 -07:00
|
|
|
deskewed_pdf,
|
|
|
|
deskewed_png,
|
2015-07-27 15:39:54 -07:00
|
|
|
xres=150,
|
|
|
|
yres=150,
|
|
|
|
raster_device='pngmono',
|
2018-01-10 16:35:31 -08:00
|
|
|
log=log,
|
2018-12-30 01:27:49 -08:00
|
|
|
pageno=1,
|
|
|
|
)
|
2018-05-24 22:22:01 -07:00
|
|
|
|
2018-06-28 15:13:26 -07:00
|
|
|
pix = Pix.open(deskewed_png)
|
2016-02-08 15:20:01 -08:00
|
|
|
skew_angle, skew_confidence = pix.find_skew()
|
2015-07-27 15:39:54 -07:00
|
|
|
|
|
|
|
print(skew_angle)
|
|
|
|
assert -0.5 < skew_angle < 0.5, "Deskewing failed"
|
2015-07-22 04:00:59 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_remove_background(spoof_tesseract_noop, resources, outdir):
|
2016-10-14 17:23:34 -07:00
|
|
|
# Ensure the input image does not contain pure white/black
|
2017-01-26 16:38:59 -08:00
|
|
|
im = Image.open(resources / 'congress.jpg')
|
2016-10-14 17:23:34 -07:00
|
|
|
assert im.getextrema() != ((0, 255), (0, 255), (0, 255))
|
|
|
|
|
|
|
|
output_pdf = check_ocrmypdf(
|
2017-01-26 16:38:59 -08:00
|
|
|
resources / 'congress.jpg',
|
|
|
|
outdir / 'test_remove_bg.pdf',
|
|
|
|
'--remove-background',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--image-dpi',
|
|
|
|
'150',
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2016-10-14 17:23:34 -07:00
|
|
|
|
|
|
|
log = logging.getLogger()
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
output_png = outdir / 'remove_bg.png'
|
2016-10-14 17:23:34 -07:00
|
|
|
|
2017-05-14 23:15:29 -07:00
|
|
|
ghostscript.rasterize_pdf(
|
2017-07-21 13:28:30 -07:00
|
|
|
output_pdf,
|
|
|
|
output_png,
|
2016-10-14 17:23:34 -07:00
|
|
|
xres=100,
|
|
|
|
yres=100,
|
|
|
|
raster_device='png16m',
|
2018-01-10 16:35:31 -08:00
|
|
|
log=log,
|
2018-12-30 01:27:49 -08:00
|
|
|
pageno=1,
|
|
|
|
)
|
2016-10-14 17:23:34 -07:00
|
|
|
|
|
|
|
# The output image should contain pure white and black
|
|
|
|
im = Image.open(output_png)
|
|
|
|
assert im.getextrema() == ((0, 255), (0, 255), (0, 255))
|
|
|
|
|
|
|
|
|
2016-08-03 02:47:18 -07:00
|
|
|
# This will run 5 * 2 * 2 = 20 test cases
|
|
|
|
@pytest.mark.parametrize(
|
2018-12-30 01:27:49 -08:00
|
|
|
"pdf", ['palette.pdf', 'cmyk.pdf', 'ccitt.pdf', 'jbig2.pdf', 'lichtenstein.pdf']
|
|
|
|
)
|
2018-05-10 14:06:13 -07:00
|
|
|
@pytest.mark.parametrize("renderer", ['sandwich', 'hocr'])
|
2016-08-03 02:47:18 -07:00
|
|
|
@pytest.mark.parametrize("output_type", ['pdf', 'pdfa'])
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_exotic_image(
|
|
|
|
spoof_tesseract_cache, pdf, renderer, output_type, resources, outdir
|
|
|
|
):
|
2017-05-10 15:22:44 -07:00
|
|
|
outfile = outdir / 'test_{0}_{1}.pdf'.format(pdf, renderer)
|
2015-08-28 04:48:51 -07:00
|
|
|
check_ocrmypdf(
|
2017-01-26 16:38:59 -08:00
|
|
|
resources / pdf,
|
2017-05-10 15:22:44 -07:00
|
|
|
outfile,
|
2015-08-28 04:48:51 -07:00
|
|
|
'-dc',
|
2018-12-30 01:27:49 -08:00
|
|
|
'-v',
|
|
|
|
'1',
|
|
|
|
'--output-type',
|
|
|
|
output_type,
|
2017-05-10 15:22:44 -07:00
|
|
|
'--sidecar',
|
2018-03-24 02:24:45 -07:00
|
|
|
'--skip-text',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2015-08-28 04:48:51 -07:00
|
|
|
|
2017-05-10 15:22:44 -07:00
|
|
|
assert outfile.with_suffix('.pdf.txt').exists()
|
|
|
|
|
2015-08-28 04:48:51 -07:00
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_oversample(spoof_tesseract_cache, renderer, resources, outpdf):
|
2015-07-28 00:43:22 -07:00
|
|
|
oversampled_pdf = check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'skew.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--oversample',
|
|
|
|
'350',
|
2016-01-15 15:55:23 -08:00
|
|
|
'-f',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2015-07-27 17:18:02 -07:00
|
|
|
|
2017-05-18 16:43:50 -07:00
|
|
|
pdfinfo = PdfInfo(oversampled_pdf)
|
2015-07-27 17:18:02 -07:00
|
|
|
|
2017-05-18 17:12:04 -07:00
|
|
|
print(pdfinfo[0].xres)
|
|
|
|
assert abs(pdfinfo[0].xres - 350) < 1
|
2015-07-27 22:07:04 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_repeat_ocr(resources, no_outpdf):
|
|
|
|
p, _, _ = run_ocrmypdf(resources / 'graph_ocred.pdf', no_outpdf)
|
2016-08-26 15:18:38 -07:00
|
|
|
assert p.returncode != 0
|
2015-07-27 22:07:04 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_force_ocr(spoof_tesseract_cache, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
out = check_ocrmypdf(
|
|
|
|
resources / 'graph_ocred.pdf', outpdf, '-f', env=spoof_tesseract_cache
|
|
|
|
)
|
2017-05-18 16:30:43 -07:00
|
|
|
pdfinfo = PdfInfo(out)
|
2017-05-18 17:12:04 -07:00
|
|
|
assert pdfinfo[0].has_text
|
2015-07-27 22:07:04 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_skip_ocr(spoof_tesseract_cache, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
out = check_ocrmypdf(
|
|
|
|
resources / 'graph_ocred.pdf', outpdf, '-s', env=spoof_tesseract_cache
|
|
|
|
)
|
2018-05-01 23:16:41 -07:00
|
|
|
pdfinfo = PdfInfo(out)
|
|
|
|
assert pdfinfo[0].has_text
|
2015-07-28 01:47:30 -07:00
|
|
|
|
|
|
|
|
2018-11-04 15:54:41 -08:00
|
|
|
def test_redo_ocr(spoof_tesseract_cache, resources, outpdf):
|
|
|
|
in_ = resources / 'graph_ocred.pdf'
|
|
|
|
before = PdfInfo(in_, detailed_page_analysis=True)
|
2018-12-30 01:27:49 -08:00
|
|
|
out = check_ocrmypdf(in_, outpdf, '--redo-ocr', env=spoof_tesseract_cache)
|
2018-11-04 15:54:41 -08:00
|
|
|
after = PdfInfo(out, detailed_page_analysis=True)
|
|
|
|
assert before[0].has_text and after[0].has_text
|
2018-12-30 01:27:49 -08:00
|
|
|
assert (
|
|
|
|
before[0].get_textareas() != after[0].get_textareas()
|
|
|
|
), "Expected text to be different after re-OCR"
|
2018-11-04 15:54:41 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_argsfile(spoof_tesseract_noop, resources, outdir):
|
2017-01-26 17:53:27 -08:00
|
|
|
path_argsfile = outdir / 'test_argsfile.txt'
|
|
|
|
with open(str(path_argsfile), 'w') as argsfile:
|
2018-12-30 01:27:49 -08:00
|
|
|
print(
|
|
|
|
'--title',
|
|
|
|
'ArgsFile Test',
|
|
|
|
'--author',
|
|
|
|
'Test Cases',
|
|
|
|
sep='\n',
|
|
|
|
end='\n',
|
|
|
|
file=argsfile,
|
|
|
|
)
|
|
|
|
check_ocrmypdf(
|
|
|
|
resources / 'graph.pdf',
|
|
|
|
path_argsfile,
|
|
|
|
'@' + str(outdir / 'test_argsfile.txt'),
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2015-08-05 23:17:38 -07:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_ocr_timeout(renderer, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
out = check_ocrmypdf(
|
|
|
|
resources / 'skew.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--tesseract-timeout',
|
|
|
|
'0',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
)
|
2017-05-18 16:43:50 -07:00
|
|
|
pdfinfo = PdfInfo(out)
|
2017-05-18 17:12:04 -07:00
|
|
|
assert not pdfinfo[0].has_text
|
2015-07-28 01:47:30 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_skip_big(spoof_tesseract_cache, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
out = check_ocrmypdf(
|
|
|
|
resources / 'jbig2.pdf', outpdf, '--skip-big', '1', env=spoof_tesseract_cache
|
|
|
|
)
|
2017-05-18 16:43:50 -07:00
|
|
|
pdfinfo = PdfInfo(out)
|
2017-05-18 17:12:04 -07:00
|
|
|
assert not pdfinfo[0].has_text
|
2015-07-28 02:31:18 -07:00
|
|
|
|
2015-07-28 03:02:35 -07:00
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2016-08-03 02:47:18 -07:00
|
|
|
@pytest.mark.parametrize('output_type', ['pdf', 'pdfa'])
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_maximum_options(
|
|
|
|
spoof_tesseract_cache, renderer, output_type, resources, outpdf
|
|
|
|
):
|
2015-07-28 03:02:35 -07:00
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'multipage.pdf',
|
|
|
|
outpdf,
|
|
|
|
'-d',
|
|
|
|
'-c',
|
|
|
|
'-i',
|
|
|
|
'-f',
|
|
|
|
'-k',
|
|
|
|
'--oversample',
|
|
|
|
'300',
|
2016-10-14 17:23:34 -07:00
|
|
|
'--remove-background',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--skip-big',
|
|
|
|
'10',
|
|
|
|
'--title',
|
|
|
|
'Too Many Weird Files',
|
|
|
|
'--author',
|
|
|
|
'py.test',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
'--output-type',
|
|
|
|
output_type,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2015-08-10 13:57:28 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_tesseract_missing_tessdata(resources, no_outpdf):
|
2015-08-16 01:57:35 -07:00
|
|
|
env = os.environ.copy()
|
2015-08-11 00:17:02 -07:00
|
|
|
env['TESSDATA_PREFIX'] = '/tmp'
|
|
|
|
|
2016-08-26 15:18:38 -07:00
|
|
|
p, _, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'graph_ocred.pdf', no_outpdf, '-v', '1', '--skip-text', env=env
|
|
|
|
)
|
2015-08-11 00:17:02 -07:00
|
|
|
assert p.returncode == ExitCode.missing_dependency, err
|
|
|
|
|
2015-08-11 02:19:46 -07:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_invalid_input_pdf(resources, no_outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(resources / 'invalid.pdf', no_outpdf)
|
2015-08-11 02:19:46 -07:00
|
|
|
assert p.returncode == ExitCode.input_file, err
|
|
|
|
|
2015-08-14 00:46:50 -07:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_blank_input_pdf(resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(resources / 'blank.pdf', outpdf)
|
2015-08-14 00:46:50 -07:00
|
|
|
assert p.returncode == ExitCode.ok
|
|
|
|
|
2015-08-18 23:27:50 -07:00
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_force_ocr_on_pdf_with_no_images(spoof_tesseract_crash, resources, no_outpdf):
|
2016-07-27 15:06:49 -07:00
|
|
|
# As a correctness test, make sure that --force-ocr on a PDF with no
|
|
|
|
# content still triggers tesseract. If tesseract crashes, then it was
|
|
|
|
# called.
|
2016-08-26 15:18:38 -07:00
|
|
|
p, _, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'blank.pdf', no_outpdf, '--force-ocr', env=spoof_tesseract_crash
|
|
|
|
)
|
2016-07-27 15:06:49 -07:00
|
|
|
assert p.returncode == ExitCode.child_process_error, err
|
2017-01-26 16:38:59 -08:00
|
|
|
assert not os.path.exists(no_outpdf)
|
2016-07-27 15:06:49 -07:00
|
|
|
|
|
|
|
|
2017-03-02 22:27:06 -08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
pytest.helpers.is_macos() and pytest.helpers.running_in_travis(),
|
2018-12-30 01:27:49 -08:00
|
|
|
reason="takes too long to install language packs in Travis macOS homebrew",
|
|
|
|
)
|
2017-08-30 13:25:54 -07:00
|
|
|
def test_french(spoof_tesseract_cache, resources, outdir):
|
|
|
|
# Produce a sidecar too - implicit test that system locale is set up
|
|
|
|
# properly
|
|
|
|
sidecar = outdir / 'francais.txt'
|
2016-08-26 15:18:38 -07:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'francais.pdf',
|
|
|
|
outdir / 'francais.pdf',
|
|
|
|
'-l',
|
|
|
|
'fra',
|
|
|
|
'--sidecar',
|
|
|
|
sidecar,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2017-03-02 22:27:06 -08:00
|
|
|
print(os.environ)
|
2018-12-30 01:27:49 -08:00
|
|
|
assert (
|
|
|
|
p.returncode == ExitCode.ok
|
|
|
|
), "This test may fail if Tesseract language packs are missing"
|
2015-08-18 23:27:50 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_klingon(resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(resources / 'francais.pdf', outpdf, '-l', 'klz')
|
2017-08-24 13:01:02 -07:00
|
|
|
assert p.returncode == ExitCode.missing_dependency
|
2015-08-24 01:23:30 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_missing_docinfo(spoof_tesseract_noop, resources, outpdf):
|
2016-08-26 15:18:38 -07:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'missing_docinfo.pdf',
|
|
|
|
outpdf,
|
|
|
|
'-l',
|
|
|
|
'eng',
|
|
|
|
'--skip-text',
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2015-08-24 01:23:30 -07:00
|
|
|
assert p.returncode == ExitCode.ok, err
|
|
|
|
|
2015-12-04 02:14:09 -08:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_uppercase_extension(spoof_tesseract_noop, resources, outdir):
|
2018-12-30 01:27:49 -08:00
|
|
|
shutil.copy(str(resources / "skew.pdf"), str(outdir / "UPPERCASE.PDF"))
|
2017-01-26 16:38:59 -08:00
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
outdir / "UPPERCASE.PDF", outdir / "UPPERCASE_OUT.PDF", env=spoof_tesseract_noop
|
|
|
|
)
|
2015-12-04 02:14:09 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_input_file_not_found(no_outpdf):
|
2015-12-04 03:07:53 -08:00
|
|
|
input_file = "does not exist.pdf"
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(input_file, no_outpdf)
|
2016-08-26 15:18:38 -07:00
|
|
|
assert p.returncode == ExitCode.input_file
|
2018-12-30 01:27:49 -08:00
|
|
|
assert input_file in out or input_file in err
|
2015-12-04 03:07:53 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_input_file_not_a_pdf(no_outpdf):
|
2015-12-04 03:07:53 -08:00
|
|
|
input_file = __file__ # Try to OCR this file
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(input_file, no_outpdf)
|
2016-08-26 15:18:38 -07:00
|
|
|
assert p.returncode == ExitCode.input_file
|
2018-12-30 01:27:49 -08:00
|
|
|
assert input_file in out or input_file in err
|
2015-12-04 03:07:53 -08:00
|
|
|
|
2015-12-17 09:29:01 -08:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_encrypted(resources, no_outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(resources / 'skew-encrypted.pdf', no_outpdf)
|
2016-12-10 15:24:24 -08:00
|
|
|
assert p.returncode == ExitCode.encrypted_pdf
|
2018-02-27 15:08:22 -08:00
|
|
|
assert out.find('encrypted')
|
2016-01-11 17:19:32 -08:00
|
|
|
|
|
|
|
|
2018-05-10 20:33:32 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_pagesegmode(renderer, spoof_tesseract_cache, resources, outpdf):
|
2016-01-11 17:19:32 -08:00
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'skew.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--tesseract-pagesegmode',
|
|
|
|
'7',
|
|
|
|
'-v',
|
|
|
|
'1',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2016-01-11 17:19:32 -08:00
|
|
|
|
|
|
|
|
2017-07-21 14:10:02 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_tesseract_crash(renderer, spoof_tesseract_crash, resources, no_outpdf):
|
2016-08-26 15:18:38 -07:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf',
|
|
|
|
no_outpdf,
|
|
|
|
'-v',
|
|
|
|
'1',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_crash,
|
|
|
|
)
|
2016-08-26 15:18:38 -07:00
|
|
|
assert p.returncode == ExitCode.child_process_error
|
2017-01-26 16:38:59 -08:00
|
|
|
assert not os.path.exists(no_outpdf)
|
2016-02-19 03:48:49 -08:00
|
|
|
assert "ERROR" in err
|
2016-02-19 03:58:39 -08:00
|
|
|
|
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_tesseract_crash_autorotate(spoof_tesseract_crash, resources, no_outpdf):
|
2016-08-26 15:18:38 -07:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf', no_outpdf, '-r', env=spoof_tesseract_crash
|
|
|
|
)
|
2016-08-26 15:18:38 -07:00
|
|
|
assert p.returncode == ExitCode.child_process_error
|
2017-01-26 16:38:59 -08:00
|
|
|
assert not os.path.exists(no_outpdf)
|
2016-02-19 03:58:39 -08:00
|
|
|
assert "ERROR" in err
|
2016-04-28 00:39:15 -07:00
|
|
|
print(out)
|
|
|
|
print(err)
|
2016-02-20 04:53:02 -08:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_tesseract_image_too_big(
|
|
|
|
renderer, spoof_tesseract_big_image_error, resources, outpdf
|
|
|
|
):
|
2016-02-20 04:53:02 -08:00
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'hugemono.pdf',
|
|
|
|
outpdf,
|
|
|
|
'-r',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
'--max-image-mpixels',
|
|
|
|
'0',
|
|
|
|
env=spoof_tesseract_big_image_error,
|
|
|
|
)
|
2016-03-10 15:37:09 -08:00
|
|
|
|
|
|
|
|
2018-05-25 00:33:31 -07:00
|
|
|
def test_algo4(resources, spoof_tesseract_noop, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, _, _ = run_ocrmypdf(
|
|
|
|
resources / 'encrypted_algo4.pdf', outpdf, env=spoof_tesseract_noop
|
|
|
|
)
|
2018-10-29 11:49:38 -07:00
|
|
|
assert p.returncode == ExitCode.encrypted_pdf
|
2016-07-28 16:20:59 -07:00
|
|
|
|
|
|
|
|
2018-05-11 02:33:44 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_non_square_resolution(renderer, spoof_tesseract_cache, resources, outpdf):
|
2016-07-28 16:20:59 -07:00
|
|
|
# Confirm input image is non-square resolution
|
2017-05-18 16:43:50 -07:00
|
|
|
in_pageinfo = PdfInfo(resources / 'aspect.pdf')
|
2017-05-18 17:12:04 -07:00
|
|
|
assert in_pageinfo[0].xres != in_pageinfo[0].yres
|
2016-07-28 16:20:59 -07:00
|
|
|
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'aspect.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2016-07-28 16:20:59 -07:00
|
|
|
|
2017-05-18 16:43:50 -07:00
|
|
|
out_pageinfo = PdfInfo(outpdf)
|
2016-07-28 16:20:59 -07:00
|
|
|
|
|
|
|
# Confirm resolution was kept the same
|
2017-05-18 17:12:04 -07:00
|
|
|
assert in_pageinfo[0].xres == out_pageinfo[0].xres
|
|
|
|
assert in_pageinfo[0].yres == out_pageinfo[0].yres
|
2016-08-03 03:35:30 -07:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_convert_to_square_resolution(
|
|
|
|
renderer, spoof_tesseract_cache, resources, outpdf
|
|
|
|
):
|
2017-02-26 17:13:16 -08:00
|
|
|
# Confirm input image is non-square resolution
|
2017-05-18 16:43:50 -07:00
|
|
|
in_pageinfo = PdfInfo(resources / 'aspect.pdf')
|
2017-05-18 17:12:04 -07:00
|
|
|
assert in_pageinfo[0].xres != in_pageinfo[0].yres
|
2017-02-26 17:13:16 -08:00
|
|
|
|
|
|
|
# --force-ocr requires means forced conversion to square resolution
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'aspect.pdf',
|
|
|
|
outpdf,
|
2017-02-26 17:13:16 -08:00
|
|
|
'--force-ocr',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2017-02-26 17:13:16 -08:00
|
|
|
|
2017-05-18 16:43:50 -07:00
|
|
|
out_pageinfo = PdfInfo(outpdf)
|
2017-02-26 17:13:16 -08:00
|
|
|
|
|
|
|
in_p0, out_p0 = in_pageinfo[0], out_pageinfo[0]
|
|
|
|
|
|
|
|
# Resolution show now be equal
|
2017-05-18 17:12:04 -07:00
|
|
|
assert out_p0.xres == out_p0.yres
|
2017-02-26 17:13:16 -08:00
|
|
|
|
|
|
|
# Page size should match input page size
|
2018-12-30 01:27:49 -08:00
|
|
|
assert isclose(in_p0.width_inches, out_p0.width_inches)
|
|
|
|
assert isclose(in_p0.height_inches, out_p0.height_inches)
|
2017-02-26 17:13:16 -08:00
|
|
|
|
|
|
|
# Because we rasterized the page to produce a new image, it should occupy
|
|
|
|
# the entire page
|
2018-05-24 22:22:01 -07:00
|
|
|
out_im_w = out_p0.images[0].width / out_p0.images[0].xres
|
|
|
|
out_im_h = out_p0.images[0].height / out_p0.images[0].yres
|
2017-05-18 17:12:04 -07:00
|
|
|
assert isclose(out_p0.width_inches, out_im_w)
|
|
|
|
assert isclose(out_p0.height_inches, out_im_h)
|
2017-02-26 17:13:16 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_image_to_pdf(spoof_tesseract_noop, resources, outpdf):
|
2016-08-03 03:35:30 -07:00
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'crom.png', outpdf, '--image-dpi', '200', env=spoof_tesseract_noop
|
|
|
|
)
|
2016-08-03 11:35:48 -07:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_jbig2_passthrough(spoof_tesseract_cache, resources, outpdf):
|
2016-08-03 11:35:48 -07:00
|
|
|
out = check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'jbig2.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--output-type',
|
|
|
|
'pdf',
|
|
|
|
'--pdf-renderer',
|
|
|
|
'hocr',
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2016-08-03 11:35:48 -07:00
|
|
|
|
2017-05-18 16:43:50 -07:00
|
|
|
out_pageinfo = PdfInfo(out)
|
2017-05-18 22:32:27 -07:00
|
|
|
assert out_pageinfo[0].images[0].enc == Encoding.jbig2
|
2016-08-03 11:35:48 -07:00
|
|
|
|
2016-08-25 14:46:54 -07:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_stdin(spoof_tesseract_noop, ocrmypdf_exec, resources, outpdf):
|
|
|
|
input_file = str(resources / 'francais.pdf')
|
|
|
|
output_file = str(outpdf)
|
2016-08-25 14:46:54 -07:00
|
|
|
|
2016-10-27 16:01:07 -07:00
|
|
|
# Runs: ocrmypdf - output.pdf < testfile.pdf
|
|
|
|
with open(input_file, 'rb') as input_stream:
|
2017-01-26 16:38:59 -08:00
|
|
|
p_args = ocrmypdf_exec + ['-', output_file]
|
2016-10-27 16:01:07 -07:00
|
|
|
p = Popen(
|
2018-12-30 01:27:49 -08:00
|
|
|
p_args,
|
|
|
|
close_fds=True,
|
|
|
|
stdout=PIPE,
|
|
|
|
stderr=PIPE,
|
|
|
|
stdin=input_stream,
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2016-10-27 16:01:07 -07:00
|
|
|
out, err = p.communicate()
|
|
|
|
|
|
|
|
assert p.returncode == ExitCode.ok
|
2016-08-25 14:46:54 -07:00
|
|
|
|
2016-08-26 15:03:27 -07:00
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_stdout(spoof_tesseract_noop, ocrmypdf_exec, resources, outpdf):
|
|
|
|
input_file = str(resources / 'francais.pdf')
|
|
|
|
output_file = str(outpdf)
|
2016-10-27 16:14:42 -07:00
|
|
|
|
|
|
|
# Runs: ocrmypdf francais.pdf - > test_stdout.pdf
|
|
|
|
with open(output_file, 'wb') as output_stream:
|
2017-01-26 16:38:59 -08:00
|
|
|
p_args = ocrmypdf_exec + [input_file, '-']
|
2016-10-27 16:14:42 -07:00
|
|
|
p = Popen(
|
2018-12-30 01:27:49 -08:00
|
|
|
p_args,
|
|
|
|
close_fds=True,
|
|
|
|
stdout=output_stream,
|
|
|
|
stderr=PIPE,
|
|
|
|
stdin=DEVNULL,
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2016-10-27 16:14:42 -07:00
|
|
|
out, err = p.communicate()
|
|
|
|
|
|
|
|
assert p.returncode == ExitCode.ok
|
|
|
|
|
|
|
|
assert qpdf.check(output_file, log=None)
|
|
|
|
|
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
sys.version_info[0:3] >= (3, 6, 4), reason="issue fixed in Python 3.6.4"
|
|
|
|
)
|
2017-03-13 15:52:57 -07:00
|
|
|
def test_closed_streams(spoof_tesseract_noop, ocrmypdf_exec, resources, outpdf):
|
|
|
|
input_file = str(resources / 'francais.pdf')
|
|
|
|
output_file = str(outpdf)
|
|
|
|
|
|
|
|
def evil_closer():
|
|
|
|
os.close(0)
|
|
|
|
os.close(1)
|
|
|
|
|
|
|
|
p_args = ocrmypdf_exec + [input_file, output_file]
|
|
|
|
p = Popen(
|
2018-12-30 01:27:49 -08:00
|
|
|
p_args,
|
|
|
|
close_fds=True,
|
|
|
|
stdout=None,
|
|
|
|
stderr=PIPE,
|
|
|
|
stdin=None,
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
preexec_fn=evil_closer,
|
|
|
|
)
|
2017-03-13 15:52:57 -07:00
|
|
|
out, err = p.communicate()
|
|
|
|
print(err.decode())
|
|
|
|
assert p.returncode == ExitCode.ok
|
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_masks(spoof_tesseract_noop, resources, outpdf):
|
2018-04-12 15:16:54 -07:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'masks.pdf', outpdf, env=spoof_tesseract_noop
|
|
|
|
)
|
2018-04-12 15:16:54 -07:00
|
|
|
|
|
|
|
assert p.returncode == ExitCode.ok
|
2016-08-26 15:03:27 -07:00
|
|
|
|
2016-08-31 11:42:21 -07:00
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_linearized_pdf_and_indirect_object(spoof_tesseract_noop, resources, outpdf):
|
|
|
|
check_ocrmypdf(resources / 'epson.pdf', outpdf, env=spoof_tesseract_noop)
|
2016-11-07 14:15:03 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_ghostscript_pdfa_failure(spoof_no_tess_no_pdfa, resources, outpdf):
|
2016-12-03 00:31:40 -08:00
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf', outpdf, env=spoof_no_tess_no_pdfa
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
p.returncode == ExitCode.pdfa_conversion_failed
|
|
|
|
), "Unexpected return when PDF/A fails"
|
2016-12-03 00:31:40 -08:00
|
|
|
|
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
def test_ghostscript_feature_elision(spoof_no_tess_pdfa_warning, resources, outpdf):
|
|
|
|
check_ocrmypdf(resources / 'ccitt.pdf', outpdf, env=spoof_no_tess_pdfa_warning)
|
2016-12-08 16:04:14 -08:00
|
|
|
|
|
|
|
|
2017-01-26 16:38:59 -08:00
|
|
|
def test_very_high_dpi(spoof_tesseract_cache, resources, outpdf):
|
2016-12-08 16:04:14 -08:00
|
|
|
"Checks for a Decimal quantize error with high DPI, etc"
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(resources / '2400dpi.pdf', outpdf, env=spoof_tesseract_cache)
|
2017-05-18 16:30:43 -07:00
|
|
|
pdfinfo = PdfInfo(outpdf)
|
2017-05-06 22:34:01 -07:00
|
|
|
|
2017-05-18 17:12:04 -07:00
|
|
|
image = pdfinfo[0].images[0]
|
2017-05-18 18:39:14 -07:00
|
|
|
assert isclose(image.xres, image.yres)
|
|
|
|
assert isclose(image.xres, 2400)
|
2017-01-26 17:24:40 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_overlay(spoof_tesseract_noop, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
resources / 'overlay.pdf', outpdf, '--skip-text', env=spoof_tesseract_noop
|
|
|
|
)
|
2017-01-26 22:08:24 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_destination_not_writable(spoof_tesseract_noop, resources, outdir):
|
2018-03-24 15:13:23 -07:00
|
|
|
if os.getuid() == 0 or os.geteuid() == 0:
|
|
|
|
pytest.xfail(reason="root can write to anything")
|
2017-01-26 22:08:24 -08:00
|
|
|
protected_file = outdir / 'protected.pdf'
|
|
|
|
protected_file.touch()
|
|
|
|
protected_file.chmod(0o400) # Read-only
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'jbig2.pdf', protected_file, env=spoof_tesseract_noop
|
|
|
|
)
|
2017-01-26 22:08:24 -08:00
|
|
|
assert p.returncode == ExitCode.file_access_error, "Expected error"
|
2017-01-28 22:06:51 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_tesseract_config_valid(resources, outdir):
|
|
|
|
cfg_file = outdir / 'test.cfg'
|
|
|
|
with cfg_file.open('w') as f:
|
2018-12-30 01:27:49 -08:00
|
|
|
f.write(
|
|
|
|
'''\
|
2017-01-28 22:06:51 -08:00
|
|
|
load_system_dawg 0
|
|
|
|
language_model_penalty_non_dict_word 0
|
|
|
|
language_model_penalty_non_freq_dict_word 0
|
2018-12-30 01:27:49 -08:00
|
|
|
'''
|
|
|
|
)
|
2017-01-28 22:06:51 -08:00
|
|
|
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf', outdir / 'out.pdf', '--tesseract-config', cfg_file
|
|
|
|
)
|
2017-01-28 22:06:51 -08:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-01-28 22:06:51 -08:00
|
|
|
def test_tesseract_config_notfound(renderer, resources, outdir):
|
|
|
|
cfg_file = outdir / 'nofile.cfg'
|
|
|
|
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf',
|
|
|
|
outdir / 'out.pdf',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
'--tesseract-config',
|
|
|
|
cfg_file,
|
|
|
|
)
|
2017-01-28 22:06:51 -08:00
|
|
|
assert "Can't open" in err, "No error message about missing config file"
|
2018-04-25 21:58:18 -07:00
|
|
|
assert p.returncode == ExitCode.ok, err
|
2017-01-28 22:06:51 -08:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-01-28 22:06:51 -08:00
|
|
|
def test_tesseract_config_invalid(renderer, resources, outdir):
|
|
|
|
cfg_file = outdir / 'test.cfg'
|
|
|
|
with cfg_file.open('w') as f:
|
2018-12-30 01:27:49 -08:00
|
|
|
f.write(
|
|
|
|
'''\
|
2017-01-28 22:06:51 -08:00
|
|
|
THIS FILE IS INVALID
|
2018-12-30 01:27:49 -08:00
|
|
|
'''
|
|
|
|
)
|
2017-01-28 22:06:51 -08:00
|
|
|
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf',
|
|
|
|
outdir / 'out.pdf',
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
'--tesseract-config',
|
|
|
|
cfg_file,
|
|
|
|
)
|
2018-10-03 13:58:20 -07:00
|
|
|
assert "parameter not found" in err.lower(), "No error message"
|
2017-01-28 22:06:51 -08:00
|
|
|
assert p.returncode == ExitCode.invalid_config
|
2017-02-14 12:51:15 -08:00
|
|
|
|
|
|
|
|
2018-05-11 02:33:44 -07:00
|
|
|
@pytest.mark.skipif(tesseract.v4(), reason='arg has no effect in 4.0-beta1')
|
2017-07-21 16:40:20 -07:00
|
|
|
def test_user_words(resources, outdir):
|
|
|
|
word_list = outdir / 'wordlist.txt'
|
|
|
|
sidecar_before = outdir / 'sidecar_before.txt'
|
|
|
|
sidecar_after = outdir / 'sidecar_after.txt'
|
|
|
|
|
2017-07-26 21:03:51 -07:00
|
|
|
# Don't know how to make this test pass on various versions and platforms
|
|
|
|
# so weaken to merely testing that the argument is accepted
|
|
|
|
consistent = False
|
|
|
|
|
|
|
|
if consistent:
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'crom.png',
|
|
|
|
outdir / 'out.pdf',
|
|
|
|
'--image-dpi',
|
|
|
|
150,
|
|
|
|
'--sidecar',
|
|
|
|
sidecar_before,
|
2017-07-26 21:03:51 -07:00
|
|
|
)
|
|
|
|
assert 'cromulent' not in sidecar_before.open().read()
|
2017-07-21 16:40:20 -07:00
|
|
|
|
|
|
|
with word_list.open('w') as f:
|
|
|
|
f.write('cromulent\n') # a perfectly cromulent word
|
|
|
|
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'crom.png',
|
|
|
|
outdir / 'out.pdf',
|
|
|
|
'--image-dpi',
|
|
|
|
150,
|
|
|
|
'--sidecar',
|
|
|
|
sidecar_after,
|
|
|
|
'--user-words',
|
|
|
|
word_list,
|
2017-07-21 16:40:20 -07:00
|
|
|
)
|
|
|
|
|
2017-07-26 21:03:51 -07:00
|
|
|
if consistent:
|
|
|
|
assert 'cromulent' in sidecar_after.open().read()
|
2017-07-21 16:40:20 -07:00
|
|
|
|
|
|
|
|
2017-02-14 12:51:15 -08:00
|
|
|
def test_form_xobject(spoof_tesseract_noop, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
resources / 'formxobject.pdf', outpdf, '--force-ocr', env=spoof_tesseract_noop
|
|
|
|
)
|
2017-03-24 13:23:03 -07:00
|
|
|
|
|
|
|
|
2017-06-13 13:09:12 -07:00
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
2017-03-24 13:23:03 -07:00
|
|
|
def test_pagesize_consistency(renderer, resources, outpdf):
|
2018-05-24 22:22:01 -07:00
|
|
|
|
2017-03-24 13:23:03 -07:00
|
|
|
first_page_dimensions = pytest.helpers.first_page_dimensions
|
|
|
|
|
|
|
|
infile = resources / 'linn.pdf'
|
|
|
|
|
|
|
|
before_dims = first_page_dimensions(infile)
|
|
|
|
|
|
|
|
check_ocrmypdf(
|
|
|
|
infile,
|
2018-12-30 01:27:49 -08:00
|
|
|
outpdf,
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
'--clean',
|
|
|
|
'--deskew',
|
|
|
|
'--remove-background',
|
|
|
|
'--clean-final',
|
|
|
|
)
|
2017-03-24 13:23:03 -07:00
|
|
|
|
|
|
|
after_dims = first_page_dimensions(outpdf)
|
|
|
|
|
|
|
|
assert isclose(before_dims[0], after_dims[0])
|
|
|
|
assert isclose(before_dims[1], after_dims[1])
|
2017-04-18 15:20:25 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_skip_big_with_no_images(spoof_tesseract_noop, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
resources / 'blank.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--skip-big',
|
|
|
|
'5',
|
|
|
|
'--force-ocr',
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2017-05-01 15:44:21 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_gs_render_failure(spoof_no_tess_gs_render_fail, resources, outpdf):
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'blank.pdf', outpdf, env=spoof_no_tess_gs_render_fail
|
|
|
|
)
|
2017-05-01 15:44:21 -07:00
|
|
|
print(err)
|
|
|
|
assert p.returncode == ExitCode.child_process_error
|
|
|
|
|
|
|
|
|
|
|
|
def test_gs_raster_failure(spoof_no_tess_gs_raster_fail, resources, outpdf):
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf', outpdf, env=spoof_no_tess_gs_raster_fail
|
|
|
|
)
|
2017-05-01 15:44:21 -07:00
|
|
|
print(err)
|
|
|
|
assert p.returncode == ExitCode.child_process_error
|
2017-05-01 15:46:15 -07:00
|
|
|
|
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
'8.0.0' <= qpdf.version() <= '8.0.1',
|
|
|
|
reason="qpdf regression on pages with no contents",
|
|
|
|
)
|
2017-05-01 15:46:15 -07:00
|
|
|
def test_no_contents(spoof_tesseract_noop, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
resources / 'no_contents.pdf', outpdf, '--force-ocr', env=spoof_tesseract_noop
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'image', ['baiona.png', 'baiona_gray.png', 'baiona_alpha.png', 'congress.jpg']
|
|
|
|
)
|
|
|
|
def test_compression_preserved(
|
|
|
|
spoof_tesseract_noop, ocrmypdf_exec, resources, image, outpdf
|
|
|
|
):
|
2017-05-06 22:27:25 -07:00
|
|
|
input_file = str(resources / image)
|
|
|
|
output_file = str(outpdf)
|
|
|
|
|
|
|
|
im = Image.open(input_file)
|
|
|
|
# Runs: ocrmypdf - output.pdf < testfile
|
|
|
|
with open(input_file, 'rb') as input_stream:
|
2017-05-09 16:37:29 -07:00
|
|
|
p_args = ocrmypdf_exec + [
|
2018-12-30 01:27:49 -08:00
|
|
|
'--optimize',
|
|
|
|
'0',
|
|
|
|
'--image-dpi',
|
|
|
|
'150',
|
|
|
|
'--output-type',
|
|
|
|
'pdf',
|
|
|
|
'-',
|
|
|
|
output_file,
|
|
|
|
]
|
2017-05-06 22:27:25 -07:00
|
|
|
p = Popen(
|
2018-12-30 01:27:49 -08:00
|
|
|
p_args,
|
|
|
|
close_fds=True,
|
|
|
|
stdout=PIPE,
|
|
|
|
stderr=PIPE,
|
|
|
|
stdin=input_stream,
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2017-05-06 22:27:25 -07:00
|
|
|
out, err = p.communicate()
|
|
|
|
|
2018-07-31 23:45:28 -07:00
|
|
|
if im.mode in ('RGBA', 'LA'):
|
|
|
|
# If alpha image is input, expect an error
|
|
|
|
assert p.returncode != ExitCode.ok and b'alpha' in err
|
|
|
|
return
|
|
|
|
|
2018-07-25 22:23:41 -04:00
|
|
|
assert p.returncode == ExitCode.ok, err.decode('utf-8')
|
2017-05-06 22:27:25 -07:00
|
|
|
|
2017-05-18 16:30:43 -07:00
|
|
|
pdfinfo = PdfInfo(output_file)
|
2017-05-09 16:37:29 -07:00
|
|
|
|
2017-05-18 17:12:04 -07:00
|
|
|
pdfimage = pdfinfo[0].images[0]
|
2017-05-09 16:37:29 -07:00
|
|
|
|
|
|
|
if input_file.endswith('.png'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.enc != Encoding.jpeg, "Lossless compression changed to lossy!"
|
2017-05-09 16:37:29 -07:00
|
|
|
elif input_file.endswith('.jpg'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.enc == Encoding.jpeg, "Lossy compression changed to lossless!"
|
2017-05-09 16:37:29 -07:00
|
|
|
if im.mode.startswith('RGB') or im.mode.startswith('BGR'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.color == Colorspace.rgb, "Colorspace changed"
|
2017-05-09 16:37:29 -07:00
|
|
|
elif im.mode.startswith('L'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.color == Colorspace.gray, "Colorspace changed"
|
2017-05-09 16:37:29 -07:00
|
|
|
|
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'image,compression',
|
|
|
|
[
|
|
|
|
('baiona.png', 'jpeg'),
|
|
|
|
('baiona_gray.png', 'lossless'),
|
|
|
|
('congress.jpg', 'lossless'),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_compression_changed(
|
|
|
|
spoof_tesseract_noop, ocrmypdf_exec, resources, image, compression, outpdf
|
|
|
|
):
|
2017-05-09 16:37:29 -07:00
|
|
|
input_file = str(resources / image)
|
|
|
|
output_file = str(outpdf)
|
|
|
|
|
|
|
|
im = Image.open(input_file)
|
|
|
|
|
|
|
|
# Runs: ocrmypdf - output.pdf < testfile
|
|
|
|
with open(input_file, 'rb') as input_stream:
|
|
|
|
p_args = ocrmypdf_exec + [
|
2018-12-30 01:27:49 -08:00
|
|
|
'--image-dpi',
|
|
|
|
'150',
|
|
|
|
'--output-type',
|
|
|
|
'pdfa',
|
|
|
|
'--optimize',
|
|
|
|
'0',
|
|
|
|
'--pdfa-image-compression',
|
|
|
|
compression,
|
|
|
|
'-',
|
|
|
|
output_file,
|
|
|
|
]
|
2017-05-09 16:37:29 -07:00
|
|
|
p = Popen(
|
2018-12-30 01:27:49 -08:00
|
|
|
p_args,
|
|
|
|
close_fds=True,
|
|
|
|
stdout=PIPE,
|
|
|
|
stderr=PIPE,
|
|
|
|
stdin=input_stream,
|
|
|
|
env=spoof_tesseract_noop,
|
|
|
|
)
|
2017-05-09 16:37:29 -07:00
|
|
|
out, err = p.communicate()
|
|
|
|
|
2018-07-31 23:45:28 -07:00
|
|
|
assert p.returncode == ExitCode.ok, err
|
2017-05-09 16:37:29 -07:00
|
|
|
|
2017-05-18 16:30:43 -07:00
|
|
|
pdfinfo = PdfInfo(output_file)
|
2017-05-09 16:37:29 -07:00
|
|
|
|
2017-05-18 17:12:04 -07:00
|
|
|
pdfimage = pdfinfo[0].images[0]
|
2017-05-09 16:37:29 -07:00
|
|
|
|
2017-05-18 22:32:27 -07:00
|
|
|
if compression == "jpeg":
|
|
|
|
assert pdfimage.enc == Encoding.jpeg
|
2018-04-12 15:16:54 -07:00
|
|
|
else:
|
2018-04-17 17:00:24 -07:00
|
|
|
if ghostscript.jpeg_passthrough_available():
|
2018-04-12 15:16:54 -07:00
|
|
|
# Ghostscript 9.23 adds JPEG passthrough, which allows a JPEG to be
|
|
|
|
# copied without transcoding - so report
|
|
|
|
if image.endswith('jpg'):
|
|
|
|
assert pdfimage.enc == Encoding.jpeg
|
|
|
|
else:
|
|
|
|
assert pdfimage.enc not in (Encoding.jpeg, Encoding.jpeg2000)
|
2017-05-09 16:37:29 -07:00
|
|
|
|
2017-05-06 22:27:25 -07:00
|
|
|
if im.mode.startswith('RGB') or im.mode.startswith('BGR'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.color == Colorspace.rgb, "Colorspace changed"
|
2017-05-06 22:27:25 -07:00
|
|
|
elif im.mode.startswith('L'):
|
2018-12-30 01:27:49 -08:00
|
|
|
assert pdfimage.color == Colorspace.gray, "Colorspace changed"
|
2017-05-11 00:43:36 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_sidecar_pagecount(spoof_tesseract_cache, resources, outpdf):
|
|
|
|
sidecar = outpdf + '.txt'
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'multipage.pdf',
|
|
|
|
outpdf,
|
2017-05-11 00:43:36 -07:00
|
|
|
'--skip-text',
|
2018-12-30 01:27:49 -08:00
|
|
|
'--sidecar',
|
|
|
|
sidecar,
|
|
|
|
env=spoof_tesseract_cache,
|
|
|
|
)
|
2017-05-11 00:43:36 -07:00
|
|
|
|
2017-05-18 16:43:50 -07:00
|
|
|
pdfinfo = PdfInfo(resources / 'multipage.pdf')
|
2017-05-11 00:43:36 -07:00
|
|
|
num_pages = len(pdfinfo)
|
|
|
|
|
|
|
|
with open(sidecar, 'r') as f:
|
|
|
|
ocr_text = f.read()
|
|
|
|
|
|
|
|
# There should a formfeed between each pair of pages, so the count of
|
|
|
|
# formfeeds is the page count less one
|
2018-12-30 01:27:49 -08:00
|
|
|
assert (
|
|
|
|
ocr_text.count('\f') == num_pages - 1
|
|
|
|
), "Sidecar page count does not match PDF page count"
|
2017-10-11 14:32:58 -07:00
|
|
|
|
|
|
|
|
2017-10-26 18:15:31 -07:00
|
|
|
def test_sidecar_nonempty(spoof_tesseract_cache, resources, outpdf):
|
|
|
|
sidecar = outpdf + '.txt'
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf', outpdf, '--sidecar', sidecar, env=spoof_tesseract_cache
|
2017-10-26 18:15:31 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
with open(sidecar, 'r') as f:
|
|
|
|
ocr_text = f.read()
|
|
|
|
assert 'the' in ocr_text
|
|
|
|
|
|
|
|
|
2018-04-20 00:06:55 -07:00
|
|
|
@pytest.mark.parametrize('pdfa_level', ['1', '2', '3'])
|
|
|
|
def test_pdfa_n(spoof_tesseract_cache, pdfa_level, resources, outpdf):
|
2018-05-04 15:29:43 -07:00
|
|
|
if pdfa_level == '3' and ghostscript.version() < '9.19':
|
|
|
|
pytest.xfail(reason='Ghostscript >= 9.19 required')
|
|
|
|
|
2017-10-11 14:32:58 -07:00
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf',
|
|
|
|
outpdf,
|
|
|
|
'--output-type',
|
|
|
|
'pdfa-' + pdfa_level,
|
|
|
|
env=spoof_tesseract_cache,
|
2017-10-11 14:32:58 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
pdfa_info = file_claims_pdfa(outpdf)
|
2018-04-20 00:06:55 -07:00
|
|
|
assert pdfa_info['conformance'] == 'PDF/A-{}B'.format(pdfa_level)
|
2017-11-16 17:18:02 -08:00
|
|
|
|
|
|
|
|
2018-06-29 13:47:51 -07:00
|
|
|
@pytest.mark.skipif(sys.version_info >= (3, 7, 0), reason='better utf-8')
|
2017-11-16 17:18:02 -08:00
|
|
|
def test_bad_locale():
|
|
|
|
env = os.environ.copy()
|
2017-11-16 20:37:30 -08:00
|
|
|
env['LC_ALL'] = 'C'
|
2017-11-16 17:18:02 -08:00
|
|
|
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf('a', 'b', env=env)
|
2017-11-16 17:18:02 -08:00
|
|
|
assert out == '', "stdout not clean"
|
|
|
|
assert p.returncode != 0
|
2017-11-26 22:52:53 -08:00
|
|
|
assert 'configured to use ASCII as encoding' in err, "should whine"
|
|
|
|
|
2017-11-29 14:08:07 -08:00
|
|
|
|
|
|
|
@pytest.mark.parametrize('renderer', RENDERERS)
|
|
|
|
def test_bad_utf8(spoof_tess_bad_utf8, renderer, resources, no_outpdf):
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'ccitt.pdf',
|
|
|
|
no_outpdf,
|
|
|
|
'--pdf-renderer',
|
|
|
|
renderer,
|
|
|
|
env=spoof_tess_bad_utf8,
|
2017-11-29 14:08:07 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
assert out == '', "stdout not clean"
|
|
|
|
assert p.returncode != 0
|
|
|
|
assert 'not utf-8' in err, "should whine about utf-8"
|
|
|
|
assert '\\x96' in err, 'should repeat backslash encoded output'
|
2018-01-09 00:17:53 -08:00
|
|
|
|
|
|
|
|
2018-01-10 15:43:59 -08:00
|
|
|
@pytest.mark.skipif(
|
2018-12-30 01:27:49 -08:00
|
|
|
PIL.__version__ < '5.0.0', reason="Pillow < 5.0.0 doesn't raise the exception"
|
|
|
|
)
|
2018-01-10 15:43:59 -08:00
|
|
|
def test_decompression_bomb(resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, out, err = run_ocrmypdf(resources / 'hugemono.pdf', outpdf)
|
2018-01-10 15:43:59 -08:00
|
|
|
assert 'decompression bomb' in err
|
|
|
|
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'hugemono.pdf', outpdf, '--max-image-mpixels', '2000'
|
2018-01-10 15:43:59 -08:00
|
|
|
)
|
2018-02-08 00:15:12 -08:00
|
|
|
assert p.returncode == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_text_curves(spoof_tesseract_noop, resources, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(resources / 'vector.pdf', outpdf, env=spoof_tesseract_noop)
|
2018-02-08 00:15:12 -08:00
|
|
|
|
|
|
|
info = PdfInfo(outpdf)
|
|
|
|
assert len(info.pages[0].images) == 0, "added images to the vector PDF"
|
|
|
|
|
|
|
|
check_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'vector.pdf', outpdf, '--force-ocr', env=spoof_tesseract_noop
|
|
|
|
)
|
2018-05-24 22:22:01 -07:00
|
|
|
|
2018-02-08 00:15:12 -08:00
|
|
|
info = PdfInfo(outpdf)
|
|
|
|
assert len(info.pages[0].images) != 0, "force did not rasterize"
|
2018-05-24 22:22:01 -07:00
|
|
|
|
2018-02-19 22:15:07 -08:00
|
|
|
|
|
|
|
def test_dev_null(spoof_tesseract_noop, resources):
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'trivial.pdf', os.devnull, '--force-ocr', env=spoof_tesseract_noop
|
2018-02-19 22:15:07 -08:00
|
|
|
)
|
|
|
|
assert p.returncode == 0, "could not send output to /dev/null"
|
|
|
|
assert len(out) == 0, "wrote to stdout"
|
|
|
|
|
|
|
|
|
|
|
|
def test_output_is_dir(spoof_tesseract_noop, resources, outdir):
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'trivial.pdf', outdir, '--force-ocr', env=spoof_tesseract_noop
|
2018-02-19 22:15:07 -08:00
|
|
|
)
|
|
|
|
assert p.returncode == ExitCode.file_access_error
|
|
|
|
assert 'is not a writable file' in err
|
|
|
|
|
|
|
|
|
|
|
|
def test_output_is_symlink(spoof_tesseract_noop, resources, outdir):
|
|
|
|
sym = Path(outdir / 'this_is_a_symlink')
|
|
|
|
sym.symlink_to(outdir / 'out.pdf')
|
|
|
|
p, out, err = run_ocrmypdf(
|
2018-12-30 01:27:49 -08:00
|
|
|
resources / 'trivial.pdf', sym, '--force-ocr', env=spoof_tesseract_noop
|
2018-02-19 22:15:07 -08:00
|
|
|
)
|
2018-03-02 16:57:46 -08:00
|
|
|
assert p.returncode == ExitCode.ok, err
|
2018-02-19 22:15:07 -08:00
|
|
|
assert (outdir / 'out.pdf').stat().st_size > 0, 'target file not created'
|
2018-09-13 21:50:51 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_livecycle(resources, no_outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
p, _, err = run_ocrmypdf(resources / 'livecycle.pdf', no_outpdf)
|
2018-09-13 21:50:51 -07:00
|
|
|
|
|
|
|
assert p.returncode == ExitCode.input_file, err
|
2018-11-10 00:56:22 -08:00
|
|
|
|
|
|
|
|
|
|
|
def test_version_check():
|
|
|
|
from ocrmypdf.exec import get_version
|
|
|
|
|
|
|
|
with pytest.raises(MissingDependencyError):
|
|
|
|
get_version('NOT_FOUND_UNLIKELY_ON_PATH')
|
|
|
|
|
|
|
|
with pytest.raises(MissingDependencyError):
|
|
|
|
get_version('sh', version_arg='-c')
|
|
|
|
|
|
|
|
with pytest.raises(MissingDependencyError):
|
|
|
|
get_version('echo')
|