summaryrefslogtreecommitdiff
path: root/tests/autobahn
diff options
context:
space:
mode:
authorSteven Ceuppens <steven.ceuppens@icloud.com>2013-09-29 18:30:25 +0200
committerKurt Pattyn <pattyn.kurt@gmail.com>2013-09-29 18:44:19 +0200
commita8f2a1cf05e16b03eaee22de24ad73109ccf4a27 (patch)
tree223ed4c1778724eb7c9ed769945420dd116edc79 /tests/autobahn
parent63e868223f83180b6385be6454cdf7da4517f961 (diff)
downloadqtwebsockets-a8f2a1cf05e16b03eaee22de24ad73109ccf4a27.tar.gz
reorganized unittests & added module pri
Change-Id: Ib1aa45f7cc07ea4564b0e5f1315273a2526a4e74 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'tests/autobahn')
-rw-r--r--tests/autobahn/autobahn.pro8
-rw-r--r--tests/autobahn/compliance/compliance.pro14
-rw-r--r--tests/autobahn/compliance/tst_compliance.cpp125
-rw-r--r--tests/autobahn/scripts/echoserver.py58
-rw-r--r--tests/autobahn/scripts/fuzzingclient.json17
-rw-r--r--tests/autobahn/scripts/fuzzingserver.json12
-rwxr-xr-xtests/autobahn/scripts/start_basic_sockettests.sh10
-rwxr-xr-xtests/autobahn/scripts/start_echo_server.sh1
-rwxr-xr-xtests/autobahn/scripts/stop_echo_server.sh1
-rw-r--r--tests/autobahn/websockets/tst_websockets.cpp177
-rw-r--r--tests/autobahn/websockets/websockets.pro14
11 files changed, 437 insertions, 0 deletions
diff --git a/tests/autobahn/autobahn.pro b/tests/autobahn/autobahn.pro
new file mode 100644
index 0000000..28961c4
--- /dev/null
+++ b/tests/autobahn/autobahn.pro
@@ -0,0 +1,8 @@
+TEMPLATE = subdirs
+
+SUBDIRS += \
+ compliance \
+ websockets
+
+
+
diff --git a/tests/autobahn/compliance/compliance.pro b/tests/autobahn/compliance/compliance.pro
new file mode 100644
index 0000000..0fd32bc
--- /dev/null
+++ b/tests/autobahn/compliance/compliance.pro
@@ -0,0 +1,14 @@
+CONFIG += console
+CONFIG += c++11
+CONFIG += testcase
+CONFIG -= app_bundle
+
+TEMPLATE = app
+
+TARGET = tst_compliance
+
+QT = core network websockets testlib
+
+SOURCES += tst_compliance.cpp
+
+DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
diff --git a/tests/autobahn/compliance/tst_compliance.cpp b/tests/autobahn/compliance/tst_compliance.cpp
new file mode 100644
index 0000000..c1c9318
--- /dev/null
+++ b/tests/autobahn/compliance/tst_compliance.cpp
@@ -0,0 +1,125 @@
+#include <QtTest/QtTest>
+#include <QtTest/qtestcase.h>
+#include <QSignalSpy>
+#include <QHostInfo>
+#include <QDebug>
+#include "qwebsocket.h"
+
+class tst_ComplianceTest : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_ComplianceTest();
+
+private Q_SLOTS:
+ void initTestCase();
+ void cleanupTestCase();
+ void init();
+ void cleanup();
+ /**
+ * @brief Runs the autobahn tests against our implementation
+ */
+ void autobahnTest();
+
+private:
+ QUrl m_url;
+
+ void runTestCases(int startNbr, int stopNbr = -1);
+ void runTestCase(int nbr, int total);
+};
+
+tst_ComplianceTest::tst_ComplianceTest() :
+ m_url("ws://localhost:9001")
+{
+}
+
+void tst_ComplianceTest::initTestCase()
+{
+}
+
+void tst_ComplianceTest::cleanupTestCase()
+{
+}
+
+void tst_ComplianceTest::init()
+{
+}
+
+void tst_ComplianceTest::cleanup()
+{
+}
+
+void tst_ComplianceTest::runTestCase(int nbr, int total)
+{
+ if (nbr == total)
+ {
+ return;
+ }
+ QWebSocket *pWebSocket = new QWebSocket;
+ QSignalSpy spy(pWebSocket, SIGNAL(disconnected()));
+
+ //next for every case, connect to url
+ //ws://ipaddress:port/runCase?case=<number>&agent=<agentname>
+ //where agent name will be QWebSocket
+ QObject::connect(pWebSocket, &QWebSocket::textMessageReceived, [=](QString message) {
+ pWebSocket->write(message);
+ });
+ QObject::connect(pWebSocket, &QWebSocket::binaryMessageReceived, [=](QByteArray message) {
+ pWebSocket->write(message);
+ });
+
+ qDebug() << "Executing test" << (nbr + 1) << "/" << total;
+ QUrl url = m_url;
+ url.setPath("/runCase?");
+ QUrlQuery query;
+ query.addQueryItem("case", QString::number(nbr + 1));
+ query.addQueryItem("agent", "QWebSockets/0.9");
+ url.setQuery(query);
+ pWebSocket->open(url);
+ spy.wait(60000);
+ pWebSocket->close();
+ delete pWebSocket;
+ pWebSocket = 0;
+ runTestCase(nbr + 1, total);
+}
+
+void tst_ComplianceTest::runTestCases(int startNbr, int stopNbr)
+{
+ runTestCase(startNbr, stopNbr);
+}
+
+void tst_ComplianceTest::autobahnTest()
+{
+ //connect to autobahn server at url ws://ipaddress:port/getCaseCount
+ QWebSocket *pWebSocket = new QWebSocket;
+ QUrl url = m_url;
+ int numberOfTestCases = 0;
+ QSignalSpy spy(pWebSocket, SIGNAL(disconnected()));
+ QObject::connect(pWebSocket, &QWebSocket::textMessageReceived, [&](QString message) {
+ numberOfTestCases = message.toInt();
+ });
+
+ url.setPath("/getCaseCount");
+ pWebSocket->open(url);
+ spy.wait(60000);
+ QVERIFY(numberOfTestCases > 0);
+
+ QObject::disconnect(pWebSocket, &QWebSocket::textMessageReceived, 0, 0);
+
+ runTestCases(0, numberOfTestCases);
+
+ url.setPath("/updateReports?");
+ QUrlQuery query;
+ query.addQueryItem("agent", "QWebSockets");
+ url.setQuery(query);
+ pWebSocket->open(url);
+ spy.wait(60000);
+ delete pWebSocket;
+ pWebSocket = 0;
+}
+
+QTEST_MAIN(tst_ComplianceTest)
+
+#include "tst_compliance.moc"
+
diff --git a/tests/autobahn/scripts/echoserver.py b/tests/autobahn/scripts/echoserver.py
new file mode 100644
index 0000000..5478eb2
--- /dev/null
+++ b/tests/autobahn/scripts/echoserver.py
@@ -0,0 +1,58 @@
+###############################################################################
+##
+## Copyright 2011,2012 Tavendo GmbH
+##
+## Licensed under the Apache License, Version 2.0 (the "License");
+## you may not use this file except in compliance with the License.
+## You may obtain a copy of the License at
+##
+## http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+##
+###############################################################################
+
+import sys
+
+from twisted.internet import reactor
+from twisted.python import log
+from twisted.web.server import Site
+from twisted.web.static import File
+
+from autobahn.websocket import WebSocketServerFactory, \
+ WebSocketServerProtocol, \
+ listenWS
+
+
+class EchoServerProtocol(WebSocketServerProtocol):
+
+ def onMessage(self, msg, binary):
+ self.sendMessage(msg, binary)
+
+
+if __name__ == '__main__':
+
+ if len(sys.argv) > 1 and sys.argv[1] == 'debug':
+ log.startLogging(sys.stdout)
+ debug = True
+ else:
+ debug = False
+
+ factory = WebSocketServerFactory("ws://localhost:9000",
+ debug = debug,
+ debugCodePaths = debug)
+
+ factory.protocol = EchoServerProtocol
+ factory.setProtocolOptions(allowHixie76 = True)
+ listenWS(factory)
+
+ webdir = File(".")
+ web = Site(webdir)
+ reactor.listenTCP(8080, web)
+
+ reactor.run()
+
diff --git a/tests/autobahn/scripts/fuzzingclient.json b/tests/autobahn/scripts/fuzzingclient.json
new file mode 100644
index 0000000..c196070
--- /dev/null
+++ b/tests/autobahn/scripts/fuzzingclient.json
@@ -0,0 +1,17 @@
+
+{
+ "options": {"failByDrop": false},
+ "outdir": "./reports/servers",
+
+ "servers": [
+ {
+ "agent": "QWebSockets/0.9",
+ "url": "ws://127.0.0.1:1234",
+ "options": {"version": 13}
+ }
+ ],
+
+ "cases": ["*"],
+ "exclude-cases": [],
+ "exclude-agent-cases": {}
+}
diff --git a/tests/autobahn/scripts/fuzzingserver.json b/tests/autobahn/scripts/fuzzingserver.json
new file mode 100644
index 0000000..24aaca0
--- /dev/null
+++ b/tests/autobahn/scripts/fuzzingserver.json
@@ -0,0 +1,12 @@
+
+{
+ "url": "ws://127.0.0.1:9001",
+
+ "options": {"failByDrop": false},
+ "outdir": "./reports/clients",
+ "webport": 8090,
+
+ "cases": ["*"],
+ "exclude-cases": [],
+ "exclude-agent-cases": {}
+}
diff --git a/tests/autobahn/scripts/start_basic_sockettests.sh b/tests/autobahn/scripts/start_basic_sockettests.sh
new file mode 100755
index 0000000..4ba4896
--- /dev/null
+++ b/tests/autobahn/scripts/start_basic_sockettests.sh
@@ -0,0 +1,10 @@
+#cd test
+#/usr/local/bin/wstest -m echoserver -w ws://localhost:9000 &
+#/usr/bin/python echoserver.py &
+
+./unittests -xunitxml -o ./unittest_result.xml
+
+#stop server
+#pid=$(ps -eo pid,command,lstart | grep '/usr/bin/python' | tail -1 | grep -e '^ (\d+)' -E -o | grep -e '(\d+)' -E -o)
+#kill -9 $pid
+
diff --git a/tests/autobahn/scripts/start_echo_server.sh b/tests/autobahn/scripts/start_echo_server.sh
new file mode 100755
index 0000000..c101287
--- /dev/null
+++ b/tests/autobahn/scripts/start_echo_server.sh
@@ -0,0 +1 @@
+/usr/bin/python echoserver.py -w &
diff --git a/tests/autobahn/scripts/stop_echo_server.sh b/tests/autobahn/scripts/stop_echo_server.sh
new file mode 100755
index 0000000..8c8a2a4
--- /dev/null
+++ b/tests/autobahn/scripts/stop_echo_server.sh
@@ -0,0 +1 @@
+#wstest -m echoserver -w ws://localhost:9000 &
diff --git a/tests/autobahn/websockets/tst_websockets.cpp b/tests/autobahn/websockets/tst_websockets.cpp
new file mode 100644
index 0000000..f70a745
--- /dev/null
+++ b/tests/autobahn/websockets/tst_websockets.cpp
@@ -0,0 +1,177 @@
+#include <QtTest/QtTest>
+#include <QtTest/qtestcase.h>
+#include <QSignalSpy>
+#include <QHostInfo>
+#include <QDebug>
+#include "qwebsocket.h"
+
+class tst_WebSocketsTest : public QObject
+{
+ Q_OBJECT
+
+public:
+ tst_WebSocketsTest();
+
+private Q_SLOTS:
+ void initTestCase();
+ void cleanupTestCase();
+ void init();
+ void cleanup();
+
+ /**
+ * @brief Test isValid() with an unoped socket
+ */
+ void testInvalidWithUnopenedSocket();
+
+ /**
+ * @brief testTextMessage Tests sending and receiving a text message
+ */
+ void testTextMessage();
+
+ void testBinaryMessage();
+
+ /**
+ * @brief Tests the method localAddress and localPort
+ */
+ void testLocalAddress();
+
+ /**
+ * @brief Test the methods peerAddress, peerName and peerPort
+ */
+ void testPeerAddress();
+
+ /**
+ * @brief Test the methods proxy() and setProxy() and check if it can be correctly set
+ */
+ void testProxy();
+
+ /**
+ * @brief Runs the autobahn tests against our implementation
+ */
+ //void autobahnTest();
+
+private:
+ QWebSocket *m_pWebSocket;
+ QUrl m_url;
+};
+
+tst_WebSocketsTest::tst_WebSocketsTest() :
+ m_pWebSocket(0),
+ m_url("ws://localhost:9000")
+{
+}
+
+void tst_WebSocketsTest::initTestCase()
+{
+ m_pWebSocket = new QWebSocket();
+ /*m_pWebSocket->open(m_url, true);
+ QTRY_VERIFY_WITH_TIMEOUT(m_pWebSocket->state() == QAbstractSocket::ConnectedState, 1000);
+ QVERIFY(m_pWebSocket->isValid());*/
+}
+
+void tst_WebSocketsTest::cleanupTestCase()
+{
+ if (m_pWebSocket)
+ {
+ m_pWebSocket->close();
+ //QVERIFY2(m_pWebSocket->waitForDisconnected(1000), "Disconnection failed.");
+ delete m_pWebSocket;
+ m_pWebSocket = 0;
+ }
+}
+
+void tst_WebSocketsTest::init()
+{
+}
+
+void tst_WebSocketsTest::cleanup()
+{
+}
+
+void tst_WebSocketsTest::testTextMessage()
+{
+ const char *message = "Hello world!";
+
+ QSignalSpy spy(m_pWebSocket, SIGNAL(textMessageReceived(QString)));
+
+ QCOMPARE(m_pWebSocket->write(message), (qint64)strlen(message));
+
+ QTRY_VERIFY_WITH_TIMEOUT(spy.count() != 0, 1000);
+ QCOMPARE(spy.count(), 1);
+ QCOMPARE(spy.at(0).count(), 1);
+ QCOMPARE(spy.takeFirst().at(0).toString(), QString(message));
+
+ spy.clear();
+ QString qMessage(message);
+ QCOMPARE(m_pWebSocket->write(qMessage), (qint64)qMessage.length());
+ QTRY_VERIFY_WITH_TIMEOUT(spy.count() != 0, 1000);
+ QCOMPARE(spy.count(), 1);
+ QCOMPARE(spy.at(0).count(), 1);
+ QCOMPARE(spy.takeFirst().at(0).toString(), qMessage);
+}
+
+void tst_WebSocketsTest::testBinaryMessage()
+{
+ QSignalSpy spy(m_pWebSocket, SIGNAL(binaryMessageReceived(QByteArray)));
+
+ QByteArray data("Hello world!");
+
+ QCOMPARE(m_pWebSocket->write(data), (qint64)data.size());
+
+ QTRY_VERIFY_WITH_TIMEOUT(spy.count() != 0, 1000);
+ QCOMPARE(spy.count(), 1);
+ QCOMPARE(spy.at(0).count(), 1);
+ QCOMPARE(spy.takeFirst().at(0).toByteArray(), data);
+}
+
+void tst_WebSocketsTest::testLocalAddress()
+{
+ QCOMPARE(m_pWebSocket->localAddress().toString(), QString("127.0.0.1"));
+ quint16 localPort = m_pWebSocket->localPort();
+ QVERIFY2(localPort > 0, "Local port is invalid.");
+}
+
+void tst_WebSocketsTest::testPeerAddress()
+{
+ QHostInfo hostInfo = QHostInfo::fromName(m_url.host());
+ QList<QHostAddress> addresses = hostInfo.addresses();
+ QVERIFY(addresses.length() > 0);
+ QHostAddress peer = m_pWebSocket->peerAddress();
+ bool found = false;
+ Q_FOREACH(QHostAddress a, addresses)
+ {
+ if (a == peer)
+ {
+ found = true;
+ break;
+ }
+ }
+
+ if (!found)
+ {
+ QFAIL("PeerAddress is not found as a result of a reverse lookup");
+ }
+ QCOMPARE(m_pWebSocket->peerName(), m_url.host());
+ QCOMPARE(m_pWebSocket->peerPort(), (quint16)m_url.port(80));
+}
+
+void tst_WebSocketsTest::testProxy()
+{
+ QNetworkProxy oldProxy = m_pWebSocket->proxy();
+ QNetworkProxy proxy(QNetworkProxy::HttpProxy, QString("proxy.network.com"), 80);
+ m_pWebSocket->setProxy(proxy);
+ QCOMPARE(proxy, m_pWebSocket->proxy());
+ m_pWebSocket->setProxy(oldProxy);
+ QCOMPARE(oldProxy, m_pWebSocket->proxy());
+}
+
+void tst_WebSocketsTest::testInvalidWithUnopenedSocket()
+{
+ QWebSocket qws;
+ QCOMPARE(qws.isValid(), false);
+}
+
+QTEST_MAIN(tst_WebSocketsTest)
+
+#include "tst_websockets.moc"
+
diff --git a/tests/autobahn/websockets/websockets.pro b/tests/autobahn/websockets/websockets.pro
new file mode 100644
index 0000000..a8b2edb
--- /dev/null
+++ b/tests/autobahn/websockets/websockets.pro
@@ -0,0 +1,14 @@
+CONFIG += console
+CONFIG += c++11
+CONFIG += testcase
+CONFIG -= app_bundle
+
+TEMPLATE = app
+
+TARGET = tst_websockets
+
+QT = core network websockets testlib
+
+SOURCES += tst_websockets.cpp
+
+DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0