1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, 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, Digia gives you certain additional
** rights. These rights are described in the Digia 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.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <qtest.h>
#include <QSignalSpy>
#include <QTimer>
#include <QHostAddress>
#include <QDebug>
#include <QThread>
#include <QLibraryInfo>
#include <QtQml/qqmlengine.h>
#include "../../../shared/util.h"
#include "debugutil_p.h"
#include "qqmldebugclient.h"
#include "qqmldebugtestservice.h"
#define PORT 3769
#define STR_PORT "3769"
class tst_QQmlDebugService : public QQmlDataTest
{
Q_OBJECT
private:
QQmlDebugConnection *m_conn;
private slots:
void initTestCase();
void checkPortRange();
void name();
void version();
void state();
void sendMessage();
void idForObject();
void objectForId();
void objectToString();
void checkSupportForDataStreamVersion();
void checkSupportForOldDataStreamVersion();
};
void tst_QQmlDebugService::initTestCase()
{
QQmlDataTest::initTestCase();
const QString waitingMsg = QString("QML Debugger: Waiting for connection on port %1...").arg(PORT);
QTest::ignoreMessage(QtDebugMsg, waitingMsg.toLatin1().constData());
new QQmlEngine(this);
m_conn = new QQmlDebugConnection(this);
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());
}
void tst_QQmlDebugService::checkPortRange()
{
QQmlDebugConnection *connection1 = new QQmlDebugConnection();
QQmlDebugProcess *process1 = new QQmlDebugProcess(QLibraryInfo::location(QLibraryInfo::BinariesPath) + "/qmlscene", this);
process1->start(QStringList() << QLatin1String("-qmljsdebugger=port:3782,3792") << testFile("test.qml"));
if (!process1->waitForSessionStart())
QFAIL("could not launch application, or did not get 'Waiting for connection'.");
const int port1 = process1->debugPort();
connection1->connectToHost("127.0.0.1", port1);
if (!connection1->waitForConnected())
QFAIL("could not connect to host!");
// Second instance
QQmlDebugConnection *connection2 = new QQmlDebugConnection();
QQmlDebugProcess *process2 = new QQmlDebugProcess(QLibraryInfo::location(QLibraryInfo::BinariesPath) + "/qmlscene", this);
process2->start(QStringList() << QLatin1String("-qmljsdebugger=port:3782,3792") << testFile("test.qml"));
if (!process2->waitForSessionStart())
QFAIL("could not launch application, or did not get 'Waiting for connection'.");
const int port2 = process2->debugPort();
connection2->connectToHost("127.0.0.1", port2);
if (!connection2->waitForConnected())
QFAIL("could not connect to host!");
delete connection1;
delete process1;
delete connection2;
delete process2;
}
void tst_QQmlDebugService::name()
{
QString name = "tst_QQmlDebugService::name()";
QQmlDebugService service(name, 1);
QCOMPARE(service.name(), name);
}
void tst_QQmlDebugService::version()
{
QString name = "tst_QQmlDebugService::name()";
QQmlDebugService service(name, 2);
QCOMPARE(service.version(), 2.0f);
}
void tst_QQmlDebugService::state()
{
QQmlDebugTestService service("tst_QQmlDebugService::state()");
QCOMPARE(service.state(), QQmlDebugService::Unavailable);
{
QQmlDebugTestClient client("tst_QQmlDebugService::state()", m_conn);
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
QTRY_COMPARE(service.state(), QQmlDebugService::Enabled);
}
QTRY_COMPARE(service.state(), QQmlDebugService::Unavailable);
QTest::ignoreMessage(QtWarningMsg, "QQmlDebugService: Conflicting plugin name \"tst_QQmlDebugService::state()\"");
QQmlDebugTestService duplicate("tst_QQmlDebugService::state()");
QCOMPARE(duplicate.state(), QQmlDebugService::NotConnected);
}
void tst_QQmlDebugService::sendMessage()
{
QQmlDebugTestService service("tst_QQmlDebugService::sendMessage()");
QQmlDebugTestClient client("tst_QQmlDebugService::sendMessage()", m_conn);
QByteArray msg = "hello!";
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
QTRY_COMPARE(service.state(), QQmlDebugService::Enabled);
client.sendMessage(msg);
QByteArray resp = client.waitForResponse();
QCOMPARE(resp, msg);
QTest::ignoreMessage(QtWarningMsg, "QQmlDebugService: Conflicting plugin name \"tst_QQmlDebugService::sendMessage()\"");
QQmlDebugTestService duplicate("tst_QQmlDebugService::sendMessage()");
duplicate.sendMessage("msg");
}
void tst_QQmlDebugService::checkSupportForDataStreamVersion()
{
QQmlDebugTestService service("tst_QQmlDebugService::sendMessage2()");
QQmlDebugTestClient client("tst_QQmlDebugService::sendMessage2()", m_conn);
QByteArray msg = "hello!";
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
QTRY_COMPARE(service.state(), QQmlDebugService::Enabled);
client.sendMessage(msg);
QByteArray resp = client.waitForResponse();
QCOMPARE(resp, msg);
QCOMPARE(m_conn->dataStreamVersion(), int(QDataStream::Qt_5_0));
}
void tst_QQmlDebugService::idForObject()
{
QCOMPARE(QQmlDebugService::idForObject(0), -1);
QObject *objA = new QObject;
int idA = QQmlDebugService::idForObject(objA);
QVERIFY(idA >= 0);
QCOMPARE(QQmlDebugService::objectForId(idA), objA);
int idAA = QQmlDebugService::idForObject(objA);
QCOMPARE(idAA, idA);
QObject *objB = new QObject;
int idB = QQmlDebugService::idForObject(objB);
QVERIFY(idB != idA);
QCOMPARE(QQmlDebugService::objectForId(idB), objB);
delete objA;
delete objB;
}
void tst_QQmlDebugService::objectForId()
{
QCOMPARE(QQmlDebugService::objectForId(-1), static_cast<QObject*>(0));
QCOMPARE(QQmlDebugService::objectForId(1), static_cast<QObject*>(0));
QObject *obj = new QObject;
int id = QQmlDebugService::idForObject(obj);
QCOMPARE(QQmlDebugService::objectForId(id), obj);
delete obj;
QCOMPARE(QQmlDebugService::objectForId(id), static_cast<QObject*>(0));
}
void tst_QQmlDebugService::objectToString()
{
QCOMPARE(QQmlDebugService::objectToString(0), QString("NULL"));
QObject *obj = new QObject;
QCOMPARE(QQmlDebugService::objectToString(obj), QString("QObject: <unnamed>"));
obj->setObjectName("Hello");
QCOMPARE(QQmlDebugService::objectToString(obj), QString("QObject: Hello"));
delete obj;
}
void tst_QQmlDebugService::checkSupportForOldDataStreamVersion()
{
//create a new connection;
delete m_conn;
m_conn = new QQmlDebugConnection(this);
m_conn->setDataStreamVersion(QDataStream::Qt_4_7);
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());
QQmlDebugTestService service("tst_QQmlDebugService::sendMessage2()");
QQmlDebugTestClient client("tst_QQmlDebugService::sendMessage2()", m_conn);
QByteArray msg = "hello!";
QTRY_COMPARE(client.state(), QQmlDebugClient::Enabled);
QTRY_COMPARE(service.state(), QQmlDebugService::Enabled);
client.sendMessage(msg);
QByteArray resp = client.waitForResponse();
QCOMPARE(resp, msg);
QCOMPARE(m_conn->dataStreamVersion(), int(QDataStream::Qt_4_7));
}
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 ",host:127.0.0.1";
_argv[_argc - 1] = arg;
QGuiApplication app(_argc, _argv);
tst_QQmlDebugService tc;
return QTest::qExec(&tc, _argc, _argv);
delete _argv;
}
#include "tst_qqmldebugservice.moc"
|