Files
qt-creator/tests/auto/tracing/flamegraph/tst_flamegraph.cpp
Ulf Hermann 734611131d Move Timeline and FlameGraph into a common "Tracing" library
This allows us to share code between the two, in particular the QML code
for the Details window, and the theme code. This way we can potentially
deduplicate some code.

Change-Id: I3a0d26b18488bd2a46b5b077b5b5d79ac2dfc5ce
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2018-05-04 14:08:47 +00:00

162 lines
4.9 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 <tracing/flamegraph.h>
#include <tracing/flamegraphattached.h>
#include <QObject>
#include <QStandardItemModel>
#include <QQmlComponent>
#include <QQuickItem>
#include <QtTest>
#include <QQuickItem>
class DelegateObject : public QQuickItem
{
Q_OBJECT
};
class DelegateComponent : public QQmlComponent
{
Q_OBJECT
public:
QObject *create(QQmlContext *context) override;
QObject *beginCreate(QQmlContext *) override;
void completeCreate() override;
};
class tst_FlameGraph : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void testRebuild();
void cleanupTestCase();
private:
static const int sizeRole = Qt::UserRole + 1;
static const int dataRole = Qt::UserRole + 2;
FlameGraph::FlameGraph flameGraph;
QStandardItemModel model;
DelegateComponent delegate;
};
void tst_FlameGraph::initTestCase()
{
flameGraph.setDelegate(&delegate);
flameGraph.setModel(&model);
flameGraph.setSizeRole(sizeRole);
flameGraph.setWidth(100);
flameGraph.setHeight(100);
flameGraph.setSizeThreshold(0.01);
QCOMPARE(flameGraph.delegate(), &delegate);
QCOMPARE(flameGraph.model(), &model);
QCOMPARE(flameGraph.sizeRole(), Qt::UserRole + 1);
QCOMPARE(flameGraph.sizeThreshold(), 0.01);
}
void tst_FlameGraph::testRebuild()
{
flameGraph.setModel(nullptr);
qreal sum = 0;
for (int i = 1; i < 10; ++i) {
QStandardItem *item = new QStandardItem;
item->setData(i, sizeRole);
item->setData(100 / i, dataRole);
for (int j = 1; j < i; ++j) {
QStandardItem *item2 = new QStandardItem;
item2->setData(1, sizeRole);
for (int k = 0; k < 10; ++k) {
QStandardItem *skipped = new QStandardItem;
skipped->setData(0.001, sizeRole);
item2->appendRow(skipped);
}
item->appendRow(item2);
}
model.appendRow(item);
sum += i;
}
model.invisibleRootItem()->setData(sum, sizeRole);
flameGraph.setModel(nullptr);
flameGraph.setModel(&model);
QCOMPARE(flameGraph.depth(), 3);
qreal i = 0;
qreal position = 0;
foreach (QQuickItem *child, flameGraph.childItems()) {
FlameGraph::FlameGraphAttached *attached =
FlameGraph::FlameGraph::qmlAttachedProperties(child);
QVERIFY(attached);
QCOMPARE(attached->relativeSize(), (++i) / sum);
QCOMPARE(attached->relativePosition(), position / sum);
QCOMPARE(attached->data(dataRole).toInt(), 100 / static_cast<int>(i));
QVERIFY(attached->isDataValid());
qreal j = 0;
foreach (QQuickItem *grandchild, child->childItems()) {
FlameGraph::FlameGraphAttached *attached2 =
FlameGraph::FlameGraph::qmlAttachedProperties(grandchild);
QVERIFY(attached2);
QCOMPARE(attached2->relativeSize(), 1.0 / i);
QCOMPARE(attached2->relativePosition(), (j++) / i);
QCOMPARE(grandchild->childItems().count(), 1);
FlameGraph::FlameGraphAttached *skipped =
FlameGraph::FlameGraph::qmlAttachedProperties(grandchild->childItems()[0]);
QVERIFY(skipped);
QCOMPARE(skipped->relativePosition(), 0.0);
QCOMPARE(skipped->relativeSize(), 0.001 * 10);
}
position += i;
}
QCOMPARE(i, 9.0);
}
void tst_FlameGraph::cleanupTestCase()
{
}
QObject *DelegateComponent::create(QQmlContext *context)
{
QObject *ret = beginCreate(context);
completeCreate();
return ret;
}
QObject *DelegateComponent::beginCreate(QQmlContext *)
{
return new DelegateObject;
}
void DelegateComponent::completeCreate()
{
}
QTEST_MAIN(tst_FlameGraph)
#include "tst_flamegraph.moc"