aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtTest/touchevent_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtTest/touchevent_test.py')
-rw-r--r--tests/QtTest/touchevent_test.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/QtTest/touchevent_test.py b/tests/QtTest/touchevent_test.py
new file mode 100644
index 000000000..2db4e8b2f
--- /dev/null
+++ b/tests/QtTest/touchevent_test.py
@@ -0,0 +1,46 @@
+from PySide.QtGui import QWidget
+from PySide.QtCore import QPoint, QTimer, Qt, QEvent
+from PySide.QtTest import QTest
+
+import unittest
+
+from helper import UsesQApplication
+
+class MyWidget(QWidget):
+ def __init__(self, parent = None):
+ QWidget.__init__(self, parent)
+ self._sequence = []
+ self.setAttribute(Qt.WA_AcceptTouchEvents)
+ QTimer.singleShot(200, self.generateEvent)
+
+ def event(self, e):
+ self._sequence.append(e.type())
+ return QWidget.event(self, e)
+
+ def generateEvent(self):
+ o = QTest.touchEvent(self)
+ o.press(0, QPoint(10, 10))
+ o.commit()
+ del o
+
+ QTest.touchEvent(self).press(0, QPoint(10, 10))
+ QTest.touchEvent(self).stationary(0).press(1, QPoint(40, 10))
+ QTest.touchEvent(self).move(0, QPoint(12, 12)).move(1, QPoint(45, 5))
+ QTest.touchEvent(self).release(0, QPoint(12, 12)).release(1, QPoint(45, 5))
+
+ QTimer.singleShot(200, self.deleteLater)
+
+
+class TouchEventTest(UsesQApplication):
+ def testCreateEvent(self):
+ w = MyWidget()
+ w.show()
+ self.app.exec_()
+ # same values as C++
+ self.assertEqual(w._sequence.count(QEvent.Type.TouchBegin), 2)
+ self.assertEqual(w._sequence.count(QEvent.Type.TouchUpdate), 2)
+ self.assertEqual(w._sequence.count(QEvent.Type.TouchEnd), 1)
+
+
+if __name__ == '__main__':
+ unittest.main()