mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
87 lines
2.6 KiB
C++
87 lines
2.6 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/createjob.h"
|
|
|
|
#include <QTcpSocket>
|
|
#include <QtTest>
|
|
#include <KDebug>
|
|
|
|
class CreateJobTest: public QObject {
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void testCreate_data() {
|
|
QTest::addColumn<QString>( "mailbox" );
|
|
QTest::addColumn<QList<QByteArray> >( "scenario" );
|
|
|
|
QList<QByteArray> scenario;
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 CREATE \"INBOX\""
|
|
<< "S: A000001 OK CREATE completed";
|
|
QTest::newRow( "good" ) << "INBOX" << scenario;
|
|
|
|
scenario.clear();
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 CREATE \"INBOX-FAIL-BAD\""
|
|
<< "S: A000001 BAD command unknown or arguments invalid";
|
|
QTest::newRow( "bad" ) << "INBOX-FAIL-BAD" << scenario;
|
|
|
|
scenario.clear();
|
|
scenario << FakeServer::preauth()
|
|
<< "C: A000001 CREATE \"INBOX-FAIL-NO\""
|
|
<< "S: A000001 NO create failure";
|
|
QTest::newRow( "no" ) << "INBOX-FAIL-NO" << scenario;
|
|
}
|
|
|
|
void testCreate()
|
|
{
|
|
QFETCH( QString, mailbox );
|
|
QFETCH( QList<QByteArray>, scenario );
|
|
|
|
FakeServer fakeServer;
|
|
fakeServer.setScenario( scenario );
|
|
fakeServer.startAndWait();
|
|
KIMAP::Session session( "127.0.0.1", 5989 );
|
|
|
|
KIMAP::CreateJob *job = new KIMAP::CreateJob( &session );
|
|
job->setMailBox( mailbox );
|
|
bool result = job->exec();
|
|
QEXPECT_FAIL( "bad" , "Expected failure on BAD response", Continue );
|
|
QEXPECT_FAIL( "no" , "Expected failure on NO response", Continue );
|
|
QVERIFY( result );
|
|
if ( result ) {
|
|
QCOMPARE( job->mailBox(), mailbox );
|
|
}
|
|
|
|
fakeServer.quit();
|
|
}
|
|
|
|
};
|
|
|
|
QTEST_KDEMAIN_CORE( CreateJobTest )
|
|
|
|
#include "createjobtest.moc"
|