Qt: Create TestPassphraseProvider on stack
* lang/qt/tests/t-encrypt.cpp, lang/qt/tests/t-tofuinfo.cpp: Create TestPassphraseProvider on stack. -- Context does not delete the provider. This fixes ASAN errors.
This commit is contained in:
parent
21d5e71d48
commit
a27d7755d0
@ -71,7 +71,8 @@ private Q_SLOTS:
|
||||
|
||||
/* Now decrypt */
|
||||
auto ctx = Context::createForProtocol(OpenPGP);
|
||||
ctx->setPassphraseProvider(new TestPassphraseProvider);
|
||||
TestPassphraseProvider provider;
|
||||
ctx->setPassphraseProvider(&provider);
|
||||
ctx->setPinentryMode(Context::PinentryLoopback);
|
||||
auto decJob = new QGpgMEDecryptJob(ctx);
|
||||
QByteArray plainText;
|
||||
@ -84,7 +85,8 @@ private Q_SLOTS:
|
||||
void testSymmetricEncryptDecrypt()
|
||||
{
|
||||
auto ctx = Context::createForProtocol(OpenPGP);
|
||||
ctx->setPassphraseProvider(new TestPassphraseProvider);
|
||||
TestPassphraseProvider provider;
|
||||
ctx->setPassphraseProvider(&provider);
|
||||
ctx->setPinentryMode(Context::PinentryLoopback);
|
||||
ctx->setArmor(true);
|
||||
ctx->setTextMode(true);
|
||||
@ -99,7 +101,7 @@ private Q_SLOTS:
|
||||
killAgent(mDir.path());
|
||||
|
||||
auto ctx2 = Context::createForProtocol(OpenPGP);
|
||||
ctx2->setPassphraseProvider(new TestPassphraseProvider);
|
||||
ctx2->setPassphraseProvider(&provider);
|
||||
ctx2->setPinentryMode(Context::PinentryLoopback);
|
||||
auto decJob = new QGpgMEDecryptJob(ctx2);
|
||||
QByteArray plainText;
|
||||
|
@ -73,7 +73,8 @@ class TofuInfoTest: public QGpgMETest
|
||||
void signAndVerify(const QString &what, const GpgME::Key &key, int expected)
|
||||
{
|
||||
Context *ctx = Context::createForProtocol(OpenPGP);
|
||||
ctx->setPassphraseProvider(new TestPassphraseProvider);
|
||||
TestPassphraseProvider provider;
|
||||
ctx->setPassphraseProvider(&provider);
|
||||
ctx->setPinentryMode(Context::PinentryLoopback);
|
||||
auto *job = new QGpgMESignJob(ctx);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user