File size: 1,068 Bytes
5cee033
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#include <QtTest/QTest>

#include <poppler-qt6.h>

class TestPermissions : public QObject
{
    Q_OBJECT
public:
    explicit TestPermissions(QObject *parent = nullptr) : QObject(parent) { }
private slots:
    void permissions1();
};

void TestPermissions::permissions1()
{
    std::unique_ptr<Poppler::Document> doc = Poppler::Document::load(TESTDATADIR "/unittestcases/orientation.pdf");
    QVERIFY(doc);

    // we are allowed to print
    QVERIFY(doc->okToPrint());

    // we are not allowed to change
    QVERIFY(!(doc->okToChange()));

    // we are not allowed to copy or extract content
    QVERIFY(!(doc->okToCopy()));

    // we are not allowed to print at high resolution
    QVERIFY(!(doc->okToPrintHighRes()));

    // we are not allowed to fill forms
    QVERIFY(!(doc->okToFillForm()));

    // we are allowed to extract content for accessibility
    QVERIFY(doc->okToExtractForAccessibility());

    // we are allowed to assemble this document
    QVERIFY(doc->okToAssemble());
}

QTEST_GUILESS_MAIN(TestPermissions)
#include "check_permissions.moc"