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
|
/*
* Copyright (C) 2008-2012 The QXmpp developers
*
* Authors:
* Olivier Goffart
* Jeremy Lainé
*
* Source:
* http://code.google.com/p/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 "QXmppPresence.h"
#include "presence.h"
#include "tests.h"
void tst_QXmppPresence::testPresence_data()
{
QTest::addColumn<QByteArray>("xml");
QTest::addColumn<int>("type");
QTest::addColumn<int>("priority");
QTest::addColumn<int>("statusType");
QTest::addColumn<QString>("statusText");
QTest::addColumn<int>("vcardUpdate");
QTest::addColumn<QByteArray>("photoHash");
QTest::newRow("empty") << QByteArray("<presence/>") << int(QXmppPresence::Available) << 0 << int(QXmppPresence::Status::Online) << "" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("unavailable") << QByteArray("<presence type=\"unavailable\"/>") << int(QXmppPresence::Unavailable) << 0 << int(QXmppPresence::Status::Online) << "" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("error") << QByteArray("<presence type=\"error\"/>") << int(QXmppPresence::Error) << 0 << int(QXmppPresence::Status::Online) << "" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("away") << QByteArray("<presence><show>away</show><status>In a meeting</status><priority>5</priority></presence>") << int(QXmppPresence::Available) << 5 << int(QXmppPresence::Status::Away) << "In a meeting" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("dnd") << QByteArray("<presence><show>dnd</show><status>In a meeting</status><priority>5</priority></presence>") << int(QXmppPresence::Available) << 5 << int(QXmppPresence::Status::DND) << "In a meeting" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("chat") << QByteArray("<presence><show>chat</show><status>In a meeting</status><priority>5</priority></presence>") << int(QXmppPresence::Available) << 5 << int(QXmppPresence::Status::Chat) << "In a meeting" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("xa") << QByteArray("<presence><show>xa</show><status>In a meeting</status><priority>5</priority></presence>") << int(QXmppPresence::Available) << 5 << int(QXmppPresence::Status::XA) << "In a meeting" << int(QXmppPresence::VCardUpdateNone) << QByteArray();
QTest::newRow("vcard-photo") << QByteArray(
"<presence>"
"<x xmlns=\"vcard-temp:x:update\">"
"<photo>73b908bc</photo>"
"</x>"
"</presence>") << int(QXmppPresence::Available) << 0 << int(QXmppPresence::Status::Online) << "" << int(QXmppPresence::VCardUpdateValidPhoto) << QByteArray::fromHex("73b908bc");
QTest::newRow("vard-not-ready") << QByteArray(
"<presence>"
"<x xmlns=\"vcard-temp:x:update\"/>"
"</presence>") << int(QXmppPresence::Available) << 0 << int(QXmppPresence::Status::Online) << "" << int(QXmppPresence::VCardUpdateNotReady) << QByteArray();
}
void tst_QXmppPresence::testPresence()
{
QFETCH(QByteArray, xml);
QFETCH(int, type);
QFETCH(int, priority);
QFETCH(int, statusType);
QFETCH(QString, statusText);
QFETCH(int, vcardUpdate);
QFETCH(QByteArray, photoHash);
QXmppPresence presence;
parsePacket(presence, xml);
QCOMPARE(int(presence.type()), type);
QCOMPARE(presence.status().priority(), priority);
QCOMPARE(int(presence.status().type()), statusType);
QCOMPARE(presence.status().statusText(), statusText);
QCOMPARE(int(presence.vCardUpdateType()), vcardUpdate);
QCOMPARE(presence.photoHash(), photoHash);
serializePacket(presence, xml);
}
void tst_QXmppPresence::testPresenceWithCapability()
{
const QByteArray xml(
"<presence to=\"foo@example.com/QXmpp\" from=\"bar@example.com/QXmpp\">"
"<show>away</show>"
"<status>In a meeting</status>"
"<priority>5</priority>"
"<x xmlns=\"vcard-temp:x:update\">"
"<photo>73b908bc</photo>"
"</x>"
"<c xmlns=\"http://jabber.org/protocol/caps\" hash=\"sha-1\" node=\"http://code.google.com/p/qxmpp\" ver=\"QgayPKawpkPSDYmwT/WM94uAlu0=\"/>"
"</presence>");
QXmppPresence presence;
parsePacket(presence, xml);
QCOMPARE(presence.to(), QString("foo@example.com/QXmpp"));
QCOMPARE(presence.from(), QString("bar@example.com/QXmpp"));
QCOMPARE(presence.status().type(), QXmppPresence::Status::Away);
QCOMPARE(presence.status().statusText(), QString("In a meeting"));
QCOMPARE(presence.status().priority(), 5);
QCOMPARE(presence.photoHash(), QByteArray::fromHex("73b908bc"));
QCOMPARE(presence.vCardUpdateType(), QXmppPresence::VCardUpdateValidPhoto);
QCOMPARE(presence.capabilityHash(), QString("sha-1"));
QCOMPARE(presence.capabilityNode(), QString("http://code.google.com/p/qxmpp"));
QCOMPARE(presence.capabilityVer(), QByteArray::fromBase64("QgayPKawpkPSDYmwT/WM94uAlu0="));
serializePacket(presence, xml);
}
void tst_QXmppPresence::testPresenceWithMuc()
{
const QByteArray xml(
"<presence "
"to=\"pistol@shakespeare.lit/harfleur\" "
"from=\"harfleur@henryv.shakespeare.lit/pistol\" "
"type=\"unavailable\">"
"<x xmlns=\"http://jabber.org/protocol/muc#user\">"
"<item affiliation=\"none\" role=\"none\">"
"<actor jid=\"fluellen@shakespeare.lit\"/>"
"<reason>Avaunt, you cullion!</reason>"
"</item>"
"<status code=\"307\"/>"
"</x>"
"</presence>");
QXmppPresence presence;
parsePacket(presence, xml);
QCOMPARE(presence.to(), QLatin1String("pistol@shakespeare.lit/harfleur"));
QCOMPARE(presence.from(), QLatin1String("harfleur@henryv.shakespeare.lit/pistol"));
QCOMPARE(presence.type(), QXmppPresence::Unavailable);
QCOMPARE(presence.mucItem().actor(), QLatin1String("fluellen@shakespeare.lit"));
QCOMPARE(presence.mucItem().affiliation(), QXmppMucItem::NoAffiliation);
QCOMPARE(presence.mucItem().jid(), QString());
QCOMPARE(presence.mucItem().reason(), QLatin1String("Avaunt, you cullion!"));
QCOMPARE(presence.mucItem().role(), QXmppMucItem::NoRole);
QCOMPARE(presence.mucStatusCodes(), QList<int>() << 307);
serializePacket(presence, xml);
}
|