diff options
author | Andre Heinecke <[email protected]> | 2016-08-09 12:10:15 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-09 12:23:51 +0000 |
commit | f209ec8f581ae597b37f2e3a5e452e4b53b2d4c7 (patch) | |
tree | 810a34c62c736aa302cb4e955086d96bf7276b0e /lang/qt/tests/t-keylist.cpp | |
parent | Qt: Add support for EncryptJobs with generic flags (diff) | |
download | gpgme-f209ec8f581ae597b37f2e3a5e452e4b53b2d4c7.tar.gz gpgme-f209ec8f581ae597b37f2e3a5e452e4b53b2d4c7.zip |
Qt: Add encryption test and refactor testsuite
* lang/qt/tests/Makefile.am: Add t-encrypt and t-support.
* lang/qt/tests/t-support.cpp, lang/qt/tests/t-support.c (QGpgMETest):
New. Class to handle common cleanup / init.
* lang/qt/tests/t-keylist.cpp,
lang/qt/tests/t-keylocate.cpp,
lang/qt/tests/t-ownertrust.cpp,
lang/qt/tests/t-tofuinfo.cpp: Inherit QGpgMETest.
* lang/qt/tests/t-encrypt.cpp: New. Test Symetric and Asymectric
encryption. Mixed encryption test is disabled.
Diffstat (limited to 'lang/qt/tests/t-keylist.cpp')
-rw-r--r-- | lang/qt/tests/t-keylist.cpp | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/lang/qt/tests/t-keylist.cpp b/lang/qt/tests/t-keylist.cpp index adc997aa..2fbec28c 100644 --- a/lang/qt/tests/t-keylist.cpp +++ b/lang/qt/tests/t-keylist.cpp @@ -37,10 +37,12 @@ #include "qgpgmebackend.h" #include "keylistresult.h" +#include "t-support.h" + using namespace QGpgME; using namespace GpgME; -class KeyListTest : public QObject +class KeyListTest : public QGpgMETest { Q_OBJECT @@ -48,7 +50,6 @@ Q_SIGNALS: void asyncDone(); private Q_SLOTS: - void testSingleKeyListSync() { KeyListJob *job = openpgp()->keyListJob(false, false, false); @@ -99,19 +100,9 @@ private Q_SLOTS: QSignalSpy spy (this, SIGNAL(asyncDone())); Q_ASSERT(spy.wait()); } - - void initTestCase() - { - const QString gpgHome = qgetenv("GNUPGHOME"); - QVERIFY2(!gpgHome.isEmpty(), "GNUPGHOME environment variable is not set."); - } - - void cleanupTestCase() - { - QCoreApplication::sendPostedEvents(); - } }; QTEST_MAIN(KeyListTest) #include "t-keylist.moc" +#include "t-support.moc" |