/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtSensors module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include "test_backends.h" class tst_legacy_sensors : public QObject { Q_OBJECT public: tst_legacy_sensors(QObject *parent = 0) : QObject(parent) { qputenv("QT_SENSORS_LOAD_PLUGINS", "0"); // Do not load plugins register_test_backends(); } private slots: void initTestCase() { } void cleanupTestCase() { } void versions_data() { QTest::addColumn("version"); QTest::addColumn("exists"); QTest::newRow("5.0") << "5.0" << true; } void versions() { QFETCH(QString, version); QFETCH(bool, exists); QQmlEngine engine; QString qml = QString("import QtQuick 2.0\nimport QtSensors %1\nItem {}").arg(version); QQmlComponent c(&engine); c.setData(qml.toLocal8Bit(), QUrl::fromLocalFile(QDir::currentPath())); if (!exists) QTest::ignoreMessage(QtWarningMsg, "QQmlComponent: Component is not ready"); QObject *obj = c.create(); QCOMPARE(exists, (obj != 0)); delete obj; QList errors = c.errors(); if (exists) { QCOMPARE(errors.count(), 0); } else { QCOMPARE(errors.count(), 1); QString expected = QString("module \"QtSensors\" version %1 is not installed").arg(version); QString actual = errors.first().description(); QCOMPARE(expected, actual); } } void elements_data() { QTest::addColumn("version"); QTest::addColumn("element"); QTest::addColumn("exists"); QTest::newRow("5.0 Range") << "5.0" << "Range" << false; QTest::newRow("5.0 OutputRange") << "5.0" << "OutputRange" << false; QTest::newRow("5.0 Sensor") << "5.0" << "Sensor" << false; QTest::newRow("5.0 SensorReading") << "5.0" << "SensorReading" << false; QTest::newRow("5.0 Accelerometer") << "5.0" << "Accelerometer" << true; QTest::newRow("5.0 AccelerometerReading") << "5.0" << "AccelerometerReading" << false; QTest::newRow("5.0 AmbientLightSensor") << "5.0" << "AmbientLightSensor" << true; QTest::newRow("5.0 AmbientLightReading") << "5.0" << "AmbientLightReading" << false; QTest::newRow("5.0 Compass") << "5.0" << "Compass" << true; QTest::newRow("5.0 CompassReading") << "5.0" << "CompassReading" << false; QTest::newRow("5.0 Magnetometer") << "5.0" << "Magnetometer" << true; QTest::newRow("5.0 MagnetometerReading") << "5.0" << "MagnetometerReading" << false; QTest::newRow("5.0 OrientationSensor") << "5.0" << "OrientationSensor" << true; QTest::newRow("5.0 OrientationReading") << "5.0" << "OrientationReading" << false; QTest::newRow("5.0 ProximitySensor") << "5.0" << "ProximitySensor" << true; QTest::newRow("5.0 ProximityReading") << "5.0" << "ProximityReading" << false; QTest::newRow("5.0 RotationSensor") << "5.0" << "RotationSensor" << true; QTest::newRow("5.0 RotationReading") << "5.0" << "RotationReading" << false; QTest::newRow("5.0 TapSensor") << "5.0" << "TapSensor" << true; QTest::newRow("5.0 TapReading") << "5.0" << "TapReading" << false; QTest::newRow("5.0 LightSensor") << "5.0" << "LightSensor" << true; QTest::newRow("5.0 LightReading") << "5.0" << "LightReading" << false; QTest::newRow("5.0 Gyroscope") << "5.0" << "Gyroscope" << true; QTest::newRow("5.0 GyroscopeReading") << "5.0" << "GyroscopeReading" << false; QTest::newRow("5.0 IRProximitySensor") << "5.0" << "IRProximitySensor" << true; QTest::newRow("5.0 IRProximityReading") << "5.0" << "IRProximityReading" << false; QTest::newRow("5.0 TiltSensor") << "5.0" << "TiltSensor" << true; QTest::newRow("5.0 TiltReading") << "5.0" << "TiltReading" << false; QTest::newRow("5.0 SensorGesture") << "5.0" << "SensorGesture" << true; } void elements() { QFETCH(QString, version); QFETCH(QString, element); QFETCH(bool, exists); QQmlEngine engine; QString qml = QString("import QtQuick 2.0\nimport QtSensors %1\n%2 {}").arg(version).arg(element); QQmlComponent c(&engine); c.setData(qml.toLocal8Bit(), QUrl::fromLocalFile(QDir::currentPath())); if (!exists) QTest::ignoreMessage(QtWarningMsg, "QQmlComponent: Component is not ready"); QObject *obj = c.create(); QCOMPARE(exists, (obj != 0)); delete obj; QList errors = c.errors(); if (exists) { QCOMPARE(errors.count(), 0); } else { QCOMPARE(errors.count(), 1); QString expected = QString("Cannot create %1").arg(element); QString actual = errors.first().description(); QCOMPARE(expected, actual); } } void alwaysOn_data() { QTest::addColumn("version"); QTest::addColumn("element"); QTest::addColumn("validSyntax"); QTest::newRow("5.0 Accelerometer") << "5.0" << "Accelerometer" << true; QTest::newRow("5.0 AmbientLightSensor") << "5.0" << "AmbientLightSensor" << true; QTest::newRow("5.0 Compass") << "5.0" << "Compass" << true; QTest::newRow("5.0 Magnetometer") << "5.0" << "Magnetometer" << true; QTest::newRow("5.0 OrientationSensor") << "5.0" << "OrientationSensor" << true; QTest::newRow("5.0 ProximitySensor") << "5.0" << "ProximitySensor" << true; QTest::newRow("5.0 RotationSensor") << "5.0" << "RotationSensor" << true; QTest::newRow("5.0 TapSensor") << "5.0" << "TapSensor" << true; QTest::newRow("5.0 LightSensor") << "5.0" << "LightSensor" << true; QTest::newRow("5.0 Gyroscope") << "5.0" << "Gyroscope" << true; QTest::newRow("5.0 IRProximitySensor") << "5.0" << "IRProximitySensor" << true; QTest::newRow("5.0 TiltSensor") << "5.0" << "TiltSensor" << true; } void alwaysOn() { QFETCH(QString, version); QFETCH(QString, element); QFETCH(bool, validSyntax); QQmlEngine engine; QString qml = QString("import QtQuick 2.0\nimport QtSensors %1\n%2 {\nalwaysOn: true\n}").arg(version).arg(element); QQmlComponent c(&engine); if (!validSyntax) QTest::ignoreMessage(QtWarningMsg, "QQmlComponent: Component is not ready"); c.setData(qml.toLocal8Bit(), QUrl::fromLocalFile(QDir::currentPath())); QObject *obj = c.create(); if (validSyntax) { QVERIFY(obj); QVariant alwaysOn = obj->property("alwaysOn"); QCOMPARE(alwaysOn.isValid(), true); QCOMPARE(alwaysOn.toBool(), true); delete obj; } else { QCOMPARE(obj, static_cast(0)); } } void namespace_api_data() { QTest::addColumn("qmlcode"); QTest::addColumn("expected"); QVariant expected; QStringList sl; foreach (const QByteArray &type, QSensor::sensorTypes()) { sl << QString::fromLocal8Bit(type); qDebug() << type; } expected = sl; QTest::newRow("Sensors.sensorTypes()") << "Item {\n" "property var result\n" "Component.onCompleted: {\n" "result = Sensors.sensorTypes();\n" "}\n" "}" << expected; foreach (const QByteArray &type, QSensor::sensorTypes()) { sl.clear(); foreach (const QByteArray &identifier, QSensor::sensorsForType(type)) { sl << QString::fromLocal8Bit(identifier); } expected = sl; QTest::newRow(QString("Sensors.sensorsForType(\"%1\")").arg(QString::fromLocal8Bit(type)).toLocal8Bit().constData()) << QString( "Item {\n" "property var result\n" "Component.onCompleted: {\n" "result = Sensors.sensorsForType(\"%1\");\n" "}\n" "}").arg(QString::fromLocal8Bit(type)) << expected; expected = QString::fromLocal8Bit(QSensor::defaultSensorForType(type)); QTest::newRow(QString("Sensors.defaultSensorForType(\"%1\")").arg(QString::fromLocal8Bit(type)).toLocal8Bit().constData()) << QString( "Item {\n" "property var result\n" "Component.onCompleted: {\n" "result = Sensors.defaultSensorForType(\"%1\");\n" "}\n" "}").arg(QString::fromLocal8Bit(type)) << expected; } } void namespace_api() { QFETCH(QString, qmlcode); QFETCH(QVariant, expected); QQmlEngine engine; QString qml = QString("import QtQuick 2.0\nimport QtSensors 5.0 as Sensors\n%1").arg(qmlcode); QQmlComponent c(&engine); c.setData(qml.toLocal8Bit(), QUrl::fromLocalFile(QDir::currentPath())); QObject *obj = c.create(); QVERIFY(obj); QVariant result = obj->property("result"); QCOMPARE(expected, result); delete obj; } }; QTEST_MAIN(tst_legacy_sensors) #include "tst_legacy_sensors.moc"