d9f7a18ed8
* lang/qt/tests/t-keylist.cpp: Verify that GNUPGHOME is set. * lang/qt/tests/initial.test: New dummy test. * lang/qt/tests/Makefile.am: Add dependency to initial.test -- Feels weird but this follows the pattern in tests/gpg/Makefile.am and solves the problem that the environment is dirty.
37 lines
953 B
C++
37 lines
953 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()
|
|
{
|
|
KeyListJob *job = 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"));
|
|
}
|
|
|
|
void initTestCase()
|
|
{
|
|
const QString gpgHome = qgetenv("GNUPGHOME");
|
|
QVERIFY2(!gpgHome.isEmpty(), "GNUPGHOME environment variable is not set.");
|
|
}
|
|
};
|
|
|
|
QTEST_MAIN(KeyListTest)
|
|
|
|
#include "t-keylist.moc"
|