aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/tests/t-keylist.cpp
blob: 626d0a7f64819a4df9649c699c42b069459d7ad1 (plain)
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
#include <QDebug>
#include <QTest>
#include "keylistjob.h"
#include "qgpgmebackend.h"
#include "keylistresult.h"

using namespace QGpgME;

class KeyListTest : public QObject
{
    Q_OBJECT

private Q_SLOTS:

    void testSingleKeyListSync()
    {
        KeyListJob *job = openpgp()->keyListJob(false, false, false);
        std::vector<GpgME::Key> keys;
        GpgME::KeyListResult result = job->exec(QStringList() << QStringLiteral("[email protected]"),
                                                false, keys);
        Q_ASSERT (!result.error());
        Q_ASSERT (keys.size() == 1);
        const QString kId = QLatin1String(keys.front().keyID());
        Q_ASSERT (kId == QStringLiteral("2D727CC768697734"));
    }
};

QTEST_MAIN(KeyListTest)

#include "t-keylist.moc"