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
|
// SPDX-FileCopyrightText: 2020 Jonah Brüchert <jbb@kaidan.im>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#include <QXmppDataForm.h>
#include <QXmppPushEnableIq.h>
#include "util.h"
#include <QObject>
class tst_QXmppPushEnableIq : public QObject
{
Q_OBJECT
private:
Q_SLOT void testPushEnable();
Q_SLOT void testPushDisable();
Q_SLOT void testXmlNs();
Q_SLOT void testDataForm();
Q_SLOT void testIsEnableIq();
};
void tst_QXmppPushEnableIq::testPushEnable()
{
const QByteArray xml(
R"(<iq id="x42" type="set">)"
R"(<enable xmlns="urn:xmpp:push:0" jid="push-5.client.example" node="yxs32uqsflafdk3iuqo"/>)"
"</iq>");
QXmppPushEnableIq iq;
parsePacket(iq, xml);
QCOMPARE(iq.mode(), QXmppPushEnableIq::Enable);
QCOMPARE(iq.jid(), QStringLiteral("push-5.client.example"));
QCOMPARE(iq.node(), QStringLiteral("yxs32uqsflafdk3iuqo"));
serializePacket(iq, xml);
QXmppPushEnableIq sIq;
sIq.setJid("push-5.client.example");
sIq.setMode(QXmppPushEnableIq::Enable);
sIq.setNode("yxs32uqsflafdk3iuqo");
sIq.setType(QXmppIq::Set);
sIq.setId("x42");
serializePacket(sIq, xml);
}
void tst_QXmppPushEnableIq::testPushDisable()
{
const QByteArray xml(
R"(<iq id="x97" type="set">)"
R"(<disable xmlns="urn:xmpp:push:0" jid="push-5.client.example" node="yxs32uqsflafdk3iuqo"/>)"
"</iq>");
QXmppPushEnableIq iq;
parsePacket(iq, xml);
QCOMPARE(iq.mode(), QXmppPushEnableIq::Disable);
QCOMPARE(iq.jid(), QStringLiteral("push-5.client.example"));
serializePacket(iq, xml);
QXmppPushEnableIq sIq;
sIq.setJid("push-5.client.example");
sIq.setMode(QXmppPushEnableIq::Disable);
sIq.setNode("yxs32uqsflafdk3iuqo");
sIq.setType(QXmppIq::Set);
sIq.setId("x97");
serializePacket(sIq, xml);
}
void tst_QXmppPushEnableIq::testXmlNs()
{
const QByteArray xml(
R"(<iq type="set" id="x97">)"
R"(<disable xmlns="urn:ympp:wrongns:0" jid="push-5.client.example"/>)"
"</iq>");
QXmppPushEnableIq iq;
parsePacket(iq, xml);
QVERIFY(iq.jid().isEmpty());
}
void tst_QXmppPushEnableIq::testDataForm()
{
const QByteArray xml(
R"(<iq id="x43" type="set">)"
R"(<enable xmlns="urn:xmpp:push:0" jid="push-5.client.example" node="yxs32uqsflafdk3iuqo">)"
R"(<x xmlns="jabber:x:data" type="submit">)"
R"(<field type="hidden" var="FORM_TYPE"><value>http://jabber.org/protocol/pubsub#publish-options</value></field>)"
R"(<field type="text-single" var="secret"><value>eruio234vzxc2kla-91</value></field>)"
"</x>"
"</enable>"
"</iq>");
QXmppPushEnableIq iq;
parsePacket(iq, xml);
QVERIFY(!iq.dataForm().isNull());
QCOMPARE(iq.dataForm().fields().size(), 2);
serializePacket(iq, xml);
QXmppPushEnableIq sIq;
QXmppDataForm::Field field0;
field0.setKey("FORM_TYPE");
field0.setType(QXmppDataForm::Field::HiddenField);
field0.setValue("http://jabber.org/protocol/pubsub#publish-options");
QXmppDataForm::Field field1;
field1.setKey("secret");
field1.setValue("eruio234vzxc2kla-91");
QXmppDataForm form;
form.setType(QXmppDataForm::Submit);
form.setFields({ field0, field1 });
sIq.setDataForm(form);
sIq.setType(QXmppIq::Set);
sIq.setMode(QXmppPushEnableIq::Enable);
sIq.setId("x43");
sIq.setJid("push-5.client.example");
sIq.setNode("yxs32uqsflafdk3iuqo");
serializePacket(sIq, xml);
}
void tst_QXmppPushEnableIq::testIsEnableIq()
{
const QByteArray xml(
R"(<iq id="x42" type="set">)"
R"(<enable xmlns="urn:xmpp:push:0" jid="push-5.client.example" node="yxs32uqsflafdk3iuqo"/>)"
"</iq>");
QDomDocument doc;
doc.setContent(xml, true);
bool isPushEnable = QXmppPushEnableIq::isPushEnableIq(doc.documentElement());
QCOMPARE(isPushEnable, true);
// reset
isPushEnable = false;
const QByteArray xml2(
R"(<iq id="x97" type="set">)"
R"(<disable xmlns="urn:xmpp:push:0" jid="push-5.client.example" node="yxs32uqsflafdk3iuqo"/>)"
"</iq>");
doc.setContent(xml2, true);
isPushEnable = QXmppPushEnableIq::isPushEnableIq(doc.documentElement());
QCOMPARE(isPushEnable, true);
}
QTEST_MAIN(tst_QXmppPushEnableIq);
#include "tst_qxmpppushenableiq.moc"
|