aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2019-01-19 18:06:56 +0100
committerBoris Pek <tehnick-8@yandex.ru>2019-05-04 23:53:43 +0300
commit9c8fea86564712aca4363bb1ebe5fd227eff188f (patch)
tree8ad0ccd9ff946c9d5a76ef1f91bea34cfd32c1ae /tests
parentee328bb4fa969fe9d69c5781d8a27d0b3f6f5c10 (diff)
downloadqxmpp-9c8fea86564712aca4363bb1ebe5fd227eff188f.tar.gz
Implement XEP-0363: HTTP File Upload: Request/Slot IQs
This implements the IQs for requesting and receiving upload slots as defined by XEP-0363: HTTP File Upload in version 0.9.0.
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/qxmpphttpuploadiq/tst_qxmpphttpuploadiq.cpp172
2 files changed, 173 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 794cd609..9984af9c 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -21,6 +21,7 @@ add_simple_test(qxmppcarbonmanager)
add_simple_test(qxmppdataform)
add_simple_test(qxmppdiscoveryiq)
add_simple_test(qxmppentitytimeiq)
+add_simple_test(qxmpphttpuploadiq)
add_simple_test(qxmppiceconnection)
add_simple_test(qxmppiq)
add_simple_test(qxmppjingleiq)
diff --git a/tests/qxmpphttpuploadiq/tst_qxmpphttpuploadiq.cpp b/tests/qxmpphttpuploadiq/tst_qxmpphttpuploadiq.cpp
new file mode 100644
index 00000000..d88a113c
--- /dev/null
+++ b/tests/qxmpphttpuploadiq/tst_qxmpphttpuploadiq.cpp
@@ -0,0 +1,172 @@
+/*
+ * Copyright (C) 2008-2019 The QXmpp developers
+ *
+ * Author:
+ * Linus Jahn <lnj@kaidan.im>
+ *
+ * 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 <QObject>
+#include "QXmppHttpUploadIq.h"
+#include "util.h"
+
+class tst_QXmppHttpUploadIq : public QObject
+{
+ Q_OBJECT
+
+private slots:
+ void testRequest();
+ void testIsRequest_data();
+ void testIsRequest();
+ void testSlot();
+ void testIsSlot_data();
+ void testIsSlot();
+};
+
+void tst_QXmppHttpUploadIq::testRequest()
+{
+ const QByteArray xml(
+ "<iq id=\"step_03\" "
+ "to=\"upload.montague.tld\" "
+ "from=\"romeo@montague.tld/garden\" "
+ "type=\"get\">"
+ "<request xmlns=\"urn:xmpp:http:upload:0\" "
+ "filename=\"très cool.jpg\" "
+ "size=\"23456\" "
+ "content-type=\"image/jpeg\"/>"
+ "</iq>"
+ );
+
+ QXmppHttpUploadRequestIq iq;
+ parsePacket(iq, xml);
+ QCOMPARE(iq.fileName(), QString("très cool.jpg"));
+ QCOMPARE(iq.size(), 23456);
+ QCOMPARE(iq.contentType().name(), QString("image/jpeg"));
+ serializePacket(iq, xml);
+
+ // test setters
+ iq.setFileName("icon.png");
+ QCOMPARE(iq.fileName(), QString("icon.png"));
+ iq.setSize(23421337);
+ QCOMPARE(iq.size(), 23421337);
+ iq.setContentType(QMimeDatabase().mimeTypeForName("image/png"));
+ QCOMPARE(iq.contentType().name(), QString("image/png"));
+}
+
+void tst_QXmppHttpUploadIq::testIsRequest_data()
+{
+ QTest::addColumn<QByteArray>("xml");
+ QTest::addColumn<bool>("isRequest");
+
+ QTest::newRow("wrong-stanza")
+ << QByteArray("<message><request xmlns=\"urn:xmpp:http:upload:0\"/></message>")
+ << false;
+ QTest::newRow("empty-iq")
+ << QByteArray("<iq/>")
+ << false;
+ QTest::newRow("wrong-ns")
+ << QByteArray("<iq><request xmlns=\"some:other:request\"/></iq>")
+ << false;
+ QTest::newRow("correct")
+ << QByteArray("<iq><request xmlns=\"urn:xmpp:http:upload:0\"/></iq>")
+ << true;
+}
+
+void tst_QXmppHttpUploadIq::testIsRequest()
+{
+ QFETCH(QByteArray, xml);
+ QFETCH(bool, isRequest);
+
+ QDomDocument doc;
+ QCOMPARE(doc.setContent(xml, true), true);
+ QCOMPARE(QXmppHttpUploadRequestIq::isHttpUploadRequestIq(doc.documentElement()), isRequest);
+}
+
+void tst_QXmppHttpUploadIq::testSlot()
+{
+ const QByteArray xml(
+ "<iq id=\"step_03\" "
+ "to=\"romeo@montague.tld/garden\" "
+ "from=\"upload.montague.tld\" "
+ "type=\"result\">"
+ "<slot xmlns=\"urn:xmpp:http:upload:0\">"
+ "<put url=\"https://upload.montague.tld/4a771ac1-f0b2-4a4a-970"
+ "0-f2a26fa2bb67/tr%C3%A8s%20cool.jpg\">"
+ "<header name=\"Authorization\">Basic Base64String==</header>"
+ "<header name=\"Cookie\">foo=bar; user=romeo</header>"
+ "</put>"
+ "<get url=\"https://download.montague.tld/4a771ac1-f0b2-4a4a-9"
+ "700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg\"/>"
+ "</slot>"
+ "</iq>"
+ );
+
+ QXmppHttpUploadSlotIq iq;
+ parsePacket(iq, xml);
+ QCOMPARE(iq.putUrl(), QUrl("https://upload.montague.tld/4a771ac1-f0b2-4a4a"
+ "-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg"));
+ QCOMPARE(iq.getUrl(), QUrl("https://download.montague.tld/4a771ac1-f0b2-4a"
+ "4a-9700-f2a26fa2bb67/tr%C3%A8s%20cool.jpg"));
+ QMap<QString, QString> headers;
+ headers["Authorization"] = "Basic Base64String==";
+ headers["Cookie"] = "foo=bar; user=romeo";
+ QCOMPARE(iq.putHeaders(), headers);
+ serializePacket(iq, xml);
+
+ // test setters
+ iq.setGetUrl(QUrl("https://dl.example.org/user/file"));
+ QCOMPARE(iq.getUrl(), QUrl("https://dl.example.org/user/file"));
+ iq.setPutUrl(QUrl("https://ul.example.org/user/file"));
+ QCOMPARE(iq.putUrl(), QUrl("https://ul.example.org/user/file"));
+ QMap<QString, QString> emptyMap;
+ iq.setPutHeaders(emptyMap);
+ QCOMPARE(iq.putHeaders(), emptyMap);
+
+}
+
+void tst_QXmppHttpUploadIq::testIsSlot_data()
+{
+ QTest::addColumn<QByteArray>("xml");
+ QTest::addColumn<bool>("isSlot");
+
+ QTest::newRow("wrong-stanza")
+ << QByteArray("<message><slot xmlns=\"urn:xmpp:http:upload:0\"/></message>")
+ << false;
+ QTest::newRow("empty-iq")
+ << QByteArray("<iq/>")
+ << false;
+ QTest::newRow("wrong-ns")
+ << QByteArray("<iq><slot xmlns=\"some:other:slot\"/></iq>")
+ << false;
+ QTest::newRow("correct")
+ << QByteArray("<iq><slot xmlns=\"urn:xmpp:http:upload:0\"/></iq>")
+ << true;
+}
+
+void tst_QXmppHttpUploadIq::testIsSlot()
+{
+ QFETCH(QByteArray, xml);
+ QFETCH(bool, isSlot);
+
+ QDomDocument doc;
+ QCOMPARE(doc.setContent(xml, true), true);
+ QCOMPARE(QXmppHttpUploadSlotIq::isHttpUploadSlotIq(doc.documentElement()), isSlot);
+}
+
+QTEST_MAIN(tst_QXmppHttpUploadIq)
+#include "tst_qxmpphttpuploadiq.moc"