2014-12-04 14:05:19 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-12-04 14:05:19 +01:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** This file is part of Qt Creator.
|
2014-12-04 14:05:19 +01:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
2014-12-04 14:05:19 +01:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-22 10:37:55 +01:00
|
|
|
** 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.
|
2014-12-04 14:05:19 +01:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** 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.
|
2014-12-04 14:05:19 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "autotestconstants.h"
|
2016-06-06 15:35:00 +02:00
|
|
|
#include "testframeworkmanager.h"
|
2014-12-04 14:05:19 +01:00
|
|
|
#include "testsettingspage.h"
|
|
|
|
|
#include "testsettings.h"
|
2016-02-01 15:12:10 +01:00
|
|
|
#include "testtreemodel.h"
|
2014-12-04 14:05:19 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/hostosinfo.h>
|
2016-08-03 17:55:54 +02:00
|
|
|
#include <utils/utilsicons.h>
|
2014-12-04 14:05:19 +01:00
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
TestSettingsWidget::TestSettingsWidget(QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
m_ui.callgrindRB->setEnabled(Utils::HostOsInfo::isAnyUnixHost()); // valgrind available on UNIX
|
|
|
|
|
m_ui.perfRB->setEnabled(Utils::HostOsInfo::isLinuxHost()); // according to docs perf Linux only
|
2016-02-23 17:40:10 +01:00
|
|
|
|
2016-06-08 12:56:25 +02:00
|
|
|
m_ui.frameworksWarnIcon->setVisible(false);
|
2016-08-03 17:55:54 +02:00
|
|
|
m_ui.frameworksWarnIcon->setPixmap(Utils::Icons::WARNING.pixmap());
|
2016-06-08 12:56:25 +02:00
|
|
|
m_ui.frameworksWarn->setVisible(false);
|
|
|
|
|
m_ui.frameworksWarn->setText(tr("No active test frameworks."));
|
|
|
|
|
m_ui.frameworksWarn->setToolTip(tr("You will not be able to use the AutoTest plugin without "
|
|
|
|
|
"having at least one active test framework."));
|
2016-02-23 17:40:10 +01:00
|
|
|
connect(m_ui.repeatGTestsCB, &QCheckBox::toggled, m_ui.repetitionSpin, &QSpinBox::setEnabled);
|
|
|
|
|
connect(m_ui.shuffleGTestsCB, &QCheckBox::toggled, m_ui.seedSpin, &QSpinBox::setEnabled);
|
2016-06-08 12:56:25 +02:00
|
|
|
connect(m_ui.frameworkListWidget, &QListWidget::itemChanged,
|
|
|
|
|
this, &TestSettingsWidget::onFrameworkItemChanged);
|
2014-12-04 14:05:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestSettingsWidget::setSettings(const TestSettings &settings)
|
|
|
|
|
{
|
|
|
|
|
m_ui.timeoutSpin->setValue(settings.timeout / 1000); // we store milliseconds
|
|
|
|
|
m_ui.omitInternalMsgCB->setChecked(settings.omitInternalMssg);
|
2015-02-17 10:33:35 +01:00
|
|
|
m_ui.omitRunConfigWarnCB->setChecked(settings.omitRunConfigWarn);
|
2015-04-09 15:51:42 +02:00
|
|
|
m_ui.limitResultOutputCB->setChecked(settings.limitResultOutput);
|
2015-04-16 08:54:41 +02:00
|
|
|
m_ui.autoScrollCB->setChecked(settings.autoScroll);
|
2016-02-01 15:12:10 +01:00
|
|
|
m_ui.alwaysParseCB->setChecked(settings.alwaysParse);
|
2016-02-23 17:40:10 +01:00
|
|
|
m_ui.runDisabledGTestsCB->setChecked(settings.gtestRunDisabled);
|
|
|
|
|
m_ui.repeatGTestsCB->setChecked(settings.gtestRepeat);
|
|
|
|
|
m_ui.shuffleGTestsCB->setChecked(settings.gtestShuffle);
|
|
|
|
|
m_ui.repetitionSpin->setValue(settings.gtestIterations);
|
|
|
|
|
m_ui.seedSpin->setValue(settings.gtestSeed);
|
2014-12-04 14:05:19 +01:00
|
|
|
|
|
|
|
|
switch (settings.metrics) {
|
|
|
|
|
case MetricsType::Walltime:
|
|
|
|
|
m_ui.walltimeRB->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case MetricsType::TickCounter:
|
|
|
|
|
m_ui.tickcounterRB->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case MetricsType::EventCounter:
|
|
|
|
|
m_ui.eventCounterRB->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case MetricsType::CallGrind:
|
|
|
|
|
m_ui.callgrindRB->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case MetricsType::Perf:
|
|
|
|
|
m_ui.perfRB->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
m_ui.walltimeRB->setChecked(true);
|
|
|
|
|
}
|
2016-06-06 15:35:00 +02:00
|
|
|
populateFrameworksListWidget(settings.frameworks);
|
2014-12-04 14:05:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestSettings TestSettingsWidget::settings() const
|
|
|
|
|
{
|
|
|
|
|
TestSettings result;
|
|
|
|
|
result.timeout = m_ui.timeoutSpin->value() * 1000; // we display seconds
|
|
|
|
|
result.omitInternalMssg = m_ui.omitInternalMsgCB->isChecked();
|
2015-02-17 10:33:35 +01:00
|
|
|
result.omitRunConfigWarn = m_ui.omitRunConfigWarnCB->isChecked();
|
2015-04-09 15:51:42 +02:00
|
|
|
result.limitResultOutput = m_ui.limitResultOutputCB->isChecked();
|
2015-04-16 08:54:41 +02:00
|
|
|
result.autoScroll = m_ui.autoScrollCB->isChecked();
|
2016-02-01 15:12:10 +01:00
|
|
|
result.alwaysParse = m_ui.alwaysParseCB->isChecked();
|
2016-02-23 17:40:10 +01:00
|
|
|
result.gtestRunDisabled = m_ui.runDisabledGTestsCB->isChecked();
|
|
|
|
|
result.gtestRepeat = m_ui.repeatGTestsCB->isChecked();
|
|
|
|
|
result.gtestShuffle = m_ui.shuffleGTestsCB->isChecked();
|
|
|
|
|
result.gtestIterations = m_ui.repetitionSpin->value();
|
|
|
|
|
result.gtestSeed = m_ui.seedSpin->value();
|
2014-12-04 14:05:19 +01:00
|
|
|
|
|
|
|
|
if (m_ui.walltimeRB->isChecked())
|
|
|
|
|
result.metrics = MetricsType::Walltime;
|
|
|
|
|
else if (m_ui.tickcounterRB->isChecked())
|
|
|
|
|
result.metrics = MetricsType::TickCounter;
|
|
|
|
|
else if (m_ui.eventCounterRB->isChecked())
|
|
|
|
|
result.metrics = MetricsType::EventCounter;
|
|
|
|
|
else if (m_ui.callgrindRB->isChecked())
|
|
|
|
|
result.metrics = MetricsType::CallGrind;
|
|
|
|
|
else if (m_ui.perfRB->isChecked())
|
|
|
|
|
result.metrics = MetricsType::Perf;
|
|
|
|
|
|
2016-06-06 15:35:00 +02:00
|
|
|
result.frameworks = frameworks();
|
|
|
|
|
|
2014-12-04 14:05:19 +01:00
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-06 15:35:00 +02:00
|
|
|
void TestSettingsWidget::populateFrameworksListWidget(const QHash<Core::Id, bool> &frameworks)
|
|
|
|
|
{
|
|
|
|
|
TestFrameworkManager *frameworkManager = TestFrameworkManager::instance();
|
|
|
|
|
const QList<Core::Id> ®istered = frameworkManager->sortedRegisteredFrameworkIds();
|
|
|
|
|
m_ui.frameworkListWidget->clear();
|
|
|
|
|
for (const Core::Id &id : registered) {
|
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(frameworkManager->frameworkNameForId(id),
|
|
|
|
|
m_ui.frameworkListWidget);
|
|
|
|
|
item->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsUserCheckable);
|
|
|
|
|
item->setCheckState(frameworks.value(id) ? Qt::Checked : Qt::Unchecked);
|
|
|
|
|
item->setData(Qt::UserRole, id.toSetting());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QHash<Core::Id, bool> TestSettingsWidget::frameworks() const
|
|
|
|
|
{
|
|
|
|
|
const int itemCount = m_ui.frameworkListWidget->count();
|
|
|
|
|
QHash<Core::Id, bool> frameworks;
|
|
|
|
|
for (int row = 0; row < itemCount; ++row) {
|
|
|
|
|
if (QListWidgetItem *item = m_ui.frameworkListWidget->item(row)) {
|
|
|
|
|
frameworks.insert(Core::Id::fromSetting(item->data(Qt::UserRole)),
|
|
|
|
|
item->checkState() == Qt::Checked);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return frameworks;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-08 12:56:25 +02:00
|
|
|
void TestSettingsWidget::onFrameworkItemChanged()
|
|
|
|
|
{
|
|
|
|
|
for (int row = 0, count = m_ui.frameworkListWidget->count(); row < count; ++row) {
|
|
|
|
|
if (m_ui.frameworkListWidget->item(row)->checkState() == Qt::Checked) {
|
|
|
|
|
m_ui.frameworksWarn->setVisible(false);
|
|
|
|
|
m_ui.frameworksWarnIcon->setVisible(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_ui.frameworksWarn->setVisible(true);
|
|
|
|
|
m_ui.frameworksWarnIcon->setVisible(true);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-04 14:05:19 +01:00
|
|
|
TestSettingsPage::TestSettingsPage(const QSharedPointer<TestSettings> &settings)
|
|
|
|
|
: m_settings(settings), m_widget(0)
|
|
|
|
|
{
|
2015-08-10 14:08:29 +02:00
|
|
|
setId("A.AutoTest.General");
|
2014-12-04 14:05:19 +01:00
|
|
|
setDisplayName(tr("General"));
|
|
|
|
|
setCategory(Constants::AUTOTEST_SETTINGS_CATEGORY);
|
|
|
|
|
setDisplayCategory(tr("Test Settings"));
|
|
|
|
|
setCategoryIcon(QLatin1String(":/images/autotest.png"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestSettingsPage::~TestSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *TestSettingsPage::widget()
|
|
|
|
|
{
|
|
|
|
|
if (!m_widget) {
|
|
|
|
|
m_widget = new TestSettingsWidget;
|
|
|
|
|
m_widget->setSettings(*m_settings);
|
|
|
|
|
}
|
|
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestSettingsPage::apply()
|
|
|
|
|
{
|
|
|
|
|
if (!m_widget) // page was not shown at all
|
|
|
|
|
return;
|
|
|
|
|
const TestSettings newSettings = m_widget->settings();
|
|
|
|
|
if (newSettings != *m_settings) {
|
2016-06-06 15:35:00 +02:00
|
|
|
bool frameworkSyncNecessary = newSettings.frameworks != m_settings->frameworks;
|
2014-12-04 14:05:19 +01:00
|
|
|
*m_settings = newSettings;
|
|
|
|
|
m_settings->toSettings(Core::ICore::settings());
|
2016-02-01 15:12:10 +01:00
|
|
|
if (m_settings->alwaysParse)
|
|
|
|
|
TestTreeModel::instance()->enableParsingFromSettings();
|
|
|
|
|
else
|
|
|
|
|
TestTreeModel::instance()->disableParsingFromSettings();
|
2016-06-06 15:35:00 +02:00
|
|
|
TestFrameworkManager::instance()->activateFrameworksFromSettings(m_settings);
|
|
|
|
|
if (frameworkSyncNecessary)
|
|
|
|
|
TestTreeModel::instance()->syncTestFrameworks();
|
2014-12-04 14:05:19 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|