1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/*
SPDX-FileCopyrightText: 2009 Andras Mantia <amantia@kde.org>
SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
SPDX-FileContributor: Kevin Ottens <kevin@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <QTest>
#include "kimap/loginjob.h"
#include "kimap/session.h"
#include "kimaptest/fakeserver.h"
#include <QTest>
class TestUiProxy : public KIMAP::SessionUiProxy
{
bool ignoreSslError(const KSslErrorUiData &) override
{
return true;
}
};
class LoginJobTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void shouldHandleLogin_data()
{
QTest::addColumn<QString>("user");
QTest::addColumn<QString>("password");
QTest::addColumn<QList<QByteArray>>("scenario");
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"password\""
<< "S: A000001 OK User logged in";
QTest::newRow("success") << QStringLiteral("user") << QStringLiteral("password") << scenario;
scenario.clear();
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user_bad\" \"password\""
<< "S: A000001 NO Login failed: authentication failure";
QTest::newRow("wrong login") << "user_bad" << QStringLiteral("password") << scenario;
scenario.clear();
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"aa\\\"bb\\\\cc[dd ee\""
<< "S: A000001 OK User logged in";
QTest::newRow("special chars") << QStringLiteral("user") << "aa\"bb\\cc[dd ee" << scenario;
scenario.clear();
scenario << FakeServer::preauth();
QTest::newRow("already authenticated") << QStringLiteral("user") << QStringLiteral("password") << scenario;
}
void shouldHandleLogin()
{
QFETCH(QString, user);
QFETCH(QString, password);
QFETCH(QList<QByteArray>, scenario);
FakeServer fakeServer;
fakeServer.setScenario(scenario);
fakeServer.startAndWait();
KIMAP::Session *session = new KIMAP::Session(QStringLiteral("127.0.0.1"), 5989);
KIMAP::LoginJob *login = new KIMAP::LoginJob(session);
login->setUserName(user);
login->setPassword(password);
bool result = login->exec();
QEXPECT_FAIL("wrong login", "Login with bad user name", Continue);
QEXPECT_FAIL("already authenticated", "Trying to log on an already authenticated session", Continue);
QVERIFY(result);
fakeServer.quit();
delete session;
}
void shouldHandleProxyLogin_data()
{
QTest::addColumn<QString>("user");
QTest::addColumn<QString>("proxy");
QTest::addColumn<QString>("password");
QTest::addColumn<QList<QByteArray>>("scenario");
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 AUTHENTICATE PLAIN"
<< "S: A000001 OK (success)"
<< "C: A000001 LOGIN \"proxy\" \"user\" \"password\""
<< "S: A000001 OK User logged in";
QTest::newRow("success") << QStringLiteral("user") << "proxy" << QStringLiteral("password") << scenario;
}
void shouldHandleProxyLogin()
{
QFETCH(QString, user);
QFETCH(QString, proxy);
QFETCH(QString, password);
QFETCH(QList<QByteArray>, scenario);
FakeServer fakeServer;
fakeServer.setScenario(scenario);
fakeServer.startAndWait();
KIMAP::Session *session = new KIMAP::Session(QStringLiteral("127.0.0.1"), 5989);
KIMAP::LoginJob *login = new KIMAP::LoginJob(session);
login->setAuthenticationMode(KIMAP::LoginJob::Plain);
login->setUserName(user);
login->setAuthorizationName(proxy);
login->setPassword(password);
bool result = login->exec();
QVERIFY(result);
fakeServer.quit();
delete session;
}
void shouldSaveServerGreeting_data()
{
QTest::addColumn<QString>("greeting");
QTest::addColumn<QList<QByteArray>>("scenario");
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"password\""
<< "S: A000001 OK Welcome John Smith";
QTest::newRow("greeting") << "Welcome John Smith" << scenario;
scenario.clear();
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"password\""
<< "S: A000001 OK Welcome John Smith (last login: Feb 21, 2010)";
QTest::newRow("greeting with parenthesis") << "Welcome John Smith (last login: Feb 21, 2010)" << scenario;
scenario.clear();
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"password\""
<< "S: A000001 OK";
QTest::newRow("no greeting") << "" << scenario;
scenario.clear();
scenario << FakeServer::greeting() << "C: A000001 LOGIN \"user\" \"password\""
<< "S: A000001 NO Login failed: authentication failure";
QTest::newRow("login failed") << "" << scenario;
}
void shouldSaveServerGreeting()
{
QFETCH(QString, greeting);
QFETCH(QList<QByteArray>, scenario);
FakeServer fakeServer;
fakeServer.setScenario(scenario);
fakeServer.startAndWait();
KIMAP::Session *session = new KIMAP::Session(QStringLiteral("127.0.0.1"), 5989);
KIMAP::LoginJob *login = new KIMAP::LoginJob(session);
login->setUserName(QStringLiteral("user"));
login->setPassword(QStringLiteral("password"));
login->exec();
QCOMPARE(login->serverGreeting(), greeting);
fakeServer.quit();
delete session;
}
void shouldUseSsl_data()
{
QTest::addColumn<QList<QByteArray>>("scenario");
QTest::addColumn<int>("serverEncryption");
{
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 CAPABILITY"
<< "S: A000001 OK"
<< "C: A000002 LOGIN \"user\" \"password\""
<< "S: A000002 OK";
// AnySslVersion doesn't mean the server can force a specific version (e.g. openssl always starts with a tls12 hello)
QTest::newRow("any protocol with anyssl version") << scenario << static_cast<int>(QSsl::AnyProtocol);
QTest::newRow("tlsv12") << scenario << static_cast<int>(QSsl::TlsV1_2);
QTest::newRow("tlsv13") << scenario << static_cast<int>(QSsl::TlsV1_3);
}
}
void shouldUseSsl()
{
QFETCH(QList<QByteArray>, scenario);
QFETCH(int, serverEncryption);
FakeServer fakeServer;
fakeServer.setEncrypted(static_cast<QSsl::SslProtocol>(serverEncryption));
fakeServer.setScenario(scenario);
fakeServer.startAndWait();
KIMAP::Session *session = new KIMAP::Session(QStringLiteral("127.0.0.1"), 5989);
KIMAP::SessionUiProxy::Ptr uiProxy(new TestUiProxy);
session->setUiProxy(uiProxy);
KIMAP::LoginJob *login = new KIMAP::LoginJob(session);
login->setUserName(QStringLiteral("user"));
login->setPassword(QStringLiteral("password"));
login->setEncryptionMode(KIMAP::LoginJob::SSLorTLS);
QVERIFY(login->exec());
fakeServer.quit();
delete session;
}
void shouldUseStartTls_data()
{
QTest::addColumn<QList<QByteArray>>("scenario");
QTest::addColumn<bool>("success");
{
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 CAPABILITY"
<< "S: * CAPABILITY IMAP4rev1 STARTTLS"
<< "S: A000001 OK CAPABILITY completed"
<< "C: A000002 STARTTLS"
<< "S: A000002 OK"
<< "C: A000003 CAPABILITY"
<< "S: * CAPABILITY IMAP4rev1"
<< "S: A000003 OK CAPABILITY completed"
<< "C: A000004 LOGIN \"user\" \"password\""
<< "S: A000004 OK";
QTest::newRow("STARTTLS supported") << scenario << true;
}
{
QList<QByteArray> scenario;
scenario << FakeServer::greeting() << "C: A000001 CAPABILITY"
<< "S: * CAPABILITY IMAP4rev1"
<< "S: A000001 OK CAPABILITY completed";
QTest::newRow("STARTTLS not supported") << scenario << false;
}
}
void shouldUseStartTls()
{
QFETCH(QList<QByteArray>, scenario);
QFETCH(bool, success);
FakeServer fakeServer;
fakeServer.setEncrypted(QSsl::AnyProtocol);
fakeServer.setWaitForStartTls(true);
fakeServer.setScenario(scenario);
fakeServer.startAndWait();
KIMAP::Session session(QStringLiteral("127.0.0.1"), 5989);
KIMAP::SessionUiProxy::Ptr uiProxy(new TestUiProxy);
session.setUiProxy(uiProxy);
KIMAP::LoginJob login(&session);
login.setUserName(QStringLiteral("user"));
login.setPassword(QStringLiteral("password"));
login.setEncryptionMode(KIMAP::LoginJob::STARTTLS);
QCOMPARE(login.exec(), success);
fakeServer.quit();
}
};
QTEST_GUILESS_MAIN(LoginJobTest)
#include "loginjobtest.moc"
|