// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #include #include #include #include #include #include #include #include #include #if defined(Q_CC_GNU) || defined(Q_CC_MSVC) #define RUN_MEMBER_OFFSET_TEST 1 #else #define RUN_MEMBER_OFFSET_TEST 0 #endif #if RUN_MEMBER_OFFSET_TEST template size_t pmm_to_offsetof(T K:: *pmm) { #ifdef Q_CC_MSVC // Even on 64 bit MSVC uses 4 byte offsets. quint32 ret; #else size_t ret; #endif Q_STATIC_ASSERT(sizeof(ret) == sizeof(pmm)); memcpy(&ret, &pmm, sizeof(ret)); return ret; } #endif class tst_toolsupport : public QObject { Q_OBJECT private slots: void offsets(); void offsets_data(); void instantiateTooling_data(); void instantiateTooling(); }; void tst_toolsupport::offsets() { QFETCH(size_t, actual); QFETCH(int, expected32); QFETCH(int, expected64); size_t expect = sizeof(void *) == 4 ? expected32 : expected64; QCOMPARE(actual, expect); } void tst_toolsupport::offsets_data() { QTest::addColumn("actual"); QTest::addColumn("expected32"); QTest::addColumn("expected64"); { QTestData &data = QTest::newRow("sizeof(QObjectData)") << sizeof(QObjectData); data << 44 << 80; } { QTestData &data = QTest::newRow("sizeof(QQmlRefCount)") << sizeof(QQmlRefCount); data << 4 << 4; } #if RUN_MEMBER_OFFSET_TEST { QTestData &data = QTest::newRow("CompiledData::CompilationUnit::data") << pmm_to_offsetof(&QV4::CompiledData::CompilationUnit::data); data << 4 << 8; } { QTestData &data = QTest::newRow("ExecutableCompilationUnit::runtimeStrings") << pmm_to_offsetof(&QV4::ExecutableCompilationUnit::runtimeStrings); data << 0 << 0; } { QTestData &data = QTest::newRow("Heap::String::textStorage") << pmm_to_offsetof(&QV4::Heap::String::textStorage); data << 4 << 8; } #endif // RUN_MEMBER_OFFSET_TEST } void tst_toolsupport::instantiateTooling_data() { QTest::addColumn("file"); const QString importsPath = QLibraryInfo::path(QLibraryInfo::QmlImportsPath); QDirIterator it(importsPath + "/QtQuick/tooling", { "*.qml" }, QDir::Files); while (it.hasNext()) QTest::addRow("%s", qPrintable(it.nextFileInfo().fileName())) << it.filePath(); } void tst_toolsupport::instantiateTooling() { // On platforms that require deployment with an app bundle we cannot do this. if (!QTest::currentDataTag()) QSKIP("QtQuick.tooling is not available here"); QFETCH(QString, file); QQmlEngine engine; QQmlComponent c(&engine, QUrl::fromLocalFile(file)); QVERIFY2(c.isReady(), qPrintable(c.errorString())); const QVariantMap properties = file.endsWith("Module.qml") ? QVariantMap() : QVariantMap {{ QStringLiteral("name"), QStringLiteral("foo")}}; QScopedPointer o(c.createWithInitialProperties(properties)); QVERIFY2(!o.isNull(), qPrintable(c.errorString())); } QTEST_MAIN(tst_toolsupport); #include "tst_toolsupport.moc"