aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/connect_python_qml.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-06 11:14:25 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-06 15:29:32 +0200
commit04d45f0429c6c6d8eae9c4fcf269ffbcc7d074d8 (patch)
tree8ad179ccdec7bd45042e15619542b704eac3e867 /sources/pyside6/tests/QtQml/connect_python_qml.py
parent27bb3f7839d9673b125f8b1b775c4398293932e2 (diff)
Port tests to pathlib
Replace test helper function adjust_filename() by pathlib handling. Add asserts on the existence everywhere. Add error handling with helper functions to QML loading, printing the error message in the assert statements. Task-number: PYSIDE-1499 Task-number: PYSIDE-1532 Change-Id: I206929effb37f21d1f621be921bb996162398b4d Reviewed-by: Christian Tismer <tismer@stackless.com> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtQml/connect_python_qml.py')
-rw-r--r--sources/pyside6/tests/QtQml/connect_python_qml.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtQml/connect_python_qml.py b/sources/pyside6/tests/QtQml/connect_python_qml.py
index 47e0fdae0..40b695b95 100644
--- a/sources/pyside6/tests/QtQml/connect_python_qml.py
+++ b/sources/pyside6/tests/QtQml/connect_python_qml.py
@@ -42,7 +42,7 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
from init_paths import init_test_paths
init_test_paths(False)
-from helper.helper import adjust_filename
+from helper.helper import quickview_errorstring
from helper.timedqapplication import TimedQApplication
from PySide6 import QtCore, QtGui, QtQuick
@@ -59,8 +59,11 @@ class TestConnectionWithInvalidSignature(TimedQApplication):
self.buttonClicked = False
self.buttonFailClicked = False
view = QtQuick.QQuickView()
- view.setSource(QtCore.QUrl.fromLocalFile(adjust_filename('connect_python_qml.qml', __file__)))
+ file = Path(__file__).resolve().parent / 'connect_python_qml.qml'
+ self.assertTrue(file.is_file())
+ view.setSource(QtCore.QUrl.fromLocalFile(os.fspath(file)))
root = view.rootObject()
+ self.assertTrue(root, quickview_errorstring(view))
button = root.findChild(QtCore.QObject, "buttonMouseArea")
self.assertRaises(TypeError, QtCore.QObject.connect, [button,QtCore.SIGNAL('entered()'), self.onButtonFailClicked])
button.entered.connect(self.onButtonClicked)