2017-05-25 00:07:29 -07: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-05-25 00:07:29 -07:00
|
|
|
|
2018-12-30 01:28:15 -08:00
|
|
|
from math import isclose
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from ocrmypdf.exceptions import ExitCode
|
2017-05-25 00:07:29 -07:00
|
|
|
|
|
|
|
check_ocrmypdf = pytest.helpers.check_ocrmypdf
|
|
|
|
run_ocrmypdf = pytest.helpers.run_ocrmypdf
|
|
|
|
spoof = pytest.helpers.spoof
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def poster(resources):
|
|
|
|
return resources / 'poster.pdf'
|
|
|
|
|
|
|
|
|
|
|
|
def test_userunit_ghostscript_fails(poster, no_outpdf):
|
|
|
|
p, out, err = run_ocrmypdf(poster, no_outpdf, '--output-type=pdfa')
|
|
|
|
assert p.returncode == ExitCode.input_file
|
2017-05-25 01:17:43 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_userunit_qpdf_passes(spoof_tesseract_cache, poster, outpdf):
|
|
|
|
before = PdfInfo(poster)
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(poster, outpdf, '--output-type=pdf', env=spoof_tesseract_cache)
|
2017-05-25 01:17:43 -07:00
|
|
|
|
|
|
|
after = PdfInfo(outpdf)
|
|
|
|
assert isclose(before[0].width_inches, after[0].width_inches)
|
|
|
|
|
2017-05-29 13:01:18 -07:00
|
|
|
|
|
|
|
def test_rotate_interaction(spoof_tesseract_cache, poster, outpdf):
|
2018-12-30 01:27:49 -08:00
|
|
|
check_ocrmypdf(
|
|
|
|
poster, outpdf, '--output-type=pdf', '--rotate-pages', env=spoof_tesseract_cache
|
|
|
|
)
|