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
|
/*
* Copyright (C) 2008-2021 The QXmpp developers
*
* Author:
* Jeremy Lainé
*
* Source:
* https://github.com/qxmpp-project/qxmpp
*
* This file is a part of QXmpp library.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
*/
#include "QXmppClient.h"
#include "QXmppServer.h"
#include "util.h"
class tst_QXmppServer : public QObject
{
Q_OBJECT
private slots:
void testConnect_data();
void testConnect();
};
void tst_QXmppServer::testConnect_data()
{
QTest::addColumn<QString>("username");
QTest::addColumn<QString>("password");
QTest::addColumn<QString>("mechanism");
QTest::addColumn<bool>("connected");
QTest::newRow("plain-good") << "testuser"
<< "testpwd"
<< "PLAIN" << true;
QTest::newRow("plain-bad-username") << "baduser"
<< "testpwd"
<< "PLAIN" << false;
QTest::newRow("plain-bad-password") << "testuser"
<< "badpwd"
<< "PLAIN" << false;
QTest::newRow("digest-good") << "testuser"
<< "testpwd"
<< "DIGEST-MD5" << true;
QTest::newRow("digest-bad-username") << "baduser"
<< "testpwd"
<< "DIGEST-MD5" << false;
QTest::newRow("digest-bad-password") << "testuser"
<< "badpwd"
<< "DIGEST-MD5" << false;
}
void tst_QXmppServer::testConnect()
{
QFETCH(QString, username);
QFETCH(QString, password);
QFETCH(QString, mechanism);
QFETCH(bool, connected);
const QString testDomain("localhost");
const QHostAddress testHost(QHostAddress::LocalHost);
const quint16 testPort = 12345;
QXmppLogger logger;
//logger.setLoggingType(QXmppLogger::StdoutLogging);
// prepare server
TestPasswordChecker passwordChecker;
passwordChecker.addCredentials("testuser", "testpwd");
QXmppServer server;
server.setDomain(testDomain);
server.setLogger(&logger);
server.setPasswordChecker(&passwordChecker);
server.listenForClients(testHost, testPort);
// prepare client
QXmppClient client;
client.setLogger(&logger);
QEventLoop loop;
connect(&client, &QXmppClient::connected,
&loop, &QEventLoop::quit);
connect(&client, &QXmppClient::disconnected,
&loop, &QEventLoop::quit);
QXmppConfiguration config;
config.setDomain(testDomain);
config.setHost(testHost.toString());
config.setPort(testPort);
config.setUser(username);
config.setPassword(password);
config.setSaslAuthMechanism(mechanism);
client.connectToServer(config);
loop.exec();
QCOMPARE(client.isConnected(), connected);
}
QTEST_MAIN(tst_QXmppServer)
#include "tst_qxmppserver.moc"
|