aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtStateMachine/qstate_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtStateMachine/qstate_test.py')
-rw-r--r--sources/pyside6/tests/QtStateMachine/qstate_test.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/sources/pyside6/tests/QtStateMachine/qstate_test.py b/sources/pyside6/tests/QtStateMachine/qstate_test.py
new file mode 100644
index 000000000..4a33141c8
--- /dev/null
+++ b/sources/pyside6/tests/QtStateMachine/qstate_test.py
@@ -0,0 +1,49 @@
+#!/usr/bin/python
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+import os
+import sys
+import unittest
+
+from pathlib import Path
+sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
+from init_paths import init_test_paths
+init_test_paths(False)
+
+from PySide6.QtCore import QCoreApplication, QObject, SIGNAL, QTimer
+from PySide6.QtStateMachine import (QEventTransition, QFinalState, QState,
+ QStateMachine, QSignalTransition)
+
+
+class QStateTest(unittest.TestCase):
+ def testBasic(self):
+ app = QCoreApplication([])
+
+ o = QObject()
+ o.setProperty("text", "INdT")
+
+ machine = QStateMachine()
+ s1 = QState()
+ s1.assignProperty(o, "text", "Rocks")
+
+ s2 = QFinalState()
+ t = s1.addTransition(o, SIGNAL("change()"), s2)
+ self.assertTrue(isinstance(t, QSignalTransition))
+
+ machine.addState(s1)
+ machine.addState(s2)
+ machine.setInitialState(s1)
+ machine.start()
+
+ o.emit(SIGNAL("change()"))
+
+ QTimer.singleShot(100, app.quit)
+ app.exec()
+
+ txt = o.property("text")
+ self.assertTrue(txt, "Rocks")
+
+
+if __name__ == '__main__':
+ unittest.main()