1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/QtTest>
#include <QPdfDocument>
#include <QPdfSearchModel>
#include <QtPdf/private/qtpdfglobal_p.h>
Q_PDF_LOGGING_CATEGORY(lcTests, "qt.pdf.tests")
class tst_QPdfSearchModel: public QObject
{
Q_OBJECT
public:
tst_QPdfSearchModel() {}
private slots:
void findText_data();
void findText();
};
void tst_QPdfSearchModel::findText_data()
{
QTest::addColumn<QString>("pdfPath");
QTest::addColumn<QString>("searchString");
QTest::addColumn<int>("expectedMatchCount");
QTest::addColumn<int>("matchIndexToCheck");
QTest::addColumn<int>("expectedRectangleCount");
QTest::addColumn<int>("rectIndexToCheck");
QTest::addColumn<QRect>("expectedMatchBounds");
QTest::newRow("the search for ai") << QFINDTESTDATA("test.pdf")
<< "ai" << 3 << 0 << 1 << 0 << QRect(321, 202, 9, 11);
QTest::newRow("rotated text") << QFINDTESTDATA("rotated_text.pdf")
<< "world!" << 2 << 0 << 1 << 0 << QRect(76, 102, 26, 28);
QTest::newRow("displaced text") << QFINDTESTDATA("tagged_mcr_multipage.pdf")
<< "1" << 1 << 0 << 1 << 0 << QRect(34, 22, 3, 8);
}
void tst_QPdfSearchModel::findText()
{
QFETCH(QString, pdfPath);
QFETCH(QString, searchString);
QFETCH(int, expectedMatchCount);
QFETCH(int, matchIndexToCheck);
QFETCH(int, expectedRectangleCount);
QFETCH(int, rectIndexToCheck);
QFETCH(QRect, expectedMatchBounds);
QPdfDocument document;
QCOMPARE(document.load(pdfPath), QPdfDocument::Error::None);
QPdfSearchModel model;
model.setDocument(&document);
model.setSearchString(searchString);
QTRY_COMPARE(model.count(), expectedMatchCount); // wait for the timer
QPdfLink match = model.resultAtIndex(matchIndexToCheck);
qCDebug(lcTests) << match;
QList<QRectF> rects = match.rectangles();
QCOMPARE(rects.size(), expectedRectangleCount);
QCOMPARE(rects.at(rectIndexToCheck).toRect(), expectedMatchBounds);
}
QTEST_MAIN(tst_QPdfSearchModel)
#include "tst_qpdfsearchmodel.moc"
|