aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-06-30 13:06:19 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-08-12 15:52:10 +0200
commitf358188cbd2e47f82d7de3612181e628e1f1c05c (patch)
tree8befff9d83c4e96bab0b2e9af7727238b2e9be87 /tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
parent26884a4f34cfe6bc10daa19f2096aa49ed0a31f2 (diff)
Do not set QQmlPropertyBinding until we reach finalize
If we install the binding eagerly, context properties cannot be resolved yet, as the context object has not been created so far. This causes issues with a QNotifiedProperty using a callback which accesses the current value, and thus forcing the binding evaluation while the object creation is still ongoing. Change-Id: I3bf3def04cd044371cb757a1854a3224a9c669b8 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp')
-rw-r--r--tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
index 52b2afe727..deb949e7a5 100644
--- a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
+++ b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
@@ -383,6 +383,7 @@ private slots:
void semicolonAfterProperty();
void hugeStack();
void bindingOnQProperty();
+ void bindingOnQPropertyContextProperty();
void urlConstruction();
void urlPropertyInvalid();
void urlPropertySet();
@@ -9279,17 +9280,28 @@ void tst_qqmlecmascript::bindingOnQProperty()
QScopedPointer<QObject> test(component.create());
test->setProperty("externalValue", 42);
QCOMPARE(test->property("value").toInt(), 42);
- // Value hasn't changed yet...
- QCOMPARE(test->property("changeHandlerCount").toInt(), 0);
+ QCOMPARE(test->property("changeHandlerCount").toInt(), 1);
test->setProperty("externalValue", 100);
QCOMPARE(test->property("value").toInt(), 100);
- QCOMPARE(test->property("changeHandlerCount").toInt(), 1);
+ QCOMPARE(test->property("changeHandlerCount").toInt(), 2);
QVERIFY(qobject_cast<ClassWithQProperty*>(test.data()));
QProperty<float> &qprop = static_cast<ClassWithQProperty*>(test.data())->value;
QVERIFY(qprop.hasBinding());
}
+void tst_qqmlecmascript::bindingOnQPropertyContextProperty()
+{
+ QQmlEngine engine;
+ QQmlComponent component(&engine, testFileUrl("bindingOnQPropertyContextProperty.qml"));
+ QVERIFY2(component.isReady(), qPrintable(component.errorString()));
+ QScopedPointer<QObject> test(component.create());
+ QVERIFY(!test.isNull());
+ auto classWithQProperty = test->property("testee").value<ClassWithQProperty2 *>();
+ QVERIFY(classWithQProperty);
+ QCOMPARE(classWithQProperty->value.value(), 2);
+}
+
void tst_qqmlecmascript::urlConstruction()
{
QQmlEngine qmlengine;