aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmldebuggingenabler/qqmldebuggingenabler/tst_qqmldebuggingenabler.cpp
blob: ab599e9a231ea8ed3f69dd9bff34d5fcfba1a889 (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "debugutil_p.h"
#include "qqmldebugprocess_p.h"
#include <QtQuickTestUtils/private/qmlutils_p.h>

#include <private/qqmldebugclient_p.h>
#include <private/qqmldebugconnection_p.h>

#include <QtQml/qqmldebug.h>

#include <QtTest/qtest.h>
#include <QtCore/qprocess.h>
#include <QtCore/qtimer.h>
#include <QtCore/qfileinfo.h>
#include <QtCore/qdir.h>
#include <QtCore/qmutex.h>
#include <QtCore/qlibraryinfo.h>

class tst_QQmlDebuggingEnabler : public QQmlDebugTest
{
    Q_OBJECT

public:
    tst_QQmlDebuggingEnabler();

private slots:
    void qmlscene_data();
    void qmlscene();
    void custom_data();
    void custom();

private:
    void data();
};

void tst_QQmlDebuggingEnabler::data()
{
    QTest::addColumn<QString>("connector");
    QTest::addColumn<bool>("blockMode");
    QTest::addColumn<QStringList>("services");

    QStringList connectors({
        QLatin1String("QQmlDebugServer"),
        QLatin1String("QQmlNativeDebugConnector")
    });

    QList<bool> blockModes({ true, false });

    QList<QStringList> serviceLists({
        QStringList(),
        QQmlDebuggingEnabler::nativeDebuggerServices(),
        QQmlDebuggingEnabler::debuggerServices(),
        QQmlDebuggingEnabler::inspectorServices(),
        QQmlDebuggingEnabler::profilerServices(),
        QQmlDebuggingEnabler::debuggerServices() + QQmlDebuggingEnabler::inspectorServices()
    });

    foreach (const QString &connector, connectors) {
        foreach (bool blockMode, blockModes) {
            foreach (const QStringList &serviceList, serviceLists) {
                QString name = connector + QLatin1Char(',')
                        + QLatin1String(blockMode ? "block" : "noblock") + QLatin1Char(',')
                        + serviceList.join(QLatin1Char('-'));
                QTest::newRow(name.toUtf8().constData()) << connector << blockMode << serviceList;
            }
        }
    }
}

tst_QQmlDebuggingEnabler::tst_QQmlDebuggingEnabler()
    : QQmlDebugTest(QT_QMLTEST_DATADIR)
{
}

void tst_QQmlDebuggingEnabler::qmlscene_data()
{
    data();
}

void tst_QQmlDebuggingEnabler::qmlscene()
{
    QFETCH(QString, connector);
    QFETCH(bool, blockMode);
    QFETCH(QStringList, services);

    m_process = new QQmlDebugProcess(
                QLibraryInfo::path(QLibraryInfo::BinariesPath) + "/qmlscene", this);
    m_process->setMaximumBindErrors(1);
    m_process->start(QStringList()
                     << QString::fromLatin1("-qmljsdebugger=connector:%1%2%3%4")
                        .arg(connector + (connector == QLatin1String("QQmlDebugServer")
                                          ? QLatin1String(",port:5555,5565") : QString()))
                        .arg(blockMode ? QLatin1String(",block") : QString())
                        .arg(services.isEmpty() ? QString() : QString::fromLatin1(",services:"))
                        .arg(services.isEmpty() ? QString() : services.join(","))
                     << testFile(QLatin1String("test.qml")));

    if (connector == QLatin1String("QQmlDebugServer")) {
        QVERIFY(m_process->waitForSessionStart());
        m_connection = new QQmlDebugConnection();
        m_clients = QQmlDebugTest::createOtherClients(m_connection);
        m_connection->connectToHost("127.0.0.1", m_process->debugPort());
        QVERIFY(m_connection->waitForConnected());
        foreach (QQmlDebugClient *client, m_clients)
            QCOMPARE(client->state(), (services.isEmpty() || services.contains(client->name())) ?
                         QQmlDebugClient::Enabled : QQmlDebugClient::Unavailable);
    }

    QCOMPARE(m_process->state(), QProcess::Running);
    if (!blockMode) {
        QTRY_VERIFY_WITH_TIMEOUT(m_process->output().contains(
                                     QLatin1String("Component.onCompleted")), 15000);
    }
}

void tst_QQmlDebuggingEnabler::custom_data()
{
    data();
}

void tst_QQmlDebuggingEnabler::custom()
{
    QFETCH(QString, connector);
    QFETCH(bool, blockMode);
    QFETCH(QStringList, services);
    const int portFrom = 5555;
    const int portTo = 5565;

    m_process = new QQmlDebugProcess(QCoreApplication::applicationDirPath() +
                                     QLatin1String("/qqmldebuggingenablerserver"), this);
    m_process->setMaximumBindErrors(portTo - portFrom);

    QStringList args;
    if (blockMode)
        args << QLatin1String("-block");

    args << QLatin1String("-connector") << connector
         << QString::number(portFrom) << QString::number(portTo);

    if (!services.isEmpty())
        args << QLatin1String("-services") << services;

    m_process->start(args);

    if (connector == QLatin1String("QQmlDebugServer")) {
        QVERIFY(m_process->waitForSessionStart());
        m_connection = new QQmlDebugConnection();
        m_clients = QQmlDebugTest::createOtherClients(m_connection);
        m_connection->connectToHost("127.0.0.1", m_process->debugPort());
        QVERIFY(m_connection->waitForConnected());
        for (QQmlDebugClient *client : std::as_const(m_clients))
            QCOMPARE(client->state(), (services.isEmpty() || services.contains(client->name())) ?
                         QQmlDebugClient::Enabled : QQmlDebugClient::Unavailable);
    }

    QCOMPARE(m_process->state(), QProcess::Running);
    if (!blockMode) {
        QTRY_VERIFY_WITH_TIMEOUT(m_process->output().contains(QLatin1String("QQmlEngine created")),
                                 15000);
    }
}

QTEST_MAIN(tst_QQmlDebuggingEnabler)

#include "tst_qqmldebuggingenabler.moc"