##// END OF EJS Templates
Plugged some memory leaks....
Plugged some memory leaks. Autotests were also made Valgrind friendly by adding a final one millisecond wait to the end of the test to allow pending deleteLaters to run. Also some minor cosmetic cleanup done to autotests. Change-Id: Ic3719167a22949f243eaf54614e174a681dbe34a Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>

File last commit:

r2714:929d943d1aab
r2733:c6ed50e68438
Show More
tst_definitions.h
98 lines | 3.0 KiB | text/x-c | CLexer
/ tests / auto / inc / tst_definitions.h
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 /****************************************************************************
**
Titta Heikkala
Update copyright year...
r2688 ** Copyright (C) 2014 Digia Plc
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 ** 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$
**
****************************************************************************/
#ifndef TST_DEFINITIONS_H
#define TST_DEFINITIONS_H
Titta Heikkala
Qt Charts project file structure change...
r2712 #include <QtCharts/qpolarchart.h>
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #include <QtTest/QtTest>
Titta Heikkala
Fix include syntax...
r2714 #include <QtWidgets/QPushButton>
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109
Jani Honkonen
Fix deprecation errors from Qt5
r2241 namespace QTest
{
// This was deprecated in Qt5. This is a small hack for the sake of compatibility.
inline static bool qWaitForWindowShown(QWidget *window)
{
return QTest::qWaitForWindowExposed(window);
}
}
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #define TRY_COMPARE(actual, expected) { \
do { \
const int timeout(1000); \
const int waitStep(30); \
/* always wait before comparing to catch possible extra signals */ \
QTest::qWait(waitStep); \
Tero Ahola
Fixed an issue with domain auto occasionally failing
r1111 for (int time(0); (actual != expected) && (time < timeout); time += waitStep) \
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 QTest::qWait(waitStep); \
QCOMPARE(actual, expected); \
} while (0); \
}
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062 // Some bamboo clients have trouble passing mouse events to the test application.
// This can be used to skip those tests so that they don't show up as a failure
// in the test report.
Tero Ahola
Qt5 build fix, QSKIP has only one parameter
r2367 #define SKIP_IF_CANNOT_TEST_MOUSE_EVENTS() { \
do { \
QPushButton b; \
b.resize(100, 100); \
b.show(); \
QTest::qWaitForWindowShown(&b); \
QSignalSpy spy(&b, SIGNAL(clicked())); \
QTest::mouseClick(&b, Qt::LeftButton, 0, b.rect().center()); \
if (spy.count() == 0) \
QSKIP("Cannot test mouse events in this environment"); \
} while (0); \
}
Miikka Heikkinen
Add Polar chart support...
r2483
#define SKIP_ON_POLAR() { \
if (isPolarTest()) \
QSKIP("Test not supported by polar chart"); \
}
#define SKIP_ON_CARTESIAN() { \
if (!isPolarTest()) \
QSKIP("Test not supported by cartesian chart"); \
}
Jani Honkonen
Try to make bamboo skip tests that it cannot run
r2062
Miikka Heikkinen
Add Polar chart support...
r2483 static inline bool isPolarTest()
{
static bool isPolar = false;
static bool polarEnvChecked = false;
if (!polarEnvChecked) {
isPolar = !(qgetenv("TEST_POLAR_CHART").isEmpty());
polarEnvChecked = true;
if (isPolar)
qDebug() << "TEST_POLAR_CHART found -> Testing polar chart!";
}
return isPolar;
}
Titta Heikkala
Qt Charts project file structure change...
r2712 static inline QtCharts::QChart *newQChartOrQPolarChart()
Miikka Heikkinen
Add Polar chart support...
r2483 {
if (isPolarTest())
Titta Heikkala
Qt Charts project file structure change...
r2712 return new QtCharts::QPolarChart();
Miikka Heikkinen
Add Polar chart support...
r2483 else
Titta Heikkala
Qt Charts project file structure change...
r2712 return new QtCharts::QChart();
Miikka Heikkinen
Add Polar chart support...
r2483 }
Tero Ahola
Auto tests involving signal spys to wait before comparisons
r1109 #endif // TST_DEFINITIONS_H