gpgme/lang/qt/tests/t-keylist.cpp
Andre Heinecke faf987dd62 Qt: Add a unit test for qgpgme
* configure.ac: Configure test Makefile.
* m4/qt.m4: Look up Qt5Test flags.
* lang/qt/tests/t-keylist.cpp: New. Simple keylist check.
* lang/qt/tests/Makefile.am: New. General test framework.

--
This test mostly checks that it basically compiles / works and
adds a test framework.
2016-04-03 01:48:46 -08:00

32 lines
817 B
C++

#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()
{
QGpgMEBackend backend;
KeyListJob *job = backend.openpgp()->keyListJob(false, false, false);
std::vector<GpgME::Key> keys;
GpgME::KeyListResult result = job->exec(QStringList() << QStringLiteral("alfa@example.net"),
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"