From ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kwallet/tests/kwalletasync.cpp | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 kwallet/tests/kwalletasync.cpp (limited to 'kwallet/tests/kwalletasync.cpp') diff --git a/kwallet/tests/kwalletasync.cpp b/kwallet/tests/kwalletasync.cpp new file mode 100644 index 000000000..0992c6e7d --- /dev/null +++ b/kwallet/tests/kwalletasync.cpp @@ -0,0 +1,59 @@ +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "kwallettest.h" + +static QTextStream _out( stdout, IO_WriteOnly ); + +void openWallet() +{ + _out << "About to ask for wallet async" << endl; + + // we have no wallet: ask for one. + KWallet::Wallet *wallet = KWallet::Wallet::openWallet( KWallet::Wallet::NetworkWallet(), 0, KWallet::Wallet::Asynchronous ); + + WalletReceiver r; + r.connect( wallet, SIGNAL( walletOpened(bool) ), SLOT( walletOpened(bool) ) ); + + _out << "About to start 30 second event loop" << endl; + + QTimer::singleShot( 30000, qApp, SLOT( quit() ) ); + int ret = qApp->exec(); + + if ( ret == 0 ) + _out << "Timed out!" << endl; + else + _out << "Success!" << endl; +} + +void WalletReceiver::walletOpened( bool got ) +{ + _out << "Got async wallet: " << got << endl; + qApp->exit( 1 ); +} + +int main( int argc, char *argv[] ) +{ + KAboutData aboutData( "kwalletasync", "kwalletasync", "version" ); + KCmdLineArgs::init( argc, argv, &aboutData ); + KApplication app( "kwalletasync" ); + + // register with DCOP + _out << "DCOP registration returned " << app.dcopClient()->registerAs(app.name()) << endl; + + openWallet(); + + return 0; +} + +// vim: set noet ts=4 sts=4 sw=4: + -- cgit v1.2.3