2014-10-07 15:51:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-10-07 15:51:02 +02:00
|
|
|
**
|
2016-01-22 10:37:55 +01:00
|
|
|
** This file is part of Qt Creator.
|
2014-10-07 15:51:02 +02: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-10-07 15:51:02 +02: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-10-07 15:51:02 +02: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-10-07 15:51:02 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "testresultmodel.h"
|
|
|
|
|
|
|
|
|
|
#include <QFontMetrics>
|
|
|
|
|
#include <QIcon>
|
|
|
|
|
|
|
|
|
|
namespace Autotest {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
/********************************* TestResultItem ******************************************/
|
2014-10-07 15:51:02 +02:00
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
TestResultItem::TestResultItem(TestResult *testResult)
|
|
|
|
|
: m_testResult(testResult)
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
TestResultItem::~TestResultItem()
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
delete m_testResult;
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-01-08 13:46:28 +01:00
|
|
|
static QIcon testResultIcon(Result::Type result) {
|
2014-12-01 16:12:05 +01:00
|
|
|
static QIcon icons[11] = {
|
2014-10-07 15:51:02 +02:00
|
|
|
QIcon(QLatin1String(":/images/pass.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/fail.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/xfail.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/xpass.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/skip.png")),
|
2014-12-01 11:42:28 +01:00
|
|
|
QIcon(QLatin1String(":/images/blacklisted_pass.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/blacklisted_fail.png")),
|
2014-12-01 16:12:05 +01:00
|
|
|
QIcon(QLatin1String(":/images/benchmark.png")),
|
2014-10-07 15:51:02 +02:00
|
|
|
QIcon(QLatin1String(":/images/debug.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/warn.png")),
|
|
|
|
|
QIcon(QLatin1String(":/images/fatal.png")),
|
2014-10-21 13:10:37 +02:00
|
|
|
}; // provide an icon for unknown??
|
2014-10-07 15:51:02 +02:00
|
|
|
|
2015-12-07 08:26:54 +01:00
|
|
|
if (result < 0 || result >= Result::MessageInternal) {
|
2015-08-20 15:59:15 +02:00
|
|
|
switch (result) {
|
2015-12-07 08:26:54 +01:00
|
|
|
case Result::MessageTestCaseSuccess:
|
|
|
|
|
return icons[Result::Pass];
|
|
|
|
|
case Result::MessageTestCaseFail:
|
|
|
|
|
return icons[Result::Fail];
|
|
|
|
|
case Result::MessageTestCaseWarn:
|
|
|
|
|
return icons[Result::MessageWarn];
|
2015-08-20 15:59:15 +02:00
|
|
|
default:
|
|
|
|
|
return QIcon();
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-10-07 15:51:02 +02:00
|
|
|
return icons[result];
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
QVariant TestResultItem::data(int column, int role) const
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
if (role == Qt::DecorationRole)
|
|
|
|
|
return m_testResult ? testResultIcon(m_testResult->result()) : QVariant();
|
|
|
|
|
|
|
|
|
|
return Utils::TreeItem::data(column, role);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestResultItem::updateDescription(const QString &description)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_testResult, return);
|
|
|
|
|
|
|
|
|
|
m_testResult->setDescription(description);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestResultItem::updateResult()
|
|
|
|
|
{
|
2015-12-07 08:26:54 +01:00
|
|
|
if (m_testResult->result() != Result::MessageTestCaseStart)
|
2015-08-20 15:59:15 +02:00
|
|
|
return;
|
|
|
|
|
|
2015-12-07 08:26:54 +01:00
|
|
|
Result::Type newResult = Result::MessageTestCaseSuccess;
|
2015-08-20 15:59:15 +02:00
|
|
|
foreach (Utils::TreeItem *child, children()) {
|
|
|
|
|
const TestResult *current = static_cast<TestResultItem *>(child)->testResult();
|
|
|
|
|
if (current) {
|
|
|
|
|
switch (current->result()) {
|
2015-12-07 08:26:54 +01:00
|
|
|
case Result::Fail:
|
|
|
|
|
case Result::MessageFatal:
|
|
|
|
|
case Result::UnexpectedPass:
|
|
|
|
|
m_testResult->setResult(Result::MessageTestCaseFail);
|
2015-08-20 15:59:15 +02:00
|
|
|
return;
|
2015-12-07 08:26:54 +01:00
|
|
|
case Result::ExpectedFail:
|
|
|
|
|
case Result::MessageWarn:
|
|
|
|
|
case Result::Skip:
|
|
|
|
|
case Result::BlacklistedFail:
|
|
|
|
|
case Result::BlacklistedPass:
|
|
|
|
|
newResult = Result::MessageTestCaseWarn;
|
2015-08-20 15:59:15 +02:00
|
|
|
break;
|
|
|
|
|
default: {}
|
|
|
|
|
}
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
2015-08-20 15:59:15 +02:00
|
|
|
m_testResult->setResult(newResult);
|
|
|
|
|
}
|
2014-10-07 15:51:02 +02:00
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
/********************************* TestResultModel *****************************************/
|
|
|
|
|
|
|
|
|
|
TestResultModel::TestResultModel(QObject *parent)
|
|
|
|
|
: Utils::TreeModel(parent),
|
|
|
|
|
m_widthOfLineNumber(0),
|
2015-12-14 12:48:58 +01:00
|
|
|
m_maxWidthOfFileName(0),
|
|
|
|
|
m_disabled(0)
|
2015-08-20 15:59:15 +02:00
|
|
|
{
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
QVariant TestResultModel::data(const QModelIndex &idx, int role) const
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
if (!idx.isValid())
|
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
|
|
if (role == Qt::DecorationRole)
|
|
|
|
|
return itemForIndex(idx)->data(0, Qt::DecorationRole);
|
|
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
2014-12-05 14:01:16 +01:00
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
void TestResultModel::addTestResult(TestResult *testResult, bool autoExpand)
|
|
|
|
|
{
|
2015-12-07 08:26:54 +01:00
|
|
|
const bool isCurrentTestMssg = testResult->result() == Result::MessageCurrentTest;
|
2014-12-05 14:01:16 +01:00
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
QVector<Utils::TreeItem *> topLevelItems = rootItem()->children();
|
|
|
|
|
int lastRow = topLevelItems.size() - 1;
|
|
|
|
|
// we'll add the new item, so raising it's counter
|
|
|
|
|
if (!isCurrentTestMssg) {
|
|
|
|
|
int count = m_testResultCount.value(testResult->result(), 0);
|
2015-12-14 12:48:58 +01:00
|
|
|
if (testResult->result() == Result::MessageDisabledTests)
|
|
|
|
|
m_disabled += testResult->line();
|
2015-08-20 15:59:15 +02:00
|
|
|
m_testResultCount.insert(testResult->result(), ++count);
|
2014-12-05 14:01:16 +01:00
|
|
|
} else {
|
2015-12-07 08:26:54 +01:00
|
|
|
// MessageCurrentTest should always be the last top level item
|
2015-08-20 15:59:15 +02:00
|
|
|
if (lastRow >= 0) {
|
|
|
|
|
TestResultItem *current = static_cast<TestResultItem *>(topLevelItems.at(lastRow));
|
|
|
|
|
const TestResult *result = current->testResult();
|
2015-12-07 08:26:54 +01:00
|
|
|
if (result && result->result() == Result::MessageCurrentTest) {
|
2015-08-20 15:59:15 +02:00
|
|
|
current->updateDescription(testResult->description());
|
|
|
|
|
emit dataChanged(current->index(), current->index());
|
2015-12-09 07:52:15 +01:00
|
|
|
delete testResult;
|
2015-08-20 15:59:15 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-09 07:52:15 +01:00
|
|
|
rootItem()->appendChild(new TestResultItem(testResult));
|
2015-08-20 15:59:15 +02:00
|
|
|
return;
|
2014-12-05 14:01:16 +01:00
|
|
|
}
|
|
|
|
|
|
2015-12-09 07:52:15 +01:00
|
|
|
TestResultItem *newItem = new TestResultItem(testResult);
|
2015-08-20 15:59:15 +02:00
|
|
|
// FIXME this might be totally wrong... we need some more unique information!
|
2015-12-09 09:46:33 +01:00
|
|
|
if (!testResult->className().isEmpty()) {
|
|
|
|
|
for (int row = lastRow; row >= 0; --row) {
|
|
|
|
|
TestResultItem *current = static_cast<TestResultItem *>(topLevelItems.at(row));
|
|
|
|
|
const TestResult *result = current->testResult();
|
|
|
|
|
if (result && result->className() == testResult->className()) {
|
|
|
|
|
current->appendChild(newItem);
|
|
|
|
|
if (autoExpand)
|
|
|
|
|
current->expand();
|
|
|
|
|
if (testResult->result() == Result::MessageTestCaseEnd) {
|
|
|
|
|
current->updateResult();
|
|
|
|
|
emit dataChanged(current->index(), current->index());
|
|
|
|
|
}
|
|
|
|
|
return;
|
2015-08-20 15:59:15 +02:00
|
|
|
}
|
|
|
|
|
}
|
2014-12-05 14:01:16 +01:00
|
|
|
}
|
2015-12-07 08:26:54 +01:00
|
|
|
// if we have a MessageCurrentTest present, add the new top level item before it
|
2015-08-20 15:59:15 +02:00
|
|
|
if (lastRow >= 0) {
|
|
|
|
|
TestResultItem *current = static_cast<TestResultItem *>(topLevelItems.at(lastRow));
|
|
|
|
|
const TestResult *result = current->testResult();
|
2015-12-07 08:26:54 +01:00
|
|
|
if (result && result->result() == Result::MessageCurrentTest) {
|
2015-08-20 15:59:15 +02:00
|
|
|
rootItem()->insertChild(current->index().row(), newItem);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rootItem()->appendChild(newItem);
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
2014-12-05 14:01:16 +01:00
|
|
|
void TestResultModel::removeCurrentTestMessage()
|
|
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
QVector<Utils::TreeItem *> topLevelItems = rootItem()->children();
|
|
|
|
|
for (int row = topLevelItems.size() - 1; row >= 0; --row) {
|
|
|
|
|
TestResultItem *current = static_cast<TestResultItem *>(topLevelItems.at(row));
|
2015-12-07 08:26:54 +01:00
|
|
|
if (current->testResult()->result() == Result::MessageCurrentTest) {
|
2015-08-20 15:59:15 +02:00
|
|
|
delete takeItem(current);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2014-12-05 14:01:16 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
void TestResultModel::clearTestResults()
|
|
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
clear();
|
2014-11-05 15:27:49 +01:00
|
|
|
m_testResultCount.clear();
|
2015-12-14 12:48:58 +01:00
|
|
|
m_disabled = 0;
|
2015-08-20 15:59:15 +02:00
|
|
|
m_processedIndices.clear();
|
2014-10-21 13:10:37 +02:00
|
|
|
m_maxWidthOfFileName = 0;
|
|
|
|
|
m_widthOfLineNumber = 0;
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-20 15:59:15 +02:00
|
|
|
TestResult TestResultModel::testResult(const QModelIndex &idx)
|
2014-10-07 15:51:02 +02:00
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
if (idx.isValid())
|
|
|
|
|
return *(static_cast<TestResultItem *>(itemForIndex(idx))->testResult());
|
|
|
|
|
|
|
|
|
|
return TestResult();
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int TestResultModel::maxWidthOfFileName(const QFont &font)
|
|
|
|
|
{
|
2015-08-20 15:59:15 +02:00
|
|
|
if (font != m_measurementFont) {
|
|
|
|
|
m_processedIndices.clear();
|
|
|
|
|
m_maxWidthOfFileName = 0;
|
|
|
|
|
m_measurementFont = font;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QFontMetrics fm(font);
|
|
|
|
|
const QVector<Utils::TreeItem *> &topLevelItems = rootItem()->children();
|
|
|
|
|
const int count = topLevelItems.size();
|
|
|
|
|
for (int row = 0; row < count; ++row) {
|
|
|
|
|
int processed = row < m_processedIndices.size() ? m_processedIndices.at(row) : 0;
|
|
|
|
|
const QVector<Utils::TreeItem *> &children = topLevelItems.at(row)->children();
|
|
|
|
|
const int itemCount = children.size();
|
|
|
|
|
if (processed < itemCount) {
|
|
|
|
|
for (int childRow = processed; childRow < itemCount; ++childRow) {
|
|
|
|
|
const TestResultItem *item = static_cast<TestResultItem *>(children.at(childRow));
|
|
|
|
|
if (const TestResult *result = item->testResult()) {
|
|
|
|
|
QString fileName = result->fileName();
|
|
|
|
|
const int pos = fileName.lastIndexOf(QLatin1Char('/'));
|
|
|
|
|
if (pos != -1)
|
|
|
|
|
fileName = fileName.mid(pos + 1);
|
|
|
|
|
m_maxWidthOfFileName = qMax(m_maxWidthOfFileName, fm.width(fileName));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (row < m_processedIndices.size())
|
|
|
|
|
m_processedIndices.replace(row, itemCount);
|
|
|
|
|
else
|
|
|
|
|
m_processedIndices.insert(row, itemCount);
|
|
|
|
|
}
|
2014-10-07 15:51:02 +02:00
|
|
|
}
|
|
|
|
|
return m_maxWidthOfFileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int TestResultModel::maxWidthOfLineNumber(const QFont &font)
|
|
|
|
|
{
|
|
|
|
|
if (m_widthOfLineNumber == 0 || font != m_measurementFont) {
|
|
|
|
|
QFontMetrics fm(font);
|
|
|
|
|
m_measurementFont = font;
|
|
|
|
|
m_widthOfLineNumber = fm.width(QLatin1String("88888"));
|
|
|
|
|
}
|
|
|
|
|
return m_widthOfLineNumber;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-21 13:10:37 +02:00
|
|
|
/********************************** Filter Model **********************************/
|
|
|
|
|
|
|
|
|
|
TestResultFilterModel::TestResultFilterModel(TestResultModel *sourceModel, QObject *parent)
|
|
|
|
|
: QSortFilterProxyModel(parent),
|
|
|
|
|
m_sourceModel(sourceModel)
|
|
|
|
|
{
|
|
|
|
|
setSourceModel(sourceModel);
|
|
|
|
|
enableAllResultTypes();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestResultFilterModel::enableAllResultTypes()
|
|
|
|
|
{
|
2015-12-07 08:26:54 +01:00
|
|
|
m_enabled << Result::Pass << Result::Fail << Result::ExpectedFail
|
|
|
|
|
<< Result::UnexpectedPass << Result::Skip << Result::MessageDebug
|
|
|
|
|
<< Result::MessageWarn << Result::MessageInternal
|
|
|
|
|
<< Result::MessageFatal << Result::Invalid << Result::BlacklistedPass
|
|
|
|
|
<< Result::BlacklistedFail << Result::Benchmark
|
|
|
|
|
<< Result::MessageCurrentTest << Result::MessageTestCaseStart
|
|
|
|
|
<< Result::MessageTestCaseSuccess << Result::MessageTestCaseWarn
|
|
|
|
|
<< Result::MessageTestCaseFail << Result::MessageTestCaseEnd;
|
2014-10-21 13:10:37 +02:00
|
|
|
invalidateFilter();
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-08 13:46:28 +01:00
|
|
|
void TestResultFilterModel::toggleTestResultType(Result::Type type)
|
2014-10-21 13:10:37 +02:00
|
|
|
{
|
|
|
|
|
if (m_enabled.contains(type)) {
|
|
|
|
|
m_enabled.remove(type);
|
2015-12-07 08:26:54 +01:00
|
|
|
if (type == Result::MessageInternal)
|
|
|
|
|
m_enabled.remove(Result::MessageTestCaseEnd);
|
2014-10-21 13:10:37 +02:00
|
|
|
} else {
|
|
|
|
|
m_enabled.insert(type);
|
2015-12-07 08:26:54 +01:00
|
|
|
if (type == Result::MessageInternal)
|
|
|
|
|
m_enabled.insert(Result::MessageTestCaseEnd);
|
2014-10-21 13:10:37 +02:00
|
|
|
}
|
|
|
|
|
invalidateFilter();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TestResultFilterModel::clearTestResults()
|
|
|
|
|
{
|
|
|
|
|
m_sourceModel->clearTestResults();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TestResultFilterModel::hasResults()
|
|
|
|
|
{
|
|
|
|
|
return rowCount(QModelIndex());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TestResult TestResultFilterModel::testResult(const QModelIndex &index) const
|
|
|
|
|
{
|
|
|
|
|
return m_sourceModel->testResult(mapToSource(index));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TestResultFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
|
|
|
|
{
|
|
|
|
|
QModelIndex index = m_sourceModel->index(sourceRow, 0, sourceParent);
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return false;
|
|
|
|
|
return m_enabled.contains(m_sourceModel->testResult(index).result());
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-07 15:51:02 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Autotest
|