aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2025-09-03 13:47:48 +0200
committerUlf Hermann <ulf.hermann@qt.io>2025-09-11 14:01:55 +0200
commitce266fbcddc48edd63c4ba8c4a6f43fb2df48153 (patch)
tree780c112575bff245646753258fee3e50375db68b /tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
parent398411caaf6e0713ff10daadf14531e02708aa4a (diff)
QtQml: Avoid double-wrapping when converting to QVariantList
Amends commit 1b89c1edcae68351632c2755e5408410c2ff98e3 Fixes: QTBUG-139764 Pick-to: 6.10 6.9 6.8 Change-Id: I1488527a235d74fc0352c72b9bfb69589c2f3d93 Reviewed-by: Sami Shalayel <sami.shalayel@qt.io>
Diffstat (limited to 'tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp')
-rw-r--r--tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
index 406bcb1da8..579f279e93 100644
--- a/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
+++ b/tests/auto/qml/qmlcppcodegen/tst_qmlcppcodegen.cpp
@@ -12,6 +12,7 @@
#include <data/objectwithmethod.h>
#include <data/qmlusing.h>
#include <data/resettable.h>
+#include <data/sequenceToIterable.h>
#include <data/takenumber.h>
#include <data/weathermoduleurl.h>
#include <data/withlength.h>
@@ -5086,6 +5087,19 @@ void tst_QmlCppCodegen::sequenceToIterable()
QVERIFY(match.hasMatch());
QCOMPARE(match.captured(1), QString::number(i));
}
+
+ QQmlComponent component2(&engine, QUrl(u"qrc:/qt/qml/TestTypes/sequenceToIterable2.qml"_s));
+ QVERIFY2(!component2.isError(), component.errorString().toUtf8());
+ QScopedPointer<QObject> object2(component2.create());
+ QVERIFY(!object2.isNull());
+
+ QQmlListReference converted(object2.data(), "converted");
+ QCOMPARE(converted.count(), 10);
+ for (int i = 0; i < 10; ++i) {
+ Entry *e = qobject_cast<Entry *>(converted.at(i));
+ QVERIFY(e);
+ QCOMPARE(e->objectName(), QStringLiteral("Item %1").arg(i));
+ }
}
void tst_QmlCppCodegen::setLookupConversion()