20 #include <qpa/qwindowsysteminterface.h> 21 #include <QtGui/QGuiApplication> 23 #include <private/qquickbehavior_p.h> 24 #include <private/qquickanimation_p.h> 27 #include <UbuntuGestures/ubuntugesturesglobal.h> 28 #include <UbuntuGestures/private/touchregistry_p.h> 29 #include <UbuntuGestures/private/timer_p.h> 33 TestUtil::TestUtil(QObject *parent)
37 , m_putFakeTimerFactoryInTouchRegistry(false)
46 TestUtil::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(
"UbuntuGestures::"));
60 result = qmlName == name;
63 qmlName = qmlName.remove(QString(
"UbuntuToolkit::"));
64 result = qmlName == name;
66 metaObject = metaObject->superClass();
73 TestUtil::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);
87 TouchEventSequenceWrapper *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);
103 void TestUtil::ensureTargetWindow()
105 if (!m_targetWindow && !QGuiApplication::topLevelWindows().isEmpty())
106 m_targetWindow = QGuiApplication::topLevelWindows()[0];
109 void TestUtil::ensureTouchDevice()
111 if (!m_touchDevice) {
112 m_touchDevice =
new QTouchDevice;
113 m_touchDevice->setType(QTouchDevice::TouchScreen);
114 QWindowSystemInterface::registerTouchDevice(m_touchDevice);