2016-06-02 17:17:20 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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 The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "localqmlprofilerrunner_test.h"
|
|
|
|
|
#include <debugger/analyzer/analyzermanager.h>
|
|
|
|
|
#include <debugger/analyzer/analyzerruncontrol.h>
|
|
|
|
|
#include <debugger/analyzer/analyzerstartparameters.h>
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
#include <QTcpServer>
|
|
|
|
|
|
|
|
|
|
namespace QmlProfiler {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
LocalQmlProfilerRunnerTest::LocalQmlProfilerRunnerTest(QObject *parent) : QObject(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocalQmlProfilerRunnerTest::testRunner()
|
|
|
|
|
{
|
2016-07-04 17:36:59 +02:00
|
|
|
Debugger::AnalyzerConnection connection;
|
2016-06-02 17:17:20 +02:00
|
|
|
LocalQmlProfilerRunner::Configuration configuration;
|
2016-08-11 11:19:57 +02:00
|
|
|
configuration.debuggee.executable = "\\-/|\\-/";
|
2016-07-04 17:36:59 +02:00
|
|
|
configuration.debuggee.environment = Utils::Environment::systemEnvironment();
|
|
|
|
|
|
|
|
|
|
// should not be used anywhere but cannot be empty
|
|
|
|
|
configuration.socket = connection.analyzerSocket = QString("invalid");
|
|
|
|
|
|
2016-06-02 17:17:20 +02:00
|
|
|
Debugger::AnalyzerRunControl *rc = Debugger::createAnalyzerRunControl(
|
|
|
|
|
nullptr, ProjectExplorer::Constants::QML_PROFILER_RUN_MODE);
|
2016-07-04 17:36:59 +02:00
|
|
|
rc->setConnection(connection);
|
2016-06-02 17:17:20 +02:00
|
|
|
auto runner = new LocalQmlProfilerRunner(configuration, rc);
|
|
|
|
|
|
|
|
|
|
bool running = false;
|
|
|
|
|
int runCount = 0;
|
|
|
|
|
|
|
|
|
|
auto connectRunner = [&]() {
|
|
|
|
|
connect(runner, &LocalQmlProfilerRunner::started, this, [&running, &runCount](){
|
|
|
|
|
QVERIFY(!running);
|
|
|
|
|
++runCount;
|
|
|
|
|
running = true;
|
|
|
|
|
});
|
|
|
|
|
connect(runner, &LocalQmlProfilerRunner::stopped, this, [&running](){
|
|
|
|
|
QVERIFY(running);
|
|
|
|
|
running = false;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
connectRunner();
|
|
|
|
|
|
|
|
|
|
rc->start();
|
|
|
|
|
|
2016-06-08 13:56:18 +02:00
|
|
|
QTRY_COMPARE_WITH_TIMEOUT(runCount, 1, 10000);
|
|
|
|
|
QTRY_VERIFY_WITH_TIMEOUT(!running, 10000);
|
2016-06-02 17:17:20 +02:00
|
|
|
|
2016-07-04 17:36:59 +02:00
|
|
|
configuration.socket = connection.analyzerSocket = LocalQmlProfilerRunner::findFreeSocket();
|
2016-06-02 17:17:20 +02:00
|
|
|
configuration.debuggee.executable = qApp->applicationFilePath();
|
2016-07-04 17:36:59 +02:00
|
|
|
|
|
|
|
|
// comma is used to specify a test function. In this case, an invalid one.
|
|
|
|
|
configuration.debuggee.commandLineArguments = QString("-test QmlProfiler,");
|
2016-06-02 17:17:20 +02:00
|
|
|
|
|
|
|
|
delete rc;
|
|
|
|
|
rc = Debugger::createAnalyzerRunControl(
|
|
|
|
|
nullptr, ProjectExplorer::Constants::QML_PROFILER_RUN_MODE);
|
2016-07-04 17:36:59 +02:00
|
|
|
rc->setConnection(connection);
|
2016-06-02 17:17:20 +02:00
|
|
|
runner = new LocalQmlProfilerRunner(configuration, rc);
|
|
|
|
|
connectRunner();
|
|
|
|
|
rc->start();
|
|
|
|
|
|
2016-06-08 13:56:18 +02:00
|
|
|
QTRY_COMPARE_WITH_TIMEOUT(runCount, 2, 10000);
|
|
|
|
|
QTRY_VERIFY_WITH_TIMEOUT(!running, 10000);
|
2016-06-02 17:17:20 +02:00
|
|
|
|
|
|
|
|
delete rc;
|
|
|
|
|
|
|
|
|
|
configuration.debuggee.commandLineArguments.clear();
|
2016-07-04 17:36:59 +02:00
|
|
|
configuration.socket.clear();
|
|
|
|
|
connection.analyzerSocket.clear();
|
|
|
|
|
configuration.port = connection.analyzerPort =
|
|
|
|
|
LocalQmlProfilerRunner::findFreePort(connection.analyzerHost);
|
2016-06-02 17:17:20 +02:00
|
|
|
rc = Debugger::createAnalyzerRunControl(
|
|
|
|
|
nullptr, ProjectExplorer::Constants::QML_PROFILER_RUN_MODE);
|
2016-07-04 17:36:59 +02:00
|
|
|
rc->setConnection(connection);
|
2016-06-02 17:17:20 +02:00
|
|
|
runner = new LocalQmlProfilerRunner(configuration, rc);
|
|
|
|
|
connectRunner();
|
|
|
|
|
rc->start();
|
|
|
|
|
|
2016-06-08 13:56:18 +02:00
|
|
|
QTRY_COMPARE_WITH_TIMEOUT(runCount, 3, 10000);
|
2016-06-02 17:17:20 +02:00
|
|
|
rc->stop();
|
2016-06-08 13:56:18 +02:00
|
|
|
QTRY_VERIFY_WITH_TIMEOUT(!running, 10000);
|
2016-06-02 17:17:20 +02:00
|
|
|
|
|
|
|
|
delete rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LocalQmlProfilerRunnerTest::testFindFreePort()
|
|
|
|
|
{
|
|
|
|
|
QString host;
|
|
|
|
|
Utils::Port port = LocalQmlProfilerRunner::findFreePort(host);
|
|
|
|
|
QVERIFY(port.isValid());
|
|
|
|
|
QVERIFY(!host.isEmpty());
|
|
|
|
|
QTcpServer server;
|
|
|
|
|
QVERIFY(server.listen(QHostAddress(host), port.number()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocalQmlProfilerRunnerTest::testFindFreeSocket()
|
|
|
|
|
{
|
|
|
|
|
QString socket = LocalQmlProfilerRunner::findFreeSocket();
|
|
|
|
|
QVERIFY(!socket.isEmpty());
|
|
|
|
|
QVERIFY(!QFile::exists(socket));
|
|
|
|
|
QFile file(socket);
|
|
|
|
|
QVERIFY(file.open(QIODevice::WriteOnly));
|
|
|
|
|
file.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QmlProfiler
|