blob: 343de80b0374f1267d92813eab2a36810965889d (
plain) (
blame)
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
|
/*
* Copyright (C) 2008-2021 The QXmpp developers
*
* Authors:
* Linus Jahn
*
* 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 "QXmppOutgoingClient.h"
#include "util.h"
class tst_QXmppOutgoingClient : public QObject
{
Q_OBJECT
private:
Q_SLOT void testParseHostAddress_data();
Q_SLOT void testParseHostAddress();
};
void tst_QXmppOutgoingClient::testParseHostAddress_data()
{
QTest::addColumn<QString>("input");
QTest::addColumn<QString>("resultHost");
QTest::addColumn<int>("resultPort");
QTest::newRow("host-and-port")
<< QStringLiteral("qxmpp.org:443")
<< QStringLiteral("qxmpp.org")
<< 443;
QTest::newRow("no-port")
<< QStringLiteral("qxmpp.org")
<< QStringLiteral("qxmpp.org")
<< -1;
QTest::newRow("ipv4-with-port")
<< QStringLiteral("127.0.0.1:443")
<< QStringLiteral("127.0.0.1")
<< 443;
QTest::newRow("ipv4-no-port")
<< QStringLiteral("127.0.0.1")
<< QStringLiteral("127.0.0.1")
<< -1;
QTest::newRow("ipv6-with-port")
<< QStringLiteral("[2001:41D0:1:A49b::1]:9222")
<< QStringLiteral("2001:41d0:1:a49b::1")
<< 9222;
QTest::newRow("ipv6-no-port")
<< QStringLiteral("[2001:41D0:1:A49b::1]")
<< QStringLiteral("2001:41d0:1:a49b::1")
<< -1;
}
void tst_QXmppOutgoingClient::testParseHostAddress()
{
QFETCH(QString, input);
QFETCH(QString, resultHost);
QFETCH(int, resultPort);
const auto address = QXmppOutgoingClient::parseHostAddress(input);
QCOMPARE(address.first, resultHost);
QCOMPARE(address.second, resultPort);
}
QTEST_MAIN(tst_QXmppOutgoingClient)
#include "tst_qxmppoutgoingclient.moc"
|