forked from qt-creator/qt-creator
According to https://wiki.qt.io/Things_To_Look_Out_For_In_Reviews QSharedPointer impl is poor and it's going to be removed from Qt 7. Move TestParseResultPtr to the common place and don't repeat this typedef. Change-Id: Id8523b7898965ea9bfccb8a1bdc6a8ea23f090ed Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
132 lines
4.3 KiB
C++
132 lines
4.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 "itemdatacache.h"
|
|
#include "testtreeitem.h"
|
|
|
|
#include <utils/id.h>
|
|
#include <utils/treemodel.h>
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
namespace ProjectExplorer { class Target; }
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
class AutotestPluginPrivate;
|
|
class TestCodeParser;
|
|
} // namespace Internal
|
|
|
|
class TestParseResult;
|
|
|
|
class AUTOTESTSHARED_EXPORT TestTreeModel : public Utils::TreeModel<Utils::TreeItem, ITestTreeItem>
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class Internal::AutotestPluginPrivate; // For ctor.
|
|
explicit TestTreeModel(Internal::TestCodeParser *parser);
|
|
|
|
public:
|
|
static TestTreeModel* instance();
|
|
~TestTreeModel() override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
Internal::TestCodeParser *parser() const { return m_parser; }
|
|
bool hasTests() const;
|
|
QList<ITestConfiguration *> getAllTestCases() const;
|
|
QList<ITestConfiguration *> getSelectedTests() const;
|
|
QList<ITestConfiguration *> getFailedTests() const;
|
|
QList<ITestConfiguration *> getTestsForFile(const Utils::FilePath &fileName) const;
|
|
QList<ITestTreeItem *> testItemsByName(const QString &testName);
|
|
void synchronizeTestFrameworks();
|
|
void synchronizeTestTools();
|
|
void rebuild(const QList<Utils::Id> &frameworkIds);
|
|
|
|
void updateCheckStateCache();
|
|
bool hasFailedTests() const;
|
|
void clearFailedMarks();
|
|
#ifdef WITH_TESTS
|
|
int autoTestsCount() const;
|
|
int namedQuickTestsCount() const;
|
|
bool hasUnnamedQuickTests(const ITestTreeItem *rootNode) const;
|
|
int unnamedQuickTestsCount() const;
|
|
ITestTreeItem *unnamedQuickTests() const;
|
|
int dataTagsCount() const;
|
|
int gtestNamesCount() const;
|
|
QMultiMap<QString, int> gtestNamesAndSets() const;
|
|
int boostTestNamesCount() const;
|
|
QMap<QString, int> boostTestSuitesAndTests() const;
|
|
#endif
|
|
|
|
void markAllFrameworkItemsForRemoval();
|
|
void markForRemoval(const QSet<Utils::FilePath> &filePaths);
|
|
void sweep();
|
|
QString report(bool full) const;
|
|
|
|
signals:
|
|
void testTreeModelChanged();
|
|
void updatedActiveFrameworks(int numberOfActiveFrameworks);
|
|
#ifdef WITH_TESTS
|
|
void sweepingDone();
|
|
#endif
|
|
|
|
private:
|
|
void onParseResultsReady(const QList<TestParseResultPtr> &results);
|
|
void onDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight,
|
|
const QVector<int> &roles);
|
|
void handleParseResult(const TestParseResult *result, TestTreeItem *rootNode);
|
|
void removeAllTestItems();
|
|
void removeAllTestToolItems();
|
|
bool sweepChildren(TestTreeItem *item);
|
|
void insertItemInParent(TestTreeItem *item, TestTreeItem *root, bool groupingEnabled);
|
|
void revalidateCheckState(ITestTreeItem *item);
|
|
void setupParsingConnections();
|
|
void filterAndInsert(TestTreeItem *item, TestTreeItem *root, bool groupingEnabled);
|
|
void onTargetChanged(ProjectExplorer::Target *target);
|
|
void onBuildSystemTestsUpdated();
|
|
const QList<TestTreeItem *> frameworkRootNodes() const;
|
|
const QList<ITestTreeItem *> testToolRootNodes() const;
|
|
|
|
Internal::TestCodeParser *m_parser = nullptr;
|
|
Internal::ItemDataCache<Qt::CheckState> *m_checkStateCache = nullptr; // not owned
|
|
Internal::ItemDataCache<bool> m_failedStateCache;
|
|
};
|
|
|
|
namespace Internal {
|
|
|
|
class TestTreeSortFilterModel : public QSortFilterProxyModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum FilterMode {
|
|
Basic,
|
|
ShowInitAndCleanup = 0x01,
|
|
ShowTestData = 0x02,
|
|
ShowAll = ShowInitAndCleanup | ShowTestData
|
|
};
|
|
|
|
explicit TestTreeSortFilterModel(TestTreeModel *sourceModel, QObject *parent = nullptr);
|
|
void setSortMode(ITestTreeItem::SortMode sortMode);
|
|
void toggleFilter(FilterMode filterMode);
|
|
static FilterMode toFilterMode(int f);
|
|
|
|
QString report() const;
|
|
protected:
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const final;
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const final;
|
|
|
|
private:
|
|
Autotest::TestTreeItem::SortMode m_sortMode = Autotest::TestTreeItem::Alphabetically;
|
|
FilterMode m_filterMode = Basic;
|
|
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|