mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
132 lines
3.2 KiB
C++
132 lines
3.2 KiB
C++
/*
|
|
Copyright (c) 2009 Bertjan Broeksema <broeksema@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "mboxbenchmark.h"
|
|
|
|
#include <QtCore/QCryptographicHash>
|
|
|
|
#include <qtest_kde.h>
|
|
#include <kstandarddirs.h>
|
|
#include <ktempdir.h>
|
|
|
|
QTEST_KDEMAIN( MBoxBenchmark, NoGUI )
|
|
|
|
#include "test-entries.h"
|
|
|
|
using namespace KMBox;
|
|
|
|
static const char * testDir = "libmbox-unit-test";
|
|
static const char * testFile = "test-mbox-file";
|
|
|
|
QString MBoxBenchmark::fileName()
|
|
{
|
|
return mTempDir->name() + QLatin1String( testFile );
|
|
}
|
|
|
|
void MBoxBenchmark::initTestCase()
|
|
{
|
|
mTempDir = new KTempDir( KStandardDirs::locateLocal( "tmp", QLatin1String( testDir ) ) );
|
|
mMail1 = KMime::Message::Ptr( new KMime::Message );
|
|
mMail1->setContent( KMime::CRLFtoLF( sEntry1 ) );
|
|
mMail1->parse();
|
|
}
|
|
|
|
void MBoxBenchmark::cleanupTestCase()
|
|
{
|
|
mTempDir->unlink();
|
|
}
|
|
|
|
void MBoxBenchmark::testNoLockPerformance()
|
|
{
|
|
MBox mbox;
|
|
mbox.setLockType( MBox::None );
|
|
mbox.load( fileName() );
|
|
|
|
for ( int i = 0; i < 1000; ++i ) {
|
|
mbox.appendMessage( mMail1 );
|
|
}
|
|
|
|
mbox.save( fileName() );
|
|
|
|
|
|
QBENCHMARK {
|
|
MBox mbox2;
|
|
mbox2.setLockType( MBox::None );
|
|
mbox2.setUnlockTimeout( 5000 );
|
|
mbox2.load( fileName() );
|
|
foreach ( const MBoxEntry &entry, mbox2.entries() ) {
|
|
mbox2.readMessage( entry );
|
|
}
|
|
}
|
|
}
|
|
|
|
void MBoxBenchmark::testProcfileLockPerformance()
|
|
{
|
|
mMail1 = KMime::Message::Ptr( new KMime::Message );
|
|
mMail1->setContent( KMime::CRLFtoLF( sEntry1 ) );
|
|
mMail1->parse();
|
|
|
|
MBox mbox;
|
|
mbox.setLockType( MBox::ProcmailLockfile );
|
|
mbox.load( fileName() );
|
|
for ( int i = 0; i < 1000; ++i ) {
|
|
mbox.appendMessage( mMail1 );
|
|
}
|
|
|
|
mbox.save( fileName() );
|
|
|
|
QBENCHMARK {
|
|
MBox mbox2;
|
|
mbox2.setLockType( MBox::ProcmailLockfile );
|
|
mbox2.load( fileName() );
|
|
mbox2.setUnlockTimeout( 5000 ); // Keep the mbox locked for five seconds.
|
|
|
|
foreach ( const MBoxEntry &entry, mbox2.entries() ) {
|
|
mbox2.readMessage( entry );
|
|
}
|
|
}
|
|
}
|
|
|
|
void MBoxBenchmark::voidTestMD5Performance()
|
|
{
|
|
MBox mbox;
|
|
mbox.setLockType( MBox::None );
|
|
mbox.load( fileName() );
|
|
|
|
for ( int i = 0; i < 1000; ++i ) {
|
|
mbox.appendMessage( mMail1 );
|
|
}
|
|
|
|
mbox.save( fileName() );
|
|
|
|
QBENCHMARK {
|
|
QFile file( fileName() );
|
|
QVERIFY( file.exists() );
|
|
QVERIFY( file.open( QIODevice::ReadOnly ) );
|
|
|
|
QCryptographicHash hash( QCryptographicHash::Md5 );
|
|
qint64 blockSize = 512 * 1024; // Read blocks of 512K
|
|
|
|
while ( !file.atEnd() ) {
|
|
hash.addData( file.read( blockSize ) );
|
|
}
|
|
|
|
file.close();
|
|
}
|
|
}
|