##// END OF EJS Templates
removing old commented code. removing domain parameter from handleseriesadded of pimpl. adding QLegend parameter to marker construction
removing old commented code. removing domain parameter from handleseriesadded of pimpl. adding QLegend parameter to marker construction

File last commit:

r2055:b660f2141c18
r2171:c0bd0c4881b1
Show More
tst_domain.cpp
707 lines | 18.1 KiB | text/x-c | CppLexer
Michal Klocek
Adds tst_qchartview draft
r774 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
Michal Klocek
Removes test_private form qmake, adds chaeck in soruce file of private tests
r1977 #ifndef BUILD_PRIVATE_UNIT_TESTS
#include <QtTest/QtTest>
class tst_Domain: public QObject {
Q_OBJECT
private Q_SLOTS:
void skip();
};
void tst_Domain::skip()
{
Marek Rosa
Qt5: declarative fix part4...
r2055 #ifdef QT5_QUICK_1
QSKIP("This test requires the debug version of library");
#else
Michal Klocek
Removes test_private form qmake, adds chaeck in soruce file of private tests
r1977 QSKIP("This test requires the debug version of library", SkipAll);
Marek Rosa
Qt5: declarative fix part4...
r2055 #endif
Michal Klocek
Removes test_private form qmake, adds chaeck in soruce file of private tests
r1977 }
QTEST_MAIN(tst_Domain)
#include "tst_domain.moc"
#else
Michal Klocek
Adds tst_qchartview draft
r774
Michal Klocek
Refactor domain model...
r439 #include <QtTest/QtTest>
#include <private/domain_p.h>
Michal Klocek
Refactors Domain and Axis...
r1698 #include <private/qabstractaxis_p.h>
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #include <tst_definitions.h>
Michal Klocek
Refactor domain model...
r439
QTCOMMERCIALCHART_USE_NAMESPACE
Q_DECLARE_METATYPE(Domain*)
Q_DECLARE_METATYPE(QSizeF)
Michal Klocek
Refactors Domain and Axis...
r1698
class AxisMock: public QAbstractAxisPrivate
{
Q_OBJECT
public:
AxisMock(Qt::Orientation orientation):QAbstractAxisPrivate(0){ setOrientation(orientation);};
Michal Klocek
Minor. Compilation fix
r1726 ChartAxis* createGraphics(ChartPresenter* presenter)
{
Q_UNUSED(presenter);
return 0;
};
void intializeDomain(Domain* domain)
{
Q_UNUSED(domain);
};
void setMin(const QVariant &min)
{
Q_UNUSED(min);
}
Michal Klocek
Refactors Domain and Axis...
r1698 qreal min() { return m_min;}
Michal Klocek
Minor. Compilation fix
r1726 void setMax(const QVariant &max)
{
Q_UNUSED(max);
}
Michal Klocek
Refactors Domain and Axis...
r1698 qreal max() { return m_max; }
Michal Klocek
Minor. Compilation fix
r1726 void setRange(const QVariant &min, const QVariant &max)
{
Q_UNUSED(min);
Q_UNUSED(max);
};
int count () const { return m_count; }
Michal Klocek
Refactors Domain and Axis...
r1698
void handleDomainUpdated(){};
public:
Michal Klocek
Minor. Compilation fix
r1726 int m_count;
Michal Klocek
Refactors Domain and Axis...
r1698 qreal m_min;
qreal m_max;
};
Michal Klocek
Adds niceNmber test case to tst_domain
r773 class tst_Domain: public QObject
Michal Klocek
Refactor domain model...
r439 {
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Q_OBJECT
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds tst_qchartview draft
r774 public Q_SLOTS:
Michal Klocek
Refactor domain model...
r439 void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
Michal Klocek
Adds tst_qchartview draft
r774 private Q_SLOTS:
Michal Klocek
Refactor domain model...
r439 void domain();
Michal Klocek
Refactors Domain and Axis...
r1698 void handleAxisUpdatedX_data();
void handleAxisUpdatedX();
void handleAxisUpdatedY_data();
void handleAxisUpdatedY();
Michal Klocek
Refactor domain model...
r439 void isEmpty_data();
void isEmpty();
void maxX_data();
void maxX();
void maxY_data();
void maxY();
void minX_data();
void minX();
void minY_data();
void minY();
void operatorEquals_data();
void operatorEquals();
void setRange_data();
void setRange();
void setRangeX_data();
void setRangeX();
void setRangeY_data();
void setRangeY();
void spanX_data();
void spanX();
void spanY_data();
void spanY();
void zoom_data();
void zoom();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 void move_data();
void move();
Michal Klocek
Refactor domain model...
r439 };
void tst_Domain::initTestCase()
{
}
void tst_Domain::cleanupTestCase()
{
}
void tst_Domain::init()
{
}
void tst_Domain::cleanup()
{
}
void tst_Domain::domain()
{
Domain domain;
QCOMPARE(domain.isEmpty(), true);
QCOMPARE(domain.maxX(), 0.0);
QCOMPARE(domain.maxY(), 0.0);
QCOMPARE(domain.minX(), 0.0);
QCOMPARE(domain.minY(), 0.0);
}
Michal Klocek
Refactors Domain and Axis...
r1698 void tst_Domain::handleAxisUpdatedX_data()
Michal Klocek
Refactor domain model...
r439 {
QTest::addColumn<qreal>("min");
QTest::addColumn<qreal>("max");
QTest::newRow("-1 1") << -1.0 << 1.0;
QTest::newRow("0 1") << 0.0 << 1.0;
QTest::newRow("-1 0") << -1.0 << 0.0;
}
Michal Klocek
Refactors Domain and Axis...
r1698 void tst_Domain::handleAxisUpdatedX()
Michal Klocek
Refactor domain model...
r439 {
QFETCH(qreal, min);
QFETCH(qreal, max);
Domain domain;
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 AxisMock axis(Qt::Horizontal);
QObject::connect(&axis,SIGNAL(updated()),&domain,SLOT(handleAxisUpdated()));
axis.m_min=min;
axis.m_max=max;
axis.emitUpdated();
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QVERIFY(qFuzzyIsNull(domain.minX() - min));
QVERIFY(qFuzzyIsNull(domain.maxX() - max));
Michal Klocek
Refactor domain model...
r439
QList<QVariant> arg1 = spy1.first();
Jani Honkonen
Use qFuzzyIsNull to compare (in)equality of real values
r768 QVERIFY(qFuzzyIsNull(arg1.at(0).toReal() - min));
QVERIFY(qFuzzyIsNull(arg1.at(1).toReal() - max));
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
TRY_COMPARE(spy1.count(), 1);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439
}
Michal Klocek
Refactors Domain and Axis...
r1698 void tst_Domain::handleAxisUpdatedY_data()
Michal Klocek
Refactor domain model...
r439 {
QTest::addColumn<qreal>("min");
QTest::addColumn<qreal>("max");
QTest::newRow("-1 1") << -1.0 << 1.0;
QTest::newRow("0 1") << 0.0 << 1.0;
QTest::newRow("-1 0") << -1.0 << 0.0;
}
Michal Klocek
Refactors Domain and Axis...
r1698 void tst_Domain::handleAxisUpdatedY()
Michal Klocek
Refactor domain model...
r439 {
QFETCH(qreal, min);
QFETCH(qreal, max);
Domain domain;
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 AxisMock axis(Qt::Vertical);
QObject::connect(&axis, SIGNAL(updated()), &domain, SLOT(handleAxisUpdated()));
axis.m_min = min;
axis.m_max = max;
axis.emitUpdated();
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QVERIFY(qFuzzyIsNull(domain.minY() - min));
QVERIFY(qFuzzyIsNull(domain.maxY() - max));
Michal Klocek
Refactor domain model...
r439
QList<QVariant> arg1 = spy2.first();
Jani Honkonen
Use qFuzzyIsNull to compare (in)equality of real values
r768 QVERIFY(qFuzzyIsNull(arg1.at(0).toReal() - min));
QVERIFY(qFuzzyIsNull(arg1.at(1).toReal() - max));
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), 1);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::isEmpty_data()
{
QTest::addColumn<qreal>("minX");
QTest::addColumn<qreal>("maxX");
QTest::addColumn<qreal>("minY");
QTest::addColumn<qreal>("maxY");
QTest::addColumn<bool>("isEmpty");
QTest::newRow("0 0 0 0") << 0.0 << 0.0 << 0.0 << 0.0 << true;
QTest::newRow("0 1 0 0") << 0.0 << 1.0 << 0.0 << 0.0 << true;
QTest::newRow("0 0 0 1") << 0.0 << 1.0 << 0.0 << 0.0 << true;
QTest::newRow("0 1 0 1") << 0.0 << 1.0 << 0.0 << 1.0 << false;
}
void tst_Domain::isEmpty()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, minX);
QFETCH(qreal, maxX);
QFETCH(qreal, minY);
QFETCH(qreal, maxY);
Michal Klocek
Refactor domain model...
r439 QFETCH(bool, isEmpty);
Domain domain;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRange(minX, maxX, minY, maxY);
Michal Klocek
Refactor domain model...
r439 QCOMPARE(domain.isEmpty(), isEmpty);
}
void tst_Domain::maxX_data()
{
QTest::addColumn<qreal>("maxX1");
QTest::addColumn<qreal>("maxX2");
QTest::addColumn<int>("count");
QTest::newRow("1") << 0.0 << 1.0 << 1;
QTest::newRow("1.0") << 1.0 << 1.0 << 1;
QTest::newRow("2.0") << 1.0 << 0.0 << 2;
}
void tst_Domain::maxX()
{
QFETCH(qreal, maxX1);
QFETCH(qreal, maxX2);
QFETCH(int, count);
Domain domain;
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
domain.setMaxX(maxX1);
QCOMPARE(domain.maxX(), maxX1);
domain.setMaxX(maxX2);
QCOMPARE(domain.maxX(), maxX2);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), count);
TRY_COMPARE(spy1.count(), count);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439
}
void tst_Domain::maxY_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("maxY1");
QTest::addColumn<qreal>("maxY2");
QTest::addColumn<int>("count");
QTest::newRow("1") << 0.0 << 1.0 << 1;
QTest::newRow("1.0") << 1.0 << 1.0 << 1;
QTest::newRow("2.0") << 1.0 << 0.0 << 2;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::maxY()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, maxY1);
QFETCH(qreal, maxY2);
QFETCH(int, count);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setMaxY(maxY1);
QCOMPARE(domain.maxY(), maxY1);
domain.setMaxY(maxY2);
QCOMPARE(domain.maxY(), maxY2);
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), count);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), count);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::minX_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("minX1");
QTest::addColumn<qreal>("minX2");
QTest::addColumn<int>("count");
QTest::newRow("1") << 0.0 << 1.0 << 1;
QTest::newRow("1.0") << 1.0 << 1.0 << 1;
QTest::newRow("2.0") << 1.0 << 0.0 << 2;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::minX()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, minX1);
QFETCH(qreal, minX2);
QFETCH(int, count);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setMinX(minX1);
QCOMPARE(domain.minX(), minX1);
domain.setMinX(minX2);
QCOMPARE(domain.minX(), minX2);
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), count);
TRY_COMPARE(spy1.count(), count);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::minY_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("minY1");
QTest::addColumn<qreal>("minY2");
QTest::addColumn<int>("count");
QTest::newRow("1") << 0.0 << 1.0 << 1;
QTest::newRow("1.0") << 1.0 << 1.0 << 1;
QTest::newRow("2.0") << 1.0 << 0.0 << 2;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::minY()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, minY1);
QFETCH(qreal, minY2);
QFETCH(int, count);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setMinY(minY1);
QCOMPARE(domain.minY(), minY1);
domain.setMinY(minY2);
QCOMPARE(domain.minY(), minY2);
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), count);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), count);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::operatorEquals_data()
{
QTest::addColumn<Domain*>("domain1");
QTest::addColumn<Domain*>("domain2");
QTest::addColumn<bool>("equals");
QTest::addColumn<bool>("notEquals");
Domain* a;
Domain* b;
a = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 a->setRange(0, 100, 0, 100);
Michal Klocek
Refactor domain model...
r439 b = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 b->setRange(0, 100, 0, 100);
QTest::newRow("equals") << a << b << true << false;
Michal Klocek
Refactor domain model...
r439 a = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 a->setRange(0, 100, 0, 100);
Michal Klocek
Refactor domain model...
r439 b = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 b->setRange(0, 100, 0, 1);
Michal Klocek
Refactor domain model...
r439 QTest::newRow("equals") << a << b << false << true;
a = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 a->setRange(0, 100, 0, 100);
Michal Klocek
Refactor domain model...
r439 b = new Domain();
Michal Klocek
Adds niceNmber test case to tst_domain
r773 b->setRange(0, 1, 0, 100);
Michal Klocek
Refactor domain model...
r439 QTest::newRow("equals") << a << b << false << true;
}
void tst_Domain::operatorEquals()
{
QFETCH(Domain*, domain1);
QFETCH(Domain*, domain2);
QFETCH(bool, equals);
QFETCH(bool, notEquals);
Domain domain;
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
QCOMPARE(*domain1==*domain2, equals);
QCOMPARE(*domain1!=*domain2, notEquals);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 0);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::setRange_data()
{
QTest::addColumn<qreal>("minX");
QTest::addColumn<qreal>("maxX");
QTest::addColumn<qreal>("minY");
QTest::addColumn<qreal>("maxY");
QTest::newRow("1,2,1,2") << 1.0 << 2.0 << 1.0 << 2.0;
QTest::newRow("1,3,1,3") << 1.0 << 3.0 << 1.0 << 3.0;
QTest::newRow("-1,5,-2,-1") << -1.0 << 5.0 << -2.0 << -1.0;
}
void tst_Domain::setRange()
{
QFETCH(qreal, minX);
QFETCH(qreal, maxX);
QFETCH(qreal, minY);
QFETCH(qreal, maxY);
Domain domain;
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
domain.setRange(minX, maxX, minY, maxY);
QCOMPARE(domain.minX(), minX);
QCOMPARE(domain.maxX(), maxX);
QCOMPARE(domain.minY(), minY);
QCOMPARE(domain.maxY(), maxY);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
TRY_COMPARE(spy1.count(), 1);
TRY_COMPARE(spy2.count(), 1);
Michal Klocek
Refactor domain model...
r439
}
void tst_Domain::setRangeX_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("min");
QTest::addColumn<qreal>("max");
QTest::newRow("-1 1") << -1.0 << 1.0;
QTest::newRow("0 1") << 0.0 << 1.0;
QTest::newRow("-1 0") << -1.0 << 0.0;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::setRangeX()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, min);
QFETCH(qreal, max);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRangeX(min, max);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QVERIFY(qFuzzyIsNull(domain.minX() - min));
QVERIFY(qFuzzyIsNull(domain.maxX() - max));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QList<QVariant> arg1 = spy1.first();
Jani Honkonen
Use qFuzzyIsNull to compare (in)equality of real values
r768 QVERIFY(qFuzzyIsNull(arg1.at(0).toReal() - min));
QVERIFY(qFuzzyIsNull(arg1.at(1).toReal() - max));
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
TRY_COMPARE(spy1.count(), 1);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::setRangeY_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("min");
QTest::addColumn<qreal>("max");
QTest::newRow("-1 1") << -1.0 << 1.0;
QTest::newRow("0 1") << 0.0 << 1.0;
QTest::newRow("-1 0") << -1.0 << 0.0;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::setRangeY()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, min);
QFETCH(qreal, max);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRangeY(min, max);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QVERIFY(qFuzzyIsNull(domain.minY() - min));
QVERIFY(qFuzzyIsNull(domain.maxY() - max));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QList<QVariant> arg1 = spy2.first();
Jani Honkonen
Use qFuzzyIsNull to compare (in)equality of real values
r768 QVERIFY(qFuzzyIsNull(arg1.at(0).toReal() - min));
QVERIFY(qFuzzyIsNull(arg1.at(1).toReal() - max));
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), 1);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::spanX_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("minX");
QTest::addColumn<qreal>("maxX");
Michal Klocek
Refactor domain model...
r439 QTest::addColumn<qreal>("spanX");
QTest::newRow("1 2 1") << 1.0 << 2.0 << 1.0;
QTest::newRow("0 2 2") << 1.0 << 2.0 << 1.0;
}
void tst_Domain::spanX()
{
QFETCH(qreal, minX);
QFETCH(qreal, maxX);
QFETCH(qreal, spanX);
Domain domain;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRangeX(minX, maxX);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
QCOMPARE(domain.spanX(), spanX);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 0);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::spanY_data()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::addColumn<qreal>("minY");
QTest::addColumn<qreal>("maxY");
QTest::addColumn<qreal>("spanY");
QTest::newRow("1 2 1") << 1.0 << 2.0 << 1.0;
QTest::newRow("0 2 2") << 1.0 << 2.0 << 1.0;
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::spanY()
{
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QFETCH(qreal, minY);
QFETCH(qreal, maxY);
QFETCH(qreal, spanY);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 Domain domain;
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRangeY(minY, maxY);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QCOMPARE(domain.spanY(), spanY);
Michal Klocek
Refactor domain model...
r439
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 0);
TRY_COMPARE(spy1.count(), 0);
TRY_COMPARE(spy2.count(), 0);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::zoom_data()
{
QTest::addColumn<QRectF>("rect0");
QTest::addColumn<QSizeF>("size0");
QTest::addColumn<QRectF>("rect1");
QTest::addColumn<QSizeF>("size1");
QTest::addColumn<QRectF>("rect2");
QTest::addColumn<QSizeF>("size2");
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QTest::newRow("first") << QRectF(10, 10, 100, 100) << QSizeF(1000, 1000)
<< QRectF(20, 20, 100, 100) << QSizeF(1000, 1000) << QRectF(50, 50, 100, 100)
<< QSizeF(1000, 1000);
QTest::newRow("scound") << QRectF(10, 10, 50, 50) << QSizeF(1000, 1000)
<< QRectF(20, 20, 100, 100) << QSizeF(1000, 1000) << QRectF(50, 50, 100, 100)
<< QSizeF(1000, 1000);
QTest::newRow("third") << QRectF(10, 10, 10, 10) << QSizeF(100, 100) << QRectF(20, 20, 20, 20)
<< QSizeF(100, 100) << QRectF(50, 50, 50, 50) << QSizeF(100, 100);
Michal Klocek
Refactor domain model...
r439 }
void tst_Domain::zoom()
{
QFETCH(QRectF, rect0);
QFETCH(QSizeF, size0);
QFETCH(QRectF, rect1);
QFETCH(QSizeF, size1);
QFETCH(QRectF, rect2);
QFETCH(QSizeF, size2);
Domain domain;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain.setRange(0, 1000, 0, 1000);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Refactor domain model...
r439
Domain domain0;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain0.setRange(domain.minX(), domain.maxX(), domain.minY(), domain.maxY());
Michal Klocek
Refactor domain model...
r439 domain.zoomIn(rect0, size0);
Domain domain1;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain1.setRange(domain.minX(), domain.maxX(), domain.minY(), domain.maxY());
Michal Klocek
Refactor domain model...
r439 domain.zoomIn(rect1, size1);
Domain domain2;
Michal Klocek
Adds niceNmber test case to tst_domain
r773 domain2.setRange(domain.minX(), domain.maxX(), domain.minY(), domain.maxY());
Michal Klocek
Refactor domain model...
r439 domain.zoomIn(rect2, size2);
domain.zoomOut(rect2, size2);
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QCOMPARE(domain == domain2, true);
Michal Klocek
Refactor domain model...
r439 domain.zoomOut(rect1, size1);
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QCOMPARE(domain == domain1, true);
Michal Klocek
Refactor domain model...
r439 domain.zoomOut(rect0, size0);
Michal Klocek
Adds niceNmber test case to tst_domain
r773 QCOMPARE(domain == domain0, true);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 6);
TRY_COMPARE(spy1.count(), 6);
TRY_COMPARE(spy2.count(), 6);
Michal Klocek
Refactor domain model...
r439 }
Michal Klocek
Adds niceNmber test case to tst_domain
r773 void tst_Domain::move_data()
{
QTest::addColumn<int>("dx");
QTest::addColumn<int>("dy");
QTest::addColumn<QSizeF>("size");
QTest::newRow("dx 100, dy 0, size 1000x1000") << 100 << 0 << QSizeF(1000, 1000);
QTest::newRow("dx 0, dy 100, size 1000x1000") << 0 << 100 << QSizeF(1000, 1000);
QTest::newRow("dx -100, dy 0, size 1000x1000") << -100 << 0 << QSizeF(1000, 1000);
QTest::newRow("dx 0, dy -100, size 1000x1000") << 0 << -100 << QSizeF(1000, 1000);
QTest::newRow("dx 100, dy 100, size 1000x1000") << 100 << 100 << QSizeF(1000, 1000);
QTest::newRow("dx 100, dy 50, size 1000x1000") << 100 << 50 << QSizeF(1000, 1000);
}
void tst_Domain::move()
{
QFETCH(int, dx);
QFETCH(int, dy);
QFETCH(QSizeF, size);
Domain domain;
domain.setRange(0, size.width(), 0, size.height());
Michal Klocek
Refactors Domain and Axis...
r1698 QSignalSpy spy0(&domain, SIGNAL(updated()));
QSignalSpy spy1(&domain, SIGNAL(rangeXChanged(qreal,qreal)));
QSignalSpy spy2(&domain, SIGNAL(rangeYChanged(qreal,qreal)));
Michal Klocek
Adds niceNmber test case to tst_domain
r773
domain.move(dx, dy, size);
Domain result;
result.setRange(dx, size.width() + dx, dy, size.height() + dy);
QCOMPARE(domain == result, true);
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), 1);
Tero Ahola
Fixed an issue with domain auto occasionally failing
r1111 TRY_COMPARE(spy1.count(), (dx != 0 ? 1 : 0));
TRY_COMPARE(spy2.count(), (dy != 0 ? 1 : 0));
Michal Klocek
Adds niceNmber test case to tst_domain
r773 }
Michal Klocek
Refactor domain model...
r439 QTEST_MAIN(tst_Domain)
#include "tst_domain.moc"
Michal Klocek
Removes test_private form qmake, adds chaeck in soruce file of private tests
r1977 #endif