mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
90 lines
2.8 KiB
C++
90 lines
2.8 KiB
C++
/*
|
|
Copyright (C) 2009 Andras Mantia <amantia@kde.org>
|
|
|
|
Copyright (c) 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
|
|
Author: Kevin Ottens <kevin@kdab.com>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This program 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.
|
|
*/
|
|
|
|
#include <qtest_kde.h>
|
|
|
|
#include "kimaptest/fakeserver.h"
|
|
#include "kimap/session.h"
|
|
#include "kimap/renamejob.h"
|
|
|
|
#include <QTcpSocket>
|
|
#include <QtTest>
|
|
#include <KDebug>
|
|
|
|
class RenameJobTest: public QObject {
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void testRename_data() {
|
|
QTest::addColumn<QString>( "mailbox" );
|
|
QTest::addColumn<QString>( "newname" );
|
|
QTest::addColumn<QList<QByteArray> >( "scenario" );
|
|
|
|
QList<QByteArray> scenario;
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 RENAME \"INBOX\" \"oldmail\""
|
|
<< "S: A000001 OK RENAME completed";
|
|
QTest::newRow( "good" ) << "INBOX" << "oldmail" << scenario;
|
|
|
|
scenario.clear();
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 RENAME \"INBOX-FAIL-BAD\" \"oldmail-bad\""
|
|
<< "S: A000001 BAD command unknown or arguments invalid";
|
|
QTest::newRow( "bad" ) << "INBOX-FAIL-BAD" << "oldmail-bad" << scenario;
|
|
|
|
scenario.clear();
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 RENAME \"INBOX-FAIL-NO\" \"oldmail-no\""
|
|
<< "S: A000001 NO rename failure";
|
|
QTest::newRow( "no" ) << "INBOX-FAIL-NO" << "oldmail-no" << scenario;
|
|
}
|
|
|
|
void testRename()
|
|
{
|
|
QFETCH( QString, mailbox );
|
|
QFETCH( QString, newname );
|
|
QFETCH( QList<QByteArray>, scenario );
|
|
|
|
FakeServer fakeServer;
|
|
fakeServer.setScenario( scenario );
|
|
fakeServer.startAndWait();
|
|
|
|
KIMAP::Session session( "127.0.0.1", 5989 );
|
|
|
|
KIMAP::RenameJob *job = new KIMAP::RenameJob( &session );
|
|
job->setSourceMailBox( mailbox );
|
|
job->setDestinationMailBox( newname );
|
|
bool result = job->exec();
|
|
QEXPECT_FAIL( "bad" , "Expected failure on BAD response", Continue );
|
|
QEXPECT_FAIL( "no" , "Expected failure on NO response", Continue );
|
|
QVERIFY( result );
|
|
QCOMPARE( job->sourceMailBox(), mailbox );
|
|
QCOMPARE( job->destinationMailBox(), newname );
|
|
|
|
fakeServer.quit();
|
|
}
|
|
|
|
};
|
|
|
|
QTEST_KDEMAIN_CORE( RenameJobTest )
|
|
|
|
#include "renamejobtest.moc"
|