2022-07-28 01:06:46 -07:00
|
|
|
# SPDX-FileCopyrightText: 2022 James R. Barlow
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
2019-06-12 17:27:47 -07:00
|
|
|
|
2022-07-23 00:39:24 -07:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2019-06-12 17:27:47 -07:00
|
|
|
import pytest
|
|
|
|
|
2019-06-12 17:52:25 -07:00
|
|
|
import ocrmypdf
|
2019-06-12 17:27:47 -07:00
|
|
|
from ocrmypdf._validation import _pages_from_ranges
|
2019-07-27 04:26:23 -07:00
|
|
|
from ocrmypdf.exceptions import BadArgsError
|
2019-12-19 15:29:56 -08:00
|
|
|
from ocrmypdf.pdfinfo import PdfInfo
|
2019-06-12 17:27:47 -07:00
|
|
|
|
|
|
|
|
2019-07-27 04:26:23 -07:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
'pages, result',
|
|
|
|
[
|
|
|
|
['1', {0}],
|
|
|
|
['1,2', {0, 1}],
|
|
|
|
['1-3', {0, 1, 2}],
|
|
|
|
['2,5,6', {1, 4, 5}],
|
|
|
|
['11-15, 18, ', {10, 11, 12, 13, 14, 17}],
|
|
|
|
[',,3', {2}],
|
|
|
|
['3, 3, 3, 3,', {2}],
|
|
|
|
['3, 2, 1, 42', {0, 1, 2, 41}],
|
|
|
|
['-1', BadArgsError],
|
|
|
|
['1,3,-11', BadArgsError],
|
|
|
|
['1-,', BadArgsError],
|
|
|
|
['start-end', BadArgsError],
|
2020-12-22 01:22:14 -08:00
|
|
|
['1-0', BadArgsError],
|
|
|
|
['99-98', BadArgsError],
|
|
|
|
['0-0', BadArgsError],
|
|
|
|
['1-0,3-4', BadArgsError],
|
|
|
|
[',', BadArgsError],
|
|
|
|
['', BadArgsError],
|
2019-07-27 04:26:23 -07:00
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_pages(pages, result):
|
|
|
|
if isinstance(result, type):
|
|
|
|
with pytest.raises(result):
|
|
|
|
_pages_from_ranges(pages)
|
|
|
|
else:
|
|
|
|
assert _pages_from_ranges(pages) == result
|
2019-06-12 17:27:47 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_nonmonotonic_warning(caplog):
|
|
|
|
pages = _pages_from_ranges('1, 3, 2')
|
|
|
|
assert pages == {0, 1, 2}
|
|
|
|
assert 'out of order' in caplog.text
|
|
|
|
|
|
|
|
|
2022-08-11 01:13:10 -07:00
|
|
|
def test_limited_pages(multipage, outpdf):
|
2019-07-07 02:11:44 -07:00
|
|
|
ocrmypdf.ocr(
|
2022-08-11 01:13:10 -07:00
|
|
|
multipage,
|
2019-06-12 17:27:47 -07:00
|
|
|
outpdf,
|
|
|
|
pages='5-6',
|
|
|
|
optimize=0,
|
|
|
|
output_type='pdf',
|
2020-06-05 17:45:11 -07:00
|
|
|
plugins=['tests/plugins/tesseract_cache.py'],
|
2019-06-12 17:27:47 -07:00
|
|
|
)
|
|
|
|
pi = PdfInfo(outpdf)
|
|
|
|
assert not pi.pages[0].has_text
|
|
|
|
assert pi.pages[4].has_text
|
|
|
|
assert pi.pages[5].has_text
|