qtdeclarative/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp

198 lines
6.1 KiB
C++
Raw Normal View History

/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <qtest.h>
#include <QSignalSpy>
#include <QTimer>
#include <QHostAddress>
#include <QDebug>
#include <QThread>
#include <QtQml/qqmlengine.h>
#include "debugutil_p.h"
#define PORT 13770
#define STR_PORT "13770"
class tst_QQmlDebugClient : public QObject
{
Q_OBJECT
private:
QQmlDebugConnection *m_conn;
private slots:
void initTestCase();
void name();
void state();
void sendMessage();
void parallelConnect();
void sequentialConnect();
};
void tst_QQmlDebugClient::initTestCase()
{
const QString waitingMsg = QString("QML Debugger: Waiting for connection on port %1...").arg(PORT);
QTest::ignoreMessage(QtDebugMsg, waitingMsg.toAscii().constData());
new QQmlEngine(this);
m_conn = new QQmlDebugConnection(this);
QQmlDebugTestClient client("tst_QQmlDebugClient::handshake()", m_conn);
QQmlDebugTestService service("tst_QQmlDebugClient::handshake()");
QTest::ignoreMessage(QtDebugMsg, "QML Debugger: Connection established.");
for (int i = 0; i < 50; ++i) {
// try for 5 seconds ...
m_conn->connectToHost("127.0.0.1", PORT);
if (m_conn->waitForConnected())
break;
QTest::qSleep(100);
}
QVERIFY(m_conn->isConnected());
QTRY_VERIFY(QQmlDebugService::hasDebuggingClient());
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
}
void tst_QQmlDebugClient::name()
{
QString name = "tst_QQmlDebugClient::name()";
QQmlDebugClient client(name, m_conn);
QCOMPARE(client.name(), name);
}
void tst_QQmlDebugClient::state()
{
{
QQmlDebugConnection dummyConn;
QQmlDebugClient client("tst_QQmlDebugClient::state()", &dummyConn);
QCOMPARE(client.state(), QQmlDebugClient::NotConnected);
QCOMPARE(client.serviceVersion(), -1.0f);
}
QQmlDebugTestClient client("tst_QQmlDebugClient::state()", m_conn);
QCOMPARE(client.state(), QQmlDebugClient::Unavailable);
{
QQmlDebugTestService service("tst_QQmlDebugClient::state()", 2);
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
QCOMPARE(client.serviceVersion(), 2.0f);
}
QTRY_COMPARE(client.state(), QQmlDebugClient::Unavailable);
// duplicate plugin name
QTest::ignoreMessage(QtWarningMsg, "QQmlDebugClient: Conflicting plugin name \"tst_QQmlDebugClient::state()\" ");
QQmlDebugClient client2("tst_QQmlDebugClient::state()", m_conn);
QCOMPARE(client2.state(), QQmlDebugClient::NotConnected);
QQmlDebugClient client3("tst_QQmlDebugClient::state3()", 0);
QCOMPARE(client3.state(), QQmlDebugClient::NotConnected);
}
void tst_QQmlDebugClient::sendMessage()
{
QQmlDebugTestService service("tst_QQmlDebugClient::sendMessage()");
QQmlDebugTestClient client("tst_QQmlDebugClient::sendMessage()", m_conn);
QByteArray msg = "hello!";
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
client.sendMessage(msg);
QByteArray resp = client.waitForResponse();
QCOMPARE(resp, msg);
}
void tst_QQmlDebugClient::parallelConnect()
{
QQmlDebugConnection connection2;
QTest::ignoreMessage(QtWarningMsg, "QML Debugger: Another client is already connected.");
// will connect & immediately disconnect
connection2.connectToHost("127.0.0.1", PORT);
QVERIFY(connection2.waitForConnected());
QTRY_COMPARE(connection2.state(), QAbstractSocket::UnconnectedState);
QVERIFY(m_conn->isConnected());
}
void tst_QQmlDebugClient::sequentialConnect()
{
QQmlDebugConnection connection2;
QQmlDebugTestClient client2("tst_QQmlDebugClient::handshake()", &connection2);
QQmlDebugTestService service("tst_QQmlDebugClient::handshake()");
m_conn->close();
QVERIFY(!m_conn->isConnected());
QCOMPARE(m_conn->state(), QAbstractSocket::UnconnectedState);
// Make sure that the disconnect is actually delivered to the server
QTest::qWait(100);
connection2.connectToHost("127.0.0.1", PORT);
QTest::ignoreMessage(QtDebugMsg, "QML Debugger: Connection established.");
QVERIFY(connection2.waitForConnected());
QVERIFY(connection2.isConnected());
QTRY_VERIFY(client2.state() == QQmlDebugClient::Enabled);
}
int main(int argc, char *argv[])
{
int _argc = argc + 1;
char **_argv = new char*[_argc];
for (int i = 0; i < argc; ++i)
_argv[i] = argv[i];
char arg[] = "-qmljsdebugger=port:" STR_PORT;
_argv[_argc - 1] = arg;
QGuiApplication app(_argc, _argv);
tst_QQmlDebugClient tc;
return QTest::qExec(&tc, _argc, _argv);
delete _argv;
}
#include "tst_qqmldebugclient.moc"