1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/QtTest>
#include <QtGraphs/QSurface3DSeries>
#include <QtGraphs/QSurfaceDataProxy>
class tst_proxy: public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
void construct();
void initialProperties();
void initializeProperties();
void initialRow();
private:
QSurfaceDataProxy *m_proxy;
QSurface3DSeries *m_series;
};
void tst_proxy::initTestCase()
{
}
void tst_proxy::cleanupTestCase()
{
}
void tst_proxy::init()
{
m_proxy = new QSurfaceDataProxy();
m_series = new QSurface3DSeries(m_proxy);
}
void tst_proxy::cleanup()
{
delete m_series;
m_proxy = 0; // proxy gets deleted with series
}
void tst_proxy::construct()
{
QSurfaceDataProxy *proxy = new QSurfaceDataProxy();
QVERIFY(proxy);
QSurface3DSeries *series = new QSurface3DSeries(proxy);
QVERIFY(series);
delete series;
proxy = 0; // proxy gets deleted with series
}
void tst_proxy::initialProperties()
{
QVERIFY(m_proxy);
QVERIFY(m_series);
QCOMPARE(m_proxy->columnCount(), 0);
QCOMPARE(m_proxy->rowCount(), 0);
QCOMPARE(m_proxy->type(), QAbstractDataProxy::DataType::Surface);
}
void tst_proxy::initializeProperties()
{
QVERIFY(m_proxy);
QVERIFY(m_series);
QSignalSpy rowCountSpy(m_proxy, &QSurfaceDataProxy::rowCountChanged);
QSignalSpy columnCountSpy(m_proxy, &QSurfaceDataProxy::columnCountChanged);
QSignalSpy seriesSpy(m_proxy, &QSurfaceDataProxy::seriesChanged);
QSignalSpy rowsAddedSpy(m_proxy, &QSurfaceDataProxy::rowsAdded);
QSignalSpy rowsChangedSpy(m_proxy, &QSurfaceDataProxy::rowsChanged);
QSignalSpy rowsRemovedSpy(m_proxy, &QSurfaceDataProxy::rowsRemoved);
QSignalSpy rowsInsertedSpy(m_proxy, &QSurfaceDataProxy::rowsInserted);
QSignalSpy itemChangedSpy(m_proxy, &QSurfaceDataProxy::itemChanged);
QSignalSpy arrayResetSpy(m_proxy, &QSurfaceDataProxy::arrayReset);
QSurfaceDataArray data;
QSurfaceDataRow dataRow1;
QSurfaceDataRow dataRow2;
dataRow1 << QSurfaceDataItem(0.0f, 0.1f, 0.5f) << QSurfaceDataItem(1.0f, 0.5f, 0.5f);
dataRow2 << QSurfaceDataItem(0.0f, 1.8f, 1.0f) << QSurfaceDataItem(1.0f, 1.2f, 1.0f);
data << dataRow1 << dataRow2;
m_proxy->resetArray(data);
QCOMPARE(arrayResetSpy.size(), 1);
QCOMPARE(rowCountSpy.size(), 1);
QCOMPARE(columnCountSpy.size(), 1);
QCOMPARE(m_proxy->columnCount(), 2);
QCOMPARE(m_proxy->rowCount(), 2);
QSurfaceDataRow datarow;
datarow << QSurfaceDataItem(0.5f, 0.5f, 0.5f) << QSurfaceDataItem(1.0f, 1.0f, 1.0f);
auto index = m_proxy->addRow(datarow);
QCOMPARE(rowsAddedSpy.size(), 1);
QCOMPARE(rowCountSpy.size(), 2);
m_proxy->removeRows(index, 1);
QCOMPARE(rowsRemovedSpy.size(), 1);
QCOMPARE(rowCountSpy.size(), 3);
QSurfaceDataRow insertRow;
insertRow << QSurfaceDataItem(0.25f, 0.25f, 0.25f) << QSurfaceDataItem(1.0f, 0.8f, 0.25f);
m_proxy->insertRow(1, insertRow);
QCOMPARE(rowsInsertedSpy.size(), 1);
QCOMPARE(rowCountSpy.size(), 4);
}
void tst_proxy::initialRow()
{
QSurfaceDataProxy proxy;
QSurface3DSeries *series = new QSurface3DSeries(&proxy);
Q_UNUSED(series);
QSurfaceDataRow row{QSurfaceDataItem{QVector3D{0, 0, 0}}, QSurfaceDataItem{QVector3D{1, 1, 1}}};
proxy.addRow(QSurfaceDataRow(row));
proxy.addRow(QSurfaceDataRow(row));
}
QTEST_MAIN(tst_proxy)
#include "tst_proxy.moc"
|