forked from qt-creator/qt-creator
Delete unneeded and prepare directory structure...
...to get plugin's repository more easily integrated into QC's repository. Change-Id: I10243bb4283623ae951e799feacaa15915678e04 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
committed by
Eike Ziller
parent
5448e7bab8
commit
15b4e6fc91
581
src/plugins/autotest/testresultspane.cpp
Normal file
581
src/plugins/autotest/testresultspane.cpp
Normal file
@@ -0,0 +1,581 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** 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 "autotestplugin.h"
|
||||
#include "autotesticons.h"
|
||||
#include "testresultspane.h"
|
||||
#include "testresultmodel.h"
|
||||
#include "testresultdelegate.h"
|
||||
#include "testrunner.h"
|
||||
#include "testsettings.h"
|
||||
#include "testtreemodel.h"
|
||||
|
||||
#include <coreplugin/coreconstants.h>
|
||||
#include <coreplugin/coreicons.h>
|
||||
#include <coreplugin/editormanager/editormanager.h>
|
||||
#include <coreplugin/icontext.h>
|
||||
#include <coreplugin/icore.h>
|
||||
|
||||
#include <projectexplorer/projectexplorericons.h>
|
||||
|
||||
#include <texteditor/texteditor.h>
|
||||
|
||||
#include <utils/theme/theme.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QClipboard>
|
||||
#include <QDebug>
|
||||
#include <QFileDialog>
|
||||
#include <QHBoxLayout>
|
||||
#include <QMenu>
|
||||
#include <QMessageBox>
|
||||
#include <QScrollBar>
|
||||
#include <QToolButton>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
namespace Autotest {
|
||||
namespace Internal {
|
||||
|
||||
ResultsTreeView::ResultsTreeView(QWidget *parent)
|
||||
: Utils::TreeView(parent)
|
||||
{
|
||||
setAttribute(Qt::WA_MacShowFocusRect, false);
|
||||
}
|
||||
|
||||
void ResultsTreeView::keyPressEvent(QKeyEvent *event)
|
||||
{
|
||||
if (event->matches(QKeySequence::Copy)) {
|
||||
emit copyShortcutTriggered();
|
||||
event->accept();
|
||||
}
|
||||
TreeView::keyPressEvent(event);
|
||||
}
|
||||
|
||||
TestResultsPane::TestResultsPane(QObject *parent) :
|
||||
Core::IOutputPane(parent),
|
||||
m_context(new Core::IContext(this)),
|
||||
m_wasVisibleBefore(false),
|
||||
m_autoScroll(false),
|
||||
m_testRunning(false)
|
||||
{
|
||||
m_outputWidget = new QWidget;
|
||||
QVBoxLayout *outputLayout = new QVBoxLayout;
|
||||
outputLayout->setMargin(0);
|
||||
outputLayout->setSpacing(0);
|
||||
m_outputWidget->setLayout(outputLayout);
|
||||
|
||||
QPalette pal;
|
||||
pal.setColor(QPalette::Window,
|
||||
Utils::creatorTheme()->color(Utils::Theme::InfoBarBackground));
|
||||
pal.setColor(QPalette::WindowText,
|
||||
Utils::creatorTheme()->color(Utils::Theme::InfoBarText));
|
||||
m_summaryWidget = new QFrame;
|
||||
m_summaryWidget->setPalette(pal);
|
||||
m_summaryWidget->setAutoFillBackground(true);
|
||||
QHBoxLayout *layout = new QHBoxLayout;
|
||||
layout->setMargin(6);
|
||||
m_summaryWidget->setLayout(layout);
|
||||
m_summaryLabel = new QLabel;
|
||||
m_summaryLabel->setPalette(pal);
|
||||
layout->addWidget(m_summaryLabel);
|
||||
m_summaryWidget->setVisible(false);
|
||||
|
||||
outputLayout->addWidget(m_summaryWidget);
|
||||
|
||||
m_treeView = new ResultsTreeView(m_outputWidget);
|
||||
m_treeView->setHeaderHidden(true);
|
||||
m_treeView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
|
||||
m_treeView->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
m_model = new TestResultModel(this);
|
||||
m_filterModel = new TestResultFilterModel(m_model, this);
|
||||
m_filterModel->setDynamicSortFilter(true);
|
||||
m_treeView->setModel(m_filterModel);
|
||||
TestResultDelegate *trd = new TestResultDelegate(this);
|
||||
m_treeView->setItemDelegate(trd);
|
||||
|
||||
outputLayout->addWidget(m_treeView);
|
||||
|
||||
createToolButtons();
|
||||
|
||||
connect(m_treeView, &Utils::TreeView::activated, this, &TestResultsPane::onItemActivated);
|
||||
connect(m_treeView->selectionModel(), &QItemSelectionModel::currentChanged,
|
||||
trd, &TestResultDelegate::currentChanged);
|
||||
connect(m_treeView, &Utils::TreeView::customContextMenuRequested,
|
||||
this, &TestResultsPane::onCustomContextMenuRequested);
|
||||
connect(m_treeView, &ResultsTreeView::copyShortcutTriggered, [this] () {
|
||||
onCopyItemTriggered(m_treeView->currentIndex());
|
||||
});
|
||||
connect(m_model, &TestResultModel::requestExpansion, [this] (QModelIndex idx) {
|
||||
m_treeView->expand(m_filterModel->mapFromSource(idx));
|
||||
});
|
||||
connect(TestRunner::instance(), &TestRunner::testRunStarted,
|
||||
this, &TestResultsPane::onTestRunStarted);
|
||||
connect(TestRunner::instance(), &TestRunner::testRunFinished,
|
||||
this, &TestResultsPane::onTestRunFinished);
|
||||
connect(TestRunner::instance(), &TestRunner::testResultReady,
|
||||
this, &TestResultsPane::addTestResult);
|
||||
}
|
||||
|
||||
void TestResultsPane::createToolButtons()
|
||||
{
|
||||
m_expandCollapse = new QToolButton(m_treeView);
|
||||
m_expandCollapse->setIcon(Core::Icons::EXPAND.icon());
|
||||
m_expandCollapse->setToolTip(tr("Expand All"));
|
||||
m_expandCollapse->setCheckable(true);
|
||||
m_expandCollapse->setChecked(false);
|
||||
connect(m_expandCollapse, &QToolButton::clicked, [this] (bool checked) {
|
||||
if (checked)
|
||||
m_treeView->expandAll();
|
||||
else
|
||||
m_treeView->collapseAll();
|
||||
});
|
||||
|
||||
m_runAll = new QToolButton(m_treeView);
|
||||
m_runAll->setIcon(ProjectExplorer::Icons::RUN_SMALL.icon());
|
||||
m_runAll->setToolTip(tr("Run All Tests"));
|
||||
m_runAll->setEnabled(false);
|
||||
connect(m_runAll, &QToolButton::clicked, this, &TestResultsPane::onRunAllTriggered);
|
||||
|
||||
m_runSelected = new QToolButton(m_treeView);
|
||||
Utils::Icon runSelectedIcon = ProjectExplorer::Icons::RUN_SMALL;
|
||||
foreach (const Utils::IconMaskAndColor &maskAndColor, Icons::RUN_SELECTED_OVERLAY)
|
||||
runSelectedIcon.append(maskAndColor);
|
||||
m_runSelected->setIcon(runSelectedIcon.icon());
|
||||
m_runSelected->setToolTip(tr("Run Selected Tests"));
|
||||
m_runSelected->setEnabled(false);
|
||||
connect(m_runSelected, &QToolButton::clicked, this, &TestResultsPane::onRunSelectedTriggered);
|
||||
|
||||
m_stopTestRun = new QToolButton(m_treeView);
|
||||
m_stopTestRun->setIcon(ProjectExplorer::Icons::STOP_SMALL.icon());
|
||||
m_stopTestRun->setToolTip(tr("Stop Test Run"));
|
||||
m_stopTestRun->setEnabled(false);
|
||||
connect(m_stopTestRun, &QToolButton::clicked, TestRunner::instance(), &TestRunner::requestStopTestRun);
|
||||
|
||||
m_filterButton = new QToolButton(m_treeView);
|
||||
m_filterButton->setIcon(Core::Icons::FILTER.icon());
|
||||
m_filterButton->setToolTip(tr("Filter Test Results"));
|
||||
m_filterButton->setProperty("noArrow", true);
|
||||
m_filterButton->setAutoRaise(true);
|
||||
m_filterButton->setPopupMode(QToolButton::InstantPopup);
|
||||
m_filterMenu = new QMenu(m_filterButton);
|
||||
initializeFilterMenu();
|
||||
connect(m_filterMenu, &QMenu::triggered, this, &TestResultsPane::filterMenuTriggered);
|
||||
m_filterButton->setMenu(m_filterMenu);
|
||||
}
|
||||
|
||||
static TestResultsPane *m_instance = 0;
|
||||
|
||||
TestResultsPane *TestResultsPane::instance()
|
||||
{
|
||||
if (!m_instance)
|
||||
m_instance = new TestResultsPane;
|
||||
return m_instance;
|
||||
}
|
||||
|
||||
TestResultsPane::~TestResultsPane()
|
||||
{
|
||||
delete m_treeView;
|
||||
m_instance = 0;
|
||||
}
|
||||
|
||||
void TestResultsPane::addTestResult(TestResult *result)
|
||||
{
|
||||
const QScrollBar *scrollBar = m_treeView->verticalScrollBar();
|
||||
m_atEnd = scrollBar ? scrollBar->value() == scrollBar->maximum() : true;
|
||||
|
||||
m_model->addTestResult(result, m_expandCollapse->isChecked());
|
||||
if (!m_treeView->isVisible())
|
||||
popup(Core::IOutputPane::NoModeSwitch);
|
||||
flash();
|
||||
navigateStateChanged();
|
||||
}
|
||||
|
||||
QWidget *TestResultsPane::outputWidget(QWidget *parent)
|
||||
{
|
||||
if (m_outputWidget) {
|
||||
m_outputWidget->setParent(parent);
|
||||
} else {
|
||||
qDebug() << "This should not happen...";
|
||||
}
|
||||
return m_outputWidget;
|
||||
}
|
||||
|
||||
QList<QWidget *> TestResultsPane::toolBarWidgets() const
|
||||
{
|
||||
return QList<QWidget *>() << m_expandCollapse << m_runAll << m_runSelected << m_stopTestRun
|
||||
<< m_filterButton;
|
||||
}
|
||||
|
||||
QString TestResultsPane::displayName() const
|
||||
{
|
||||
return tr("Test Results");
|
||||
}
|
||||
|
||||
int TestResultsPane::priorityInStatusBar() const
|
||||
{
|
||||
return -666;
|
||||
}
|
||||
|
||||
void TestResultsPane::clearContents()
|
||||
{
|
||||
m_filterModel->clearTestResults();
|
||||
navigateStateChanged();
|
||||
m_summaryWidget->setVisible(false);
|
||||
m_autoScroll = AutotestPlugin::instance()->settings()->autoScroll;
|
||||
connect(m_treeView->verticalScrollBar(), &QScrollBar::rangeChanged,
|
||||
this, &TestResultsPane::onScrollBarRangeChanged, Qt::UniqueConnection);
|
||||
}
|
||||
|
||||
void TestResultsPane::visibilityChanged(bool visible)
|
||||
{
|
||||
if (visible == m_wasVisibleBefore)
|
||||
return;
|
||||
if (visible) {
|
||||
connect(TestTreeModel::instance(), &TestTreeModel::testTreeModelChanged,
|
||||
this, &TestResultsPane::onTestTreeModelChanged);
|
||||
// make sure run/run all are in correct state
|
||||
onTestTreeModelChanged();
|
||||
TestTreeModel::instance()->enableParsing();
|
||||
} else {
|
||||
disconnect(TestTreeModel::instance(), &TestTreeModel::testTreeModelChanged,
|
||||
this, &TestResultsPane::onTestTreeModelChanged);
|
||||
TestTreeModel::instance()->disableParsing();
|
||||
}
|
||||
m_wasVisibleBefore = visible;
|
||||
}
|
||||
|
||||
void TestResultsPane::setFocus()
|
||||
{
|
||||
}
|
||||
|
||||
bool TestResultsPane::hasFocus() const
|
||||
{
|
||||
return m_treeView->hasFocus();
|
||||
}
|
||||
|
||||
bool TestResultsPane::canFocus() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TestResultsPane::canNavigate() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool TestResultsPane::canNext() const
|
||||
{
|
||||
return m_filterModel->hasResults();
|
||||
}
|
||||
|
||||
bool TestResultsPane::canPrevious() const
|
||||
{
|
||||
return m_filterModel->hasResults();
|
||||
}
|
||||
|
||||
void TestResultsPane::goToNext()
|
||||
{
|
||||
if (!canNext())
|
||||
return;
|
||||
|
||||
const QModelIndex currentIndex = m_treeView->currentIndex();
|
||||
QModelIndex nextCurrentIndex;
|
||||
|
||||
if (currentIndex.isValid()) {
|
||||
// try to set next to first child or next sibling
|
||||
if (m_filterModel->rowCount(currentIndex)) {
|
||||
nextCurrentIndex = currentIndex.child(0, 0);
|
||||
} else {
|
||||
nextCurrentIndex = currentIndex.sibling(currentIndex.row() + 1, 0);
|
||||
// if it had no sibling check siblings of parent (and grandparents if necessary)
|
||||
if (!nextCurrentIndex.isValid()) {
|
||||
|
||||
QModelIndex parent = currentIndex.parent();
|
||||
do {
|
||||
if (!parent.isValid())
|
||||
break;
|
||||
nextCurrentIndex = parent.sibling(parent.row() + 1, 0);
|
||||
parent = parent.parent();
|
||||
} while (!nextCurrentIndex.isValid());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// if we have no current or could not find a next one, use the first item of the whole tree
|
||||
if (!nextCurrentIndex.isValid()) {
|
||||
Utils::TreeItem *rootItem = m_model->itemForIndex(QModelIndex());
|
||||
// if the tree does not contain any item - don't do anything
|
||||
if (!rootItem || !rootItem->childCount())
|
||||
return;
|
||||
|
||||
nextCurrentIndex = m_filterModel->mapFromSource(m_model->indexForItem(rootItem->child(0)));
|
||||
}
|
||||
|
||||
m_treeView->setCurrentIndex(nextCurrentIndex);
|
||||
onItemActivated(nextCurrentIndex);
|
||||
}
|
||||
|
||||
void TestResultsPane::goToPrev()
|
||||
{
|
||||
if (!canPrevious())
|
||||
return;
|
||||
|
||||
const QModelIndex currentIndex = m_treeView->currentIndex();
|
||||
QModelIndex nextCurrentIndex;
|
||||
|
||||
if (currentIndex.isValid()) {
|
||||
// try to set next to prior sibling or parent
|
||||
if (currentIndex.row() > 0) {
|
||||
nextCurrentIndex = currentIndex.sibling(currentIndex.row() - 1, 0);
|
||||
// if the sibling has children, use the last one
|
||||
while (int rowCount = m_filterModel->rowCount(nextCurrentIndex))
|
||||
nextCurrentIndex = nextCurrentIndex.child(rowCount - 1, 0);
|
||||
} else {
|
||||
nextCurrentIndex = currentIndex.parent();
|
||||
}
|
||||
}
|
||||
|
||||
// if we have no current or didn't find a sibling/parent use the last item of the whole tree
|
||||
if (!nextCurrentIndex.isValid()) {
|
||||
const QModelIndex rootIdx = m_filterModel->index(0, 0);
|
||||
// if the tree does not contain any item - don't do anything
|
||||
if (!rootIdx.isValid())
|
||||
return;
|
||||
|
||||
// get the last (visible) top level index
|
||||
nextCurrentIndex = m_filterModel->index(m_filterModel->rowCount(QModelIndex()) - 1, 0);
|
||||
// step through until end
|
||||
while (int rowCount = m_filterModel->rowCount(nextCurrentIndex))
|
||||
nextCurrentIndex = nextCurrentIndex.child(rowCount - 1, 0);
|
||||
}
|
||||
|
||||
m_treeView->setCurrentIndex(nextCurrentIndex);
|
||||
onItemActivated(nextCurrentIndex);
|
||||
}
|
||||
|
||||
void TestResultsPane::onItemActivated(const QModelIndex &index)
|
||||
{
|
||||
if (!index.isValid())
|
||||
return;
|
||||
|
||||
const TestResult tr = m_filterModel->testResult(index);
|
||||
if (!tr.fileName().isEmpty())
|
||||
Core::EditorManager::openEditorAt(tr.fileName(), tr.line(), 0);
|
||||
}
|
||||
|
||||
void TestResultsPane::onRunAllTriggered()
|
||||
{
|
||||
TestRunner *runner = TestRunner::instance();
|
||||
runner->setSelectedTests(TestTreeModel::instance()->getAllTestCases());
|
||||
runner->prepareToRunTests();
|
||||
}
|
||||
|
||||
void TestResultsPane::onRunSelectedTriggered()
|
||||
{
|
||||
TestRunner *runner = TestRunner::instance();
|
||||
runner->setSelectedTests(TestTreeModel::instance()->getSelectedTests());
|
||||
runner->prepareToRunTests();
|
||||
}
|
||||
|
||||
void TestResultsPane::initializeFilterMenu()
|
||||
{
|
||||
const bool omitIntern = AutotestPlugin::instance()->settings()->omitInternalMssg;
|
||||
// FilterModel has all messages enabled by default
|
||||
if (omitIntern)
|
||||
m_filterModel->toggleTestResultType(Result::MessageInternal);
|
||||
|
||||
QMap<Result::Type, QString> textAndType;
|
||||
textAndType.insert(Result::Pass, tr("Pass"));
|
||||
textAndType.insert(Result::Fail, tr("Fail"));
|
||||
textAndType.insert(Result::ExpectedFail, tr("Expected Fail"));
|
||||
textAndType.insert(Result::UnexpectedPass, tr("Unexpected Pass"));
|
||||
textAndType.insert(Result::Skip, tr("Skip"));
|
||||
textAndType.insert(Result::Benchmark, tr("Benchmarks"));
|
||||
textAndType.insert(Result::MessageDebug, tr("Debug Messages"));
|
||||
textAndType.insert(Result::MessageWarn, tr("Warning Messages"));
|
||||
textAndType.insert(Result::MessageInternal, tr("Internal Messages"));
|
||||
foreach (Result::Type result, textAndType.keys()) {
|
||||
QAction *action = new QAction(m_filterMenu);
|
||||
action->setText(textAndType.value(result));
|
||||
action->setCheckable(true);
|
||||
action->setChecked(result != Result::MessageInternal || !omitIntern);
|
||||
action->setData(result);
|
||||
m_filterMenu->addAction(action);
|
||||
}
|
||||
m_filterMenu->addSeparator();
|
||||
QAction *action = new QAction(m_filterMenu);
|
||||
action->setText(tr("Check All Filters"));
|
||||
action->setCheckable(false);
|
||||
m_filterMenu->addAction(action);
|
||||
connect(action, &QAction::triggered, this, &TestResultsPane::enableAllFilter);
|
||||
}
|
||||
|
||||
void TestResultsPane::updateSummaryLabel()
|
||||
{
|
||||
QString labelText = QString::fromLatin1("<p>Test summary: %1 %2, %3 %4")
|
||||
.arg(QString::number(m_model->resultTypeCount(Result::Pass)), tr("passes"),
|
||||
QString::number(m_model->resultTypeCount(Result::Fail)), tr("fails"));
|
||||
int count = m_model->resultTypeCount(Result::UnexpectedPass);
|
||||
if (count)
|
||||
labelText.append(QString::fromLatin1(", %1 %2")
|
||||
.arg(QString::number(count), tr("unexpected passes")));
|
||||
count = m_model->resultTypeCount(Result::ExpectedFail);
|
||||
if (count)
|
||||
labelText.append(QString::fromLatin1(", %1 %2")
|
||||
.arg(QString::number(count), tr("expected fails")));
|
||||
count = m_model->resultTypeCount(Result::MessageFatal);
|
||||
if (count)
|
||||
labelText.append(QString::fromLatin1(", %1 %2")
|
||||
.arg(QString::number(count), tr("fatals")));
|
||||
count = m_model->resultTypeCount(Result::BlacklistedFail)
|
||||
+ m_model->resultTypeCount(Result::BlacklistedPass);
|
||||
if (count)
|
||||
labelText.append(QString::fromLatin1(", %1 %2")
|
||||
.arg(QString::number(count), tr("blacklisted")));
|
||||
|
||||
count = m_model->disabledTests();
|
||||
if (count)
|
||||
labelText.append(tr(", %1 disabled").arg(count));
|
||||
|
||||
labelText.append(QLatin1String(".</p>"));
|
||||
m_summaryLabel->setText(labelText);
|
||||
}
|
||||
|
||||
void TestResultsPane::enableAllFilter()
|
||||
{
|
||||
foreach (QAction *action, m_filterMenu->actions()) {
|
||||
if (action->isCheckable())
|
||||
action->setChecked(true);
|
||||
}
|
||||
m_filterModel->enableAllResultTypes();
|
||||
}
|
||||
|
||||
void TestResultsPane::filterMenuTriggered(QAction *action)
|
||||
{
|
||||
m_filterModel->toggleTestResultType(TestResult::toResultType(action->data().value<int>()));
|
||||
navigateStateChanged();
|
||||
}
|
||||
|
||||
void TestResultsPane::onTestRunStarted()
|
||||
{
|
||||
m_testRunning = true;
|
||||
m_stopTestRun->setEnabled(true);
|
||||
m_runAll->setEnabled(false);
|
||||
m_runSelected->setEnabled(false);
|
||||
m_summaryWidget->setVisible(false);
|
||||
}
|
||||
|
||||
void TestResultsPane::onTestRunFinished()
|
||||
{
|
||||
m_testRunning = false;
|
||||
m_stopTestRun->setEnabled(false);
|
||||
m_runAll->setEnabled(true);
|
||||
m_runSelected->setEnabled(true);
|
||||
updateSummaryLabel();
|
||||
m_summaryWidget->setVisible(true);
|
||||
m_model->removeCurrentTestMessage();
|
||||
disconnect(m_treeView->verticalScrollBar(), &QScrollBar::rangeChanged,
|
||||
this, &TestResultsPane::onScrollBarRangeChanged);
|
||||
}
|
||||
|
||||
void TestResultsPane::onScrollBarRangeChanged(int, int max)
|
||||
{
|
||||
if (m_autoScroll && m_atEnd)
|
||||
m_treeView->verticalScrollBar()->setValue(max);
|
||||
}
|
||||
|
||||
void TestResultsPane::onTestTreeModelChanged()
|
||||
{
|
||||
const bool enable = TestTreeModel::instance()->hasTests();
|
||||
m_runAll->setEnabled(enable);
|
||||
m_runSelected->setEnabled(enable);
|
||||
}
|
||||
|
||||
void TestResultsPane::onCustomContextMenuRequested(const QPoint &pos)
|
||||
{
|
||||
const bool resultsAvailable = m_filterModel->hasResults();
|
||||
const bool enabled = !m_testRunning && resultsAvailable;
|
||||
const QModelIndex clicked = m_treeView->indexAt(pos);
|
||||
QMenu menu;
|
||||
QAction *action = new QAction(tr("Copy"), &menu);
|
||||
action->setShortcut(QKeySequence(QKeySequence::Copy));
|
||||
action->setEnabled(resultsAvailable);
|
||||
connect(action, &QAction::triggered, [this, clicked] () {
|
||||
onCopyItemTriggered(clicked);
|
||||
});
|
||||
menu.addAction(action);
|
||||
|
||||
action = new QAction(tr("Copy All"), &menu);
|
||||
action->setEnabled(enabled);
|
||||
connect(action, &QAction::triggered, this, &TestResultsPane::onCopyWholeTriggered);
|
||||
menu.addAction(action);
|
||||
|
||||
action = new QAction(tr("Save Output to File..."), &menu);
|
||||
action->setEnabled(enabled);
|
||||
connect(action, &QAction::triggered, this, &TestResultsPane::onSaveWholeTriggered);
|
||||
menu.addAction(action);
|
||||
|
||||
menu.exec(m_treeView->mapToGlobal(pos));
|
||||
}
|
||||
|
||||
void TestResultsPane::onCopyItemTriggered(const QModelIndex &idx)
|
||||
{
|
||||
const TestResult result = m_filterModel->testResult(idx);
|
||||
QApplication::clipboard()->setText(TestResultDelegate::outputString(result, true));
|
||||
}
|
||||
|
||||
void TestResultsPane::onCopyWholeTriggered()
|
||||
{
|
||||
QApplication::clipboard()->setText(getWholeOutput());
|
||||
}
|
||||
|
||||
void TestResultsPane::onSaveWholeTriggered()
|
||||
{
|
||||
const QString fileName = QFileDialog::getSaveFileName(Core::ICore::dialogParent(),
|
||||
tr("Save Output To..."));
|
||||
Utils::FileSaver saver(fileName, QIODevice::Text);
|
||||
if (!saver.write(getWholeOutput().toUtf8()) || !saver.finalize()) {
|
||||
QMessageBox::critical(Core::ICore::dialogParent(), tr("Error"),
|
||||
tr("Failed to write \"%1\".\n\n%2").arg(fileName)
|
||||
.arg(saver.errorString()));
|
||||
}
|
||||
}
|
||||
|
||||
// helper for onCopyWholeTriggered() and onSaveWholeTriggered()
|
||||
QString TestResultsPane::getWholeOutput(const QModelIndex &parent)
|
||||
{
|
||||
QString output;
|
||||
for (int row = 0, count = m_model->rowCount(parent); row < count; ++row) {
|
||||
QModelIndex current = m_model->index(row, 0, parent);
|
||||
const TestResult result = m_model->testResult(current);
|
||||
output.append(TestResult::resultToString(result.result())).append(QLatin1Char('\t'));
|
||||
output.append(TestResultDelegate::outputString(result, true)).append(QLatin1Char('\n'));
|
||||
output.append(getWholeOutput(current));
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Autotest
|
||||
Reference in New Issue
Block a user