20#include <qpa/qwindowsysteminterface.h>
21#include <QtGui/QGuiApplication>
23#include <private/qquickbehavior_p.h>
24#include <private/qquickanimation_p.h>
27#include <LomiriGestures/lomirigesturesglobal.h>
28#include <LomiriGestures/private/touchregistry_p.h>
29#include <LomiriGestures/private/timer_p.h>
33TestUtil::TestUtil(QObject *parent)
37 , m_putFakeTimerFactoryInTouchRegistry(false)
46TestUtil::isInstanceOf(QObject *obj, QString name)
48 if (!obj)
return false;
49 bool result = obj->inherits(name.toUtf8());
51 const QMetaObject *metaObject = obj->metaObject();
52 while (!result && metaObject) {
53 const QString className = metaObject->className();
54 QString qmlName = className.left(className.indexOf(
"_QMLTYPE_"));
55 result = qmlName == name;
59 qmlName = qmlName.remove(QString(
"LomiriGestures::"));
60 result = qmlName == name;
63 qmlName = qmlName.remove(QString(
"LomiriToolkit::"));
64 result = qmlName == name;
66 metaObject = metaObject->superClass();
73TestUtil::waitForBehaviors(QObject *obj)
77 Q_FOREACH(
auto c, obj->children()) {
78 if (
auto *b =
dynamic_cast<QQuickBehavior*
>(c)) {
80 QTRY_COMPARE(b->animation()->isRunning(),
false);
87TouchEventSequenceWrapper *TestUtil::touchEvent(QQuickItem *item)
94 if (!m_putFakeTimerFactoryInTouchRegistry) {
95 TouchRegistry::instance()->setTimerFactory(
new FakeTimerFactory);
96 m_putFakeTimerFactoryInTouchRegistry =
true;
99 return new TouchEventSequenceWrapper(
100 QTest::touchEvent(m_targetWindow, m_touchDevice,
false), item);
103void TestUtil::ensureTargetWindow()
105 if (!m_targetWindow && !QGuiApplication::topLevelWindows().isEmpty())
106 m_targetWindow = QGuiApplication::topLevelWindows().at(0);
109void TestUtil::ensureTouchDevice()
111 if (!m_touchDevice) {
112 m_touchDevice =
new QTouchDevice;
113 m_touchDevice->setType(QTouchDevice::TouchScreen);
114 QWindowSystemInterface::registerTouchDevice(m_touchDevice);