forked from qt-creator/qt-creator
Reuse it in TestRunner. Change-Id: I59ffd256a7e84f0d0726261496d73bc4f622d666 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
121 lines
3.3 KiB
C++
121 lines
3.3 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "autotest_global.h"
|
|
#include "testresult.h"
|
|
|
|
#include <QDialog>
|
|
#include <QFutureWatcher>
|
|
#include <QList>
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QCheckBox;
|
|
class QComboBox;
|
|
class QDialogButtonBox;
|
|
class QLabel;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace ProjectExplorer { class Project; }
|
|
namespace Utils { class QtcProcess; }
|
|
|
|
namespace Autotest {
|
|
|
|
enum class TestRunMode;
|
|
class ITestConfiguration;
|
|
class TestOutputReader;
|
|
|
|
namespace Internal {
|
|
|
|
class AUTOTESTSHARED_EXPORT TestRunner final : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TestRunner();
|
|
~TestRunner() final;
|
|
|
|
enum CancelReason { UserCanceled, Timeout, KitChanged };
|
|
|
|
static TestRunner* instance();
|
|
|
|
void runTests(TestRunMode mode, const QList<ITestConfiguration *> &selectedTests);
|
|
void runTest(TestRunMode mode, const ITestTreeItem *item);
|
|
bool isTestRunning() const { return m_executingTests; }
|
|
|
|
signals:
|
|
void testRunStarted();
|
|
void testRunFinished();
|
|
void requestStopTestRun();
|
|
void testResultReady(const TestResult &result);
|
|
void hadDisabledTests(int disabled);
|
|
void reportSummary(const QString &id, const QHash<ResultType, int> &summary);
|
|
|
|
private:
|
|
void buildProject(ProjectExplorer::Project *project);
|
|
void buildFinished(bool success);
|
|
void onBuildQueueFinished(bool success);
|
|
void onFinished();
|
|
|
|
int precheckTestConfigurations();
|
|
bool currentConfigValid();
|
|
void setUpProcessEnv();
|
|
void scheduleNext();
|
|
void cancelCurrent(CancelReason reason);
|
|
void onProcessDone();
|
|
void resetInternalPointers();
|
|
|
|
void runTestsHelper();
|
|
void debugTests();
|
|
void runOrDebugTests();
|
|
void reportResult(ResultType type, const QString &description);
|
|
bool postponeTestRunWithEmptyExecutable(ProjectExplorer::Project *project);
|
|
void onBuildSystemUpdated();
|
|
|
|
QFutureWatcher<TestResult> m_futureWatcher;
|
|
QFutureInterface<TestResult> *m_fakeFutureInterface = nullptr;
|
|
QList<ITestConfiguration *> m_selectedTests;
|
|
bool m_executingTests = false;
|
|
bool m_canceled = false;
|
|
ITestConfiguration *m_currentConfig = nullptr;
|
|
Utils::QtcProcess *m_currentProcess = nullptr;
|
|
TestOutputReader *m_currentOutputReader = nullptr;
|
|
TestRunMode m_runMode = TestRunMode::None;
|
|
|
|
// temporarily used if building before running is necessary
|
|
QMetaObject::Connection m_buildConnect;
|
|
// temporarily used when debugging
|
|
QMetaObject::Connection m_stopDebugConnect;
|
|
QMetaObject::Connection m_finishDebugConnect;
|
|
// temporarily used for handling of switching the current target
|
|
QMetaObject::Connection m_targetConnect;
|
|
QTimer m_cancelTimer;
|
|
bool m_skipTargetsCheck = false;
|
|
};
|
|
|
|
class RunConfigurationSelectionDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RunConfigurationSelectionDialog(const QString &buildTargetKey, QWidget *parent = nullptr);
|
|
QString displayName() const;
|
|
QString executable() const;
|
|
bool rememberChoice() const;
|
|
private:
|
|
void populate();
|
|
void updateLabels();
|
|
QLabel *m_details;
|
|
QLabel *m_executable;
|
|
QLabel *m_arguments;
|
|
QLabel *m_workingDir;
|
|
QComboBox *m_rcCombo;
|
|
QCheckBox *m_rememberCB;
|
|
QDialogButtonBox *m_buttonBox;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|