Files
RedBear-OS/local/recipes/kde/kf6-kwallet/source/tests/kwalletd/kwalletboth.cpp
T
vasilito edb68153e3 milestone: 22 KF6 enabled, blake3 placeholders removed, text-login fixed
- kf6-knewstuff/kwallet: removed all-zero blake3 placeholders
- CONSOLE-TO-KDE-DESKTOP-PLAN.md: 20→22 KF6 enabled count
- BOOT-PROCESS-IMPROVEMENT-PLAN.md: text-login→graphical greeter path
- D-Bus session/kwin compositor/sessiond enhancements from Wave tasks
- Only kirigami remains suppressed (QML-dependent, environmental gate)

Zero warnings. 24 commits total.
2026-04-29 14:48:47 +01:00

84 lines
2.2 KiB
C++

#include "kwalletboth.h"
#include <QApplication>
#include <QMap>
#include <QTest>
#include <QTextStream>
#include <QTimer>
#include <KAboutData>
#include <QDBusConnection>
#include <QDBusConnectionInterface>
#include <kwallet.h>
#include "kwallettest.h"
static QTextStream _out(stdout, QIODevice::WriteOnly);
void KWalletBothTest::init()
{
if (!qEnvironmentVariableIsSet("DISPLAY")) {
QSKIP("$DISPLAY is not set. These tests cannot be done without a graphical system.");
}
}
void KWalletBothTest::openWallet()
{
_out << "About to ask for wallet async\n";
// we have no wallet: ask for one.
KWallet::Wallet *wallet = KWallet::Wallet::openWallet(KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Asynchronous);
QVERIFY(wallet != nullptr);
WalletReceiver r;
connect(wallet, &KWallet::Wallet::walletOpened, &r, &WalletReceiver::walletOpened);
_out << "About to ask for wallet sync\n";
wallet = KWallet::Wallet::openWallet(KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Synchronous);
QVERIFY(wallet != nullptr);
_out << "Got sync wallet: " << (wallet != nullptr) << '\n';
_out << "About to start 30 second event loop\n";
QTimer::singleShot(30000, qApp, SLOT(quit()));
int ret = qApp->exec();
if (ret == 0) {
_out << "Timed out!\n";
} else {
_out << "Success!\n";
}
bool success = false;
QMap<QString, QString> p;
p = wallet->passwordList(&success);
_out << "passwordList returned: " << success << '\n';
_out << "passwordList returned " << p.keys().count() << " entries\n";
QMap<QString, QMap<QString, QString>> q;
q = wallet->mapList(&success);
_out << "mapList returned: " << success << '\n';
_out << "mapList returned " << q.keys().count() << " entries\n";
QMap<QString, QByteArray> s;
s = wallet->entriesList(&success);
_out << "entryList returned: " << success << '\n';
_out << "entryList returned " << s.keys().count() << " entries\n";
_out.flush();
delete wallet;
}
void WalletReceiver::walletOpened(bool got)
{
_out << "Got async wallet: " << got << '\n';
_out.flush();
qApp->exit(1);
}
QTEST_GUILESS_MAIN(KWalletBothTest)
#include "moc_kwalletboth.cpp"