forked from qt-creator/qt-creator
Test parser is normally disabled as long neither test tree nor results pane is opened. The new setting allows the user to enable the parser without the need to have one of these widgets opened. Task-number: QTCREATORBUG-15669 Change-Id: I354e1a3cb91eeca2302f2344fd443c81c4b15406 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
140 lines
4.7 KiB
C++
140 lines
4.7 KiB
C++
/****************************************************************************
|
|
**
|
|
** 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 "autotestconstants.h"
|
|
#include "testsettingspage.h"
|
|
#include "testsettings.h"
|
|
#include "testtreemodel.h"
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
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
|
|
}
|
|
|
|
void TestSettingsWidget::setSettings(const TestSettings &settings)
|
|
{
|
|
m_ui.timeoutSpin->setValue(settings.timeout / 1000); // we store milliseconds
|
|
m_ui.omitInternalMsgCB->setChecked(settings.omitInternalMssg);
|
|
m_ui.omitRunConfigWarnCB->setChecked(settings.omitRunConfigWarn);
|
|
m_ui.limitResultOutputCB->setChecked(settings.limitResultOutput);
|
|
m_ui.autoScrollCB->setChecked(settings.autoScroll);
|
|
m_ui.alwaysParseCB->setChecked(settings.alwaysParse);
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
TestSettings TestSettingsWidget::settings() const
|
|
{
|
|
TestSettings result;
|
|
result.timeout = m_ui.timeoutSpin->value() * 1000; // we display seconds
|
|
result.omitInternalMssg = m_ui.omitInternalMsgCB->isChecked();
|
|
result.omitRunConfigWarn = m_ui.omitRunConfigWarnCB->isChecked();
|
|
result.limitResultOutput = m_ui.limitResultOutputCB->isChecked();
|
|
result.autoScroll = m_ui.autoScrollCB->isChecked();
|
|
result.alwaysParse = m_ui.alwaysParseCB->isChecked();
|
|
|
|
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;
|
|
|
|
return result;
|
|
}
|
|
|
|
TestSettingsPage::TestSettingsPage(const QSharedPointer<TestSettings> &settings)
|
|
: m_settings(settings), m_widget(0)
|
|
{
|
|
setId("A.AutoTest.General");
|
|
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) {
|
|
*m_settings = newSettings;
|
|
m_settings->toSettings(Core::ICore::settings());
|
|
if (m_settings->alwaysParse)
|
|
TestTreeModel::instance()->enableParsingFromSettings();
|
|
else
|
|
TestTreeModel::instance()->disableParsingFromSettings();
|
|
}
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|