From 4c8dc9678157cb1c663365f9cbd3b4bc056ba892 Mon Sep 17 00:00:00 2001 From: Jeremy Lainé Date: Sun, 22 Jul 2012 01:20:23 +0200 Subject: start testing QXmppRosterIq --- tests/roster.cpp | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 tests/roster.cpp (limited to 'tests/roster.cpp') diff --git a/tests/roster.cpp b/tests/roster.cpp new file mode 100644 index 00000000..96f0fe49 --- /dev/null +++ b/tests/roster.cpp @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2008-2012 The QXmpp developers + * + * Author: + * 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 "QXmppRosterIq.h" + +#include "roster.h" +#include "tests.h" + +void tst_QXmppRosterIq::testItem_data() +{ + QTest::addColumn("xml"); + QTest::addColumn("subscriptionType"); + + QTest::newRow("notset") + << QByteArray("") + << int(QXmppRosterIq::Item::NotSet); + QTest::newRow("from") + << QByteArray("") + << int(QXmppRosterIq::Item::From); + QTest::newRow("to") + << QByteArray("") + << int(QXmppRosterIq::Item::To); + QTest::newRow("both") + << QByteArray("") + << int(QXmppRosterIq::Item::Both); +} + +void tst_QXmppRosterIq::testItem() +{ + QFETCH(QByteArray, xml); + QFETCH(int, subscriptionType); + + QXmppRosterIq::Item item; + parsePacket(item, xml); + QCOMPARE(int(item.subscriptionType()), subscriptionType); + serializePacket(item, xml); +} + -- cgit v1.2.3