##// END OF EJS Templates
Adds QChartView empty constructor to be able to promote qchartview in qtdesigner
Adds QChartView empty constructor to be able to promote qchartview in qtdesigner

File last commit:

r1290:d3d22419eb01
r1290:d3d22419eb01
Show More
tst_qchartview.cpp
177 lines | 4.7 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$
**
****************************************************************************/
#include <QtTest/QtTest>
#include <qchartview.h>
Michal Klocek
Updates tstqchartview unit test
r802 #include <qlineseries.h>
#include <cmath>
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #include <tst_definitions.h>
Michal Klocek
Adds tst_qchartview draft
r774
QTCOMMERCIALCHART_USE_NAMESPACE
Q_DECLARE_METATYPE(QChart*)
Q_DECLARE_METATYPE(QChartView::RubberBands)
Michal Klocek
Fix padding to be int, update unit test
r804 Q_DECLARE_METATYPE(Qt::Key)
Michal Klocek
Adds tst_qchartview draft
r774
class tst_QChartView : public QObject
{
Q_OBJECT
public Q_SLOTS:
void initTestCase();
void cleanupTestCase();
void init();
void cleanup();
private Q_SLOTS:
void qchartview_data();
void qchartview();
void chart_data();
void chart();
void rubberBand_data();
void rubberBand();
private:
QChartView* m_view;
};
void tst_QChartView::initTestCase()
{
Michal Klocek
Fix padding to be int, update unit test
r804 //test tracks mouse, give a while to user to relese it
QTest::qWait(1000);
Michal Klocek
Adds tst_qchartview draft
r774 }
void tst_QChartView::cleanupTestCase()
{
}
void tst_QChartView::init()
{
m_view = new QChartView(new QChart());
Michal Klocek
Increses margins prescision
r874 m_view->chart()->legend()->setVisible(false);
Michal Klocek
Adds tst_qchartview draft
r774 }
void tst_QChartView::cleanup()
{
delete m_view;
m_view =0;
}
void tst_QChartView::qchartview_data()
{
}
void tst_QChartView::qchartview()
{
QVERIFY(m_view->chart());
QCOMPARE(m_view->rubberBand(), QChartView::NoRubberBand);
Michal Klocek
Updates tstqchartview unit test
r802 m_view->show();
Michal Klocek
Adds tst_qchartview draft
r774 QTest::qWaitForWindowShown(m_view);
Michal Klocek
Adds QChartView empty constructor to be able to promote qchartview in qtdesigner
r1290
delete(new QChartView());
QChartView view;
QVERIFY(view.chart());
Michal Klocek
Adds tst_qchartview draft
r774 }
void tst_QChartView::chart_data()
{
QTest::addColumn<QChart*>("chart");
QTest::newRow("qchart") << new QChart();
}
void tst_QChartView::chart()
{
QFETCH(QChart*, chart);
QChartView* view = new QChartView(chart);
QCOMPARE(view->chart(), chart);
delete view;
}
void tst_QChartView::rubberBand_data()
{
QTest::addColumn<QChartView::RubberBands>("rubberBand");
Michal Klocek
Updates tstqchartview unit test
r802 QTest::addColumn<int>("Xcount");
QTest::addColumn<int>("Ycount");
QTest::addColumn<int>("minX");
QTest::addColumn<int>("maxX");
QTest::addColumn<int>("minY");
QTest::addColumn<int>("maxY");
Michal Klocek
tst_qchart and tst_qchartview updates
r914 QTest::newRow("HorizonalRubberBand") << QChartView::RubberBands(QChartView::HorizonalRubberBand) << 0 << 1 << 20 << 180 << 0<< 200;
QTest::newRow("VerticalRubberBand") << QChartView::RubberBands(QChartView::VerticalRubberBand) << 1 << 0 << 0 << 200 << 20<< 180;
QTest::newRow("RectangleRubberBand") << QChartView::RubberBands(QChartView::RectangleRubberBand) << 1 << 1 <<20 << 180 << 20<< 180;
Michal Klocek
Adds tst_qchartview draft
r774 }
void tst_QChartView::rubberBand()
{
QFETCH(QChartView::RubberBands, rubberBand);
Michal Klocek
Updates tstqchartview unit test
r802 QFETCH(int, Xcount);
QFETCH(int, Ycount);
QFETCH(int, minX);
QFETCH(int, maxX);
QFETCH(int, minY);
QFETCH(int, maxY);
Michal Klocek
Adds tst_qchartview draft
r774 m_view->setRubberBand(rubberBand);
Michal Klocek
Increses margins prescision
r874 QRectF padding = m_view->chart()->margins();
Michal Klocek
Adds tst_qchartview draft
r774 QCOMPARE(m_view->rubberBand(), rubberBand);
Michal Klocek
Updates tstqchartview unit test
r802
QLineSeries* line = new QLineSeries();
Michal Klocek
tst_qchart and tst_qchartview updates
r914 *line << QPointF(0, 0) << QPointF(200, 200);
Michal Klocek
Updates tstqchartview unit test
r802
m_view->chart()->addSeries(line);
Michal Klocek
tst_qchart and tst_qchartview updates
r914 m_view->resize(200 + padding.left() + padding.right(), 200 + padding.top()+ padding.bottom());
Michal Klocek
Updates tstqchartview unit test
r802 m_view->show();
Michal Klocek
Fix padding to be int, update unit test
r804
//this is hack since view does not get events otherwise
Michal Klocek
Updates tstqchartview unit test
r802 m_view->setMouseTracking(true);
Michal Klocek
Changes QChartAxis -> QAxis
r1006 QAxis* axisY = m_view->chart()->axisY();
Michal Klocek
Normalizes signal slots connections
r967 QSignalSpy spy0(axisY, SIGNAL(rangeChanged(qreal,qreal)));
Michal Klocek
Changes QChartAxis -> QAxis
r1006 QAxis* axisX = m_view->chart()->axisX();
Michal Klocek
Normalizes signal slots connections
r967 QSignalSpy spy1(axisX, SIGNAL(rangeChanged(qreal,qreal)));
Michal Klocek
Updates tstqchartview unit test
r802
QTest::qWaitForWindowShown(m_view);
Michal Klocek
Increses margins prescision
r874 QTest::mouseMove(m_view->viewport(), QPoint(minX, minY) + padding.topLeft().toPoint());
QTest::mousePress(m_view->viewport(), Qt::LeftButton, 0, QPoint(minX, minY) + padding.topLeft().toPoint());
QTest::mouseMove(m_view->viewport(), QPoint(maxX, maxY) + padding.topLeft().toPoint());
QTest::mouseRelease(m_view->viewport(), Qt::LeftButton, 0, QPoint(maxX, maxY)+ padding.topLeft().toPoint());
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 TRY_COMPARE(spy0.count(), Xcount);
TRY_COMPARE(spy1.count(), Ycount);
Michal Klocek
Fix padding to be int, update unit test
r804
//this is hack since view does not get events otherwise
m_view->setMouseTracking(false);
QVERIFY(axisX->min() - minX < 1);
QVERIFY(axisX->max() - maxX < 1);
QVERIFY(axisY->min() - minY < 1);
QVERIFY(axisY->max() - maxY < 1);
}
Michal Klocek
Adds tst_qchartview draft
r774 QTEST_MAIN(tst_QChartView)
#include "tst_qchartview.moc"