/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtScxml module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include class tst_DynamicMetaObject: public QObject { Q_OBJECT private Q_SLOTS: void dynamicPartCheck_data(); void dynamicPartCheck(); }; void tst_DynamicMetaObject::dynamicPartCheck_data() { QTest::addColumn("scxmlFileName"); QTest::addColumn("expectedProperties"); QTest::addColumn("expectedSignals"); { // test1.scxml const QStringList expectedProperties = { QLatin1String("a"), QLatin1String("b") }; const QStringList expectedSignals = { QLatin1String("aChanged(bool)"), QLatin1String("bChanged(bool)") }; QTest::newRow("test1") << QString(":/tst_dynamicmetaobject/test1.scxml") << expectedProperties << expectedSignals; } { // mediaplayer.scxml const QStringList expectedProperties = { QLatin1String("stopped"), QLatin1String("playing") }; const QStringList expectedSignals = { QLatin1String("stoppedChanged(bool)"), QLatin1String("playingChanged(bool)") }; QTest::newRow("mediaplayer") << QString(":/tst_dynamicmetaobject/mediaplayer.scxml") << expectedProperties << expectedSignals; } } void tst_DynamicMetaObject::dynamicPartCheck() { QFETCH(QString, scxmlFileName); QFETCH(QStringList, expectedProperties); QFETCH(QStringList, expectedSignals); QScopedPointer stateMachine(QScxmlStateMachine::fromFile(scxmlFileName)); QVERIFY(!stateMachine.isNull()); QVERIFY(!stateMachine->parseErrors().count()); const QMetaObject *metaObject = stateMachine->metaObject(); QStringList dynamicProperties; for (int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); i++) { const QMetaProperty metaProperty = metaObject->property(i); dynamicProperties << metaProperty.name(); } QStringList dynamicSignals; for (int i = metaObject->methodOffset(); i < metaObject->methodCount(); i++) { const QMetaMethod metaMethod = metaObject->method(i); if (metaMethod.methodType() == QMetaMethod::Signal) dynamicSignals << metaMethod.methodSignature(); } // TODO: remove sorting when we drop QSet internally expectedProperties.sort(); expectedSignals.sort(); dynamicProperties.sort(); dynamicSignals.sort(); QCOMPARE(dynamicProperties, expectedProperties); QCOMPARE(dynamicSignals, expectedSignals); } QTEST_MAIN(tst_DynamicMetaObject) #include "tst_dynamicmetaobject.moc"