forked from qt-creator/qt-creator
QmlProfiler: Test that attachToWaitingApplication tries to connect
Change-Id: Ic71cb60b70e9b68e455795511594a6be5739eb5f Task-number: QTCREATORBUG-19496 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -94,6 +94,7 @@ QtcPlugin {
|
||||
"qmlprofilerclientmanager_test.cpp", "qmlprofilerclientmanager_test.h",
|
||||
"qmlprofilerconfigwidget_test.cpp", "qmlprofilerconfigwidget_test.h",
|
||||
"qmlprofilerdetailsrewriter_test.cpp", "qmlprofilerdetailsrewriter_test.h",
|
||||
"qmlprofilertool_test.cpp", "qmlprofilertool_test.h",
|
||||
"qmlprofilertraceclient_test.cpp", "qmlprofilertraceclient_test.h",
|
||||
"qmlprofilertraceview_test.cpp", "qmlprofilertraceview_test.h",
|
||||
|
||||
|
||||
@@ -49,6 +49,7 @@
|
||||
#include "tests/qmlprofilerclientmanager_test.h"
|
||||
#include "tests/qmlprofilerconfigwidget_test.h"
|
||||
#include "tests/qmlprofilerdetailsrewriter_test.h"
|
||||
#include "tests/qmlprofilertool_test.h"
|
||||
#include "tests/qmlprofilertraceclient_test.h"
|
||||
#include "tests/qmlprofilertraceview_test.h"
|
||||
|
||||
@@ -148,6 +149,7 @@ QList<QObject *> QmlProfiler::Internal::QmlProfilerPlugin::createTestObjects() c
|
||||
tests << new QmlProfilerClientManagerTest;
|
||||
tests << new QmlProfilerConfigWidgetTest;
|
||||
tests << new QmlProfilerDetailsRewriterTest;
|
||||
tests << new QmlProfilerToolTest;
|
||||
tests << new QmlProfilerTraceClientTest;
|
||||
tests << new QmlProfilerTraceViewTest;
|
||||
|
||||
|
||||
65
src/plugins/qmlprofiler/tests/qmlprofilertool_test.cpp
Normal file
65
src/plugins/qmlprofiler/tests/qmlprofilertool_test.cpp
Normal file
@@ -0,0 +1,65 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2018 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 "qmlprofilertool_test.h"
|
||||
|
||||
#include <qmlprofiler/qmlprofilerclientmanager.h>
|
||||
#include <qmlprofiler/qmlprofilerattachdialog.h>
|
||||
#include <utils/url.h>
|
||||
|
||||
#include <QTcpServer>
|
||||
#include <QtTest>
|
||||
|
||||
namespace QmlProfiler {
|
||||
namespace Internal {
|
||||
|
||||
void QmlProfilerToolTest::testAttachToWaitingApplication()
|
||||
{
|
||||
QmlProfilerTool *profilerTool = QmlProfilerTool::instance();
|
||||
QTcpServer server;
|
||||
QUrl serverUrl = Utils::urlFromLocalHostAndFreePort();
|
||||
QVERIFY(serverUrl.port() >= 0);
|
||||
QVERIFY(serverUrl.port() <= std::numeric_limits<quint16>::max());
|
||||
server.listen(QHostAddress(serverUrl.host()), static_cast<quint16>(serverUrl.port()));
|
||||
QSignalSpy connectionSpy(&server, SIGNAL(newConnection()));
|
||||
|
||||
QTimer timer;
|
||||
timer.setInterval(100);
|
||||
connect(&timer, &QTimer::timeout, this, [&]() {
|
||||
if (auto activeModal
|
||||
= qobject_cast<QmlProfilerAttachDialog *>(QApplication::activeModalWidget())) {
|
||||
activeModal->setPort(serverUrl.port());
|
||||
activeModal->accept();
|
||||
}
|
||||
});
|
||||
|
||||
timer.start();
|
||||
profilerTool->attachToWaitingApplication();
|
||||
|
||||
QTRY_VERIFY(connectionSpy.count() > 0);
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace QmlProfiler
|
||||
40
src/plugins/qmlprofiler/tests/qmlprofilertool_test.h
Normal file
40
src/plugins/qmlprofiler/tests/qmlprofilertool_test.h
Normal file
@@ -0,0 +1,40 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2018 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.
|
||||
**
|
||||
****************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <qmlprofiler/qmlprofilertool.h>
|
||||
|
||||
namespace QmlProfiler {
|
||||
namespace Internal {
|
||||
|
||||
class QmlProfilerToolTest : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
private slots:
|
||||
void testAttachToWaitingApplication();
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace QmlProfiler
|
||||
@@ -16,6 +16,7 @@ SOURCES += \
|
||||
$$PWD/qmlprofilerclientmanager_test.cpp \
|
||||
$$PWD/qmlprofilerconfigwidget_test.cpp \
|
||||
$$PWD/qmlprofilerdetailsrewriter_test.cpp \
|
||||
$$PWD/qmlprofilertool_test.cpp \
|
||||
$$PWD/qmlprofilertraceclient_test.cpp \
|
||||
$$PWD/qmlprofilertraceview_test.cpp
|
||||
|
||||
@@ -37,6 +38,7 @@ HEADERS += \
|
||||
$$PWD/qmlprofilerclientmanager_test.h \
|
||||
$$PWD/qmlprofilerconfigwidget_test.h \
|
||||
$$PWD/qmlprofilerdetailsrewriter_test.h \
|
||||
$$PWD/qmlprofilertool_test.h \
|
||||
$$PWD/qmlprofilertraceclient_test.h \
|
||||
$$PWD/qmlprofilertraceview_test.h
|
||||
|
||||
|
||||
Reference in New Issue
Block a user