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 137 138 139 140 141 142 143
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtTest/QtTest>
#include <QtDataVisualization/QHeightMapSurfaceDataProxy>
class tst_proxy: public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
void construct();
void initialProperties();
void initializeProperties();
void invalidProperties();
private:
QHeightMapSurfaceDataProxy *m_proxy;
};
void tst_proxy::initTestCase()
{
}
void tst_proxy::cleanupTestCase()
{
}
void tst_proxy::init()
{
m_proxy = new QHeightMapSurfaceDataProxy();
}
void tst_proxy::cleanup()
{
delete m_proxy;
}
void tst_proxy::construct()
{
QHeightMapSurfaceDataProxy *proxy = new QHeightMapSurfaceDataProxy();
QVERIFY(proxy);
delete proxy;
QImage image(QSize(10, 10), QImage::Format_ARGB32);
image.fill(0);
proxy = new QHeightMapSurfaceDataProxy(image);
QCoreApplication::processEvents();
QVERIFY(proxy);
QCoreApplication::processEvents();
QCOMPARE(proxy->columnCount(), 10);
QCOMPARE(proxy->rowCount(), 10);
delete proxy;
proxy = new QHeightMapSurfaceDataProxy(":/customtexture.jpg");
QCoreApplication::processEvents();
QVERIFY(proxy);
QCoreApplication::processEvents();
QCOMPARE(proxy->columnCount(), 24);
QCOMPARE(proxy->rowCount(), 24);
delete proxy;
}
void tst_proxy::initialProperties()
{
QVERIFY(m_proxy);
QCOMPARE(m_proxy->heightMap(), QImage());
QCOMPARE(m_proxy->heightMapFile(), QString(""));
QCOMPARE(m_proxy->maxXValue(), 10.0f);
QCOMPARE(m_proxy->maxZValue(), 10.0f);
QCOMPARE(m_proxy->minXValue(), 0.0f);
QCOMPARE(m_proxy->minZValue(), 0.0f);
QCOMPARE(m_proxy->columnCount(), 0);
QCOMPARE(m_proxy->rowCount(), 0);
QVERIFY(!m_proxy->series());
QCOMPARE(m_proxy->type(), QAbstractDataProxy::DataTypeSurface);
}
void tst_proxy::initializeProperties()
{
QVERIFY(m_proxy);
m_proxy->setHeightMapFile(":/customtexture.jpg");
m_proxy->setMaxXValue(11.0f);
m_proxy->setMaxZValue(11.0f);
m_proxy->setMinXValue(-10.0f);
m_proxy->setMinZValue(-10.0f);
QCoreApplication::processEvents();
QCOMPARE(m_proxy->heightMapFile(), QString(":/customtexture.jpg"));
QCOMPARE(m_proxy->maxXValue(), 11.0f);
QCOMPARE(m_proxy->maxZValue(), 11.0f);
QCOMPARE(m_proxy->minXValue(), -10.0f);
QCOMPARE(m_proxy->minZValue(), -10.0f);
QCOMPARE(m_proxy->columnCount(), 24);
QCOMPARE(m_proxy->rowCount(), 24);
m_proxy->setHeightMapFile("");
QCoreApplication::processEvents();
QCOMPARE(m_proxy->columnCount(), 0);
QCOMPARE(m_proxy->rowCount(), 0);
m_proxy->setHeightMap(QImage(":/customtexture.jpg"));
QCoreApplication::processEvents();
QCOMPARE(m_proxy->columnCount(), 24);
QCOMPARE(m_proxy->rowCount(), 24);
}
void tst_proxy::invalidProperties()
{
m_proxy->setMaxXValue(-10.0f);
m_proxy->setMaxZValue(-10.0f);
QCOMPARE(m_proxy->maxXValue(), -10.0f);
QCOMPARE(m_proxy->maxZValue(), -10.0f);
QCOMPARE(m_proxy->minXValue(), -11.0f);
QCOMPARE(m_proxy->minZValue(), -11.0f);
m_proxy->setMinXValue(10.0f);
m_proxy->setMinZValue(10.0f);
QCOMPARE(m_proxy->maxXValue(), 11.0f);
QCOMPARE(m_proxy->maxZValue(), 11.0f);
QCOMPARE(m_proxy->minXValue(), 10.0f);
QCOMPARE(m_proxy->minZValue(), 10.0f);
}
QTEST_MAIN(tst_proxy)
#include "tst_proxy.moc"
|