aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtQml/bug_814.py
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2021-04-06 11:14:25 +0200
committerFriedemann Kleint <[email protected]>2021-04-06 15:29:32 +0200
commit04d45f0429c6c6d8eae9c4fcf269ffbcc7d074d8 (patch)
tree8ad179ccdec7bd45042e15619542b704eac3e867 /sources/pyside6/tests/QtQml/bug_814.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 <[email protected]> Reviewed-by: Cristian Maureira-Fredes <[email protected]>
Diffstat (limited to 'sources/pyside6/tests/QtQml/bug_814.py')
-rw-r--r--sources/pyside6/tests/QtQml/bug_814.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtQml/bug_814.py b/sources/pyside6/tests/QtQml/bug_814.py
index 4c6b1f488..b89eb93f6 100644
--- a/sources/pyside6/tests/QtQml/bug_814.py
+++ b/sources/pyside6/tests/QtQml/bug_814.py
@@ -46,7 +46,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.QtCore import QUrl, QAbstractListModel, QModelIndex, Qt
@@ -72,8 +72,11 @@ class TestBug814(TimedQApplication):
view = QQuickView()
model = ListModel()
view.rootContext().setContextProperty("pythonModel", model)
- view.setSource(QUrl.fromLocalFile(adjust_filename('bug_814.qml', __file__)))
+ file = Path(__file__).resolve().parent / 'bug_814.qml'
+ self.assertTrue(file.is_file())
+ view.setSource(QUrl.fromLocalFile(os.fspath(file)))
root = view.rootObject()
+ self.assertTrue(root, quickview_errorstring(view))
view.show()
if __name__ == '__main__':