kde-playground/kdepim/libkleo/tests/test_keygen.cpp
2015-04-14 21:49:29 +00:00

168 lines
5.3 KiB
C++

/*
test_keygen.cpp
This file is part of libkleopatra's test suite.
Copyright (c) 2004 Klarälvdalens Datakonsult AB
Libkleopatra is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License,
version 2, as published by the Free Software Foundation.
Libkleopatra is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include "test_keygen.h"
#include "libkleo/kleo/keylistjob.h"
#include "libkleo/kleo/keygenerationjob.h"
#include "libkleo/kleo/cryptobackendfactory.h"
#include "libkleo/ui/progressdialog.h"
#include <gpgme++/keygenerationresult.h>
#include <kapplication.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kmessagebox.h>
#include <kdebug.h>
#include <QMessageBox>
#include <QStringList>
#include <QTimer>
#include <QLayout>
#include <QLineEdit>
#include <QLabel>
#include <QGridLayout>
#include <assert.h>
static const char * const keyParams[] = {
"Key-Type", "Key-Length",
"Subkey-Type", "Subkey-Length",
"Name-Real", "Name-Comment", "Name-Email", "Name-DN",
"Expire-Date",
"Passphrase"
};
static const int numKeyParams = sizeof keyParams / sizeof *keyParams;
static const char * protocol = 0;
KeyGenerator::KeyGenerator( QWidget * parent )
: KDialog( parent )
{
setModal( true );
setCaption( "KeyGenerationJob test" );
setButtons( Close|User1 );
setDefaultButton( User1 );
showButtonSeparator( true );
setButtonGuiItem( User1, KGuiItem( "Create" ) );
QWidget * w = new QWidget( this );
setMainWidget( w );
QGridLayout *glay = new QGridLayout( w );
glay->setMargin( marginHint() );
glay->setSpacing( spacingHint() );
int row = -1;
++row;
glay->addWidget( new QLabel( "<GnupgKeyParms format=\"internal\">", w ),
row, 0, 1, 2 );
for ( int i = 0 ; i < numKeyParams ; ++i ) {
++row;
glay->addWidget( new QLabel( keyParams[i], w ), row, 0 );
glay->addWidget( mLineEdits[i] = new QLineEdit( w ), row, 1 );
}
++row;
glay->addWidget( new QLabel( "</GnupgKeyParms>", w ), row, 0, 1, 2 );
++row;
glay->setRowStretch( row, 1 );
glay->setColumnStretch( 1, 1 );
connect( this, SIGNAL(user1Clicked()), SLOT(slotStartKeyGeneration()) );
}
KeyGenerator::~KeyGenerator() {}
void KeyGenerator::slotStartKeyGeneration() {
QString params = "<GnupgKeyParms format=\"internal\">\n";
for ( int i = 0 ; i < numKeyParams ; ++i )
if ( mLineEdits[i] && !mLineEdits[i]->text().trimmed().isEmpty() )
params += keyParams[i] + ( ": " + mLineEdits[i]->text().trimmed() ) + '\n';
params += "</GnupgKeyParms>\n";
const Kleo::CryptoBackend::Protocol * proto = 0;
if(protocol)
{
proto = !strcmp( protocol, "openpgp" ) ? Kleo::CryptoBackendFactory::instance()->openpgp() : Kleo::CryptoBackendFactory::instance()->smime() ;
}
if ( !proto )
proto = Kleo::CryptoBackendFactory::instance()->smime();
assert( proto );
kDebug(5150) <<"Using protocol" << proto->name();
Kleo::KeyGenerationJob * job = proto->keyGenerationJob();
assert( job );
connect( job, SIGNAL(result(GpgME::KeyGenerationResult,QByteArray)),
SLOT(slotResult(GpgME::KeyGenerationResult,QByteArray)) );
const GpgME::Error err = job->start( params );
if ( err )
showError( err );
#ifndef LIBKLEO_NO_PROGRESSDIALOG
else
(void)new Kleo::ProgressDialog( job, "Generating key", this );
#endif
}
void KeyGenerator::showError( const GpgME::Error & err ) {
KMessageBox::error( this, "Could not start key generation: " + QString::fromLocal8Bit( err.asString() ),
"Key Generation Error" );
}
void KeyGenerator::slotResult( const GpgME::KeyGenerationResult & res, const QByteArray & keyData ) {
if ( res.error() )
showError( res.error() );
else
KMessageBox::information( this, QString("Key generated successfully, %1 bytes long").arg( keyData.size() ),
"Key Generation Finished" );
}
int main( int argc, char** argv ) {
if ( argc == 2 ) {
protocol = argv[1];
argc = 1; // hide from KDE
}
KAboutData aboutData( "test_keygen", 0, ki18n("KeyGenerationJob Test"), "0.1" );
KCmdLineArgs::init( argc, argv, &aboutData );
KApplication app;
KeyGenerator * keygen = new KeyGenerator( 0 );
keygen->setObjectName( "KeyGenerator top-level" );
keygen->show();
return app.exec();
}