aboutsummaryrefslogtreecommitdiff
path: root/tests/qxmppsessioniq/tst_qxmppsessioniq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qxmppsessioniq/tst_qxmppsessioniq.cpp')
-rw-r--r--tests/qxmppsessioniq/tst_qxmppsessioniq.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/qxmppsessioniq/tst_qxmppsessioniq.cpp b/tests/qxmppsessioniq/tst_qxmppsessioniq.cpp
new file mode 100644
index 00000000..4c803261
--- /dev/null
+++ b/tests/qxmppsessioniq/tst_qxmppsessioniq.cpp
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2008-2012 The QXmpp developers
+ *
+ * Authors:
+ * Jeremy Lainé
+ * Manjeet Dahiya
+ *
+ * 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 "QXmppSessionIq.h"
+#include "util.h"
+
+class TestPackets : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testSession();
+};
+
+void TestPackets::testSession()
+{
+ const QByteArray xml(
+ "<iq id=\"session_1\" to=\"example.com\" type=\"set\">"
+ "<session xmlns=\"urn:ietf:params:xml:ns:xmpp-session\"/>"
+ "</iq>");
+
+ QXmppSessionIq session;
+ parsePacket(session, xml);
+ QCOMPARE(session.id(), QString("session_1"));
+ QCOMPARE(session.to(), QString("example.com"));
+ QCOMPARE(session.type(), QXmppIq::Set);
+ serializePacket(session, xml);
+}
+
+QTEST_MAIN(TestPackets)
+#include "tst_qxmppsessioniq.moc"