summaryrefslogtreecommitdiffstats
path: root/tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2021-10-21 17:27:08 +0200
committerIvan Solovev <ivan.solovev@qt.io>2021-11-02 09:46:33 +0200
commit6db775f6d9d72cf8ee9d66333b8424e74be1e352 (patch)
tree0a293756b61619a91970d9368a0449b7bf922728 /tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp
parent5a1f44c3d41febca8480c077bd4c34e5a3332cdc (diff)
Remove QtPositioning module from qtlocation.git6.2.46.2.36.2.26.2
Turns out that our CI does not support repos without any tests. This is treated like an error and leads to integration failure. This patch fixes it by disabling tests in coin/module_config.yaml. This config should be fixed when QtLocation tests are enabled Task-number: QTBUG-97084 Change-Id: Ib06e865fe2836806bbbee34345f06b471dd48660 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alex Blasche <alexander.blasche@qt.io> (cherry picked from commit 23f32792ad53e23bbafbff6d7667f0bb0f69fc53)
Diffstat (limited to 'tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp')
-rw-r--r--tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp438
1 files changed, 0 insertions, 438 deletions
diff --git a/tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp b/tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp
deleted file mode 100644
index c99e222f..00000000
--- a/tests/auto/qgeosatelliteinfo/tst_qgeosatelliteinfo.cpp
+++ /dev/null
@@ -1,438 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite 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$
-**
-****************************************************************************/
-
-//TESTED_COMPONENT=src/location
-
-#include <QtPositioning/qgeosatelliteinfo.h>
-
-#include <QMetaType>
-#include <QObject>
-#include <QDebug>
-#include <QTest>
-
-#include <float.h>
-#include <limits.h>
-
-QT_USE_NAMESPACE
-Q_DECLARE_METATYPE(QGeoSatelliteInfo::Attribute)
-
-QByteArray tst_qgeosatelliteinfo_debug;
-
-void tst_qgeosatelliteinfo_messageHandler(QtMsgType type, const QMessageLogContext &, const QString &msg)
-{
- switch (type) {
- case QtDebugMsg :
- tst_qgeosatelliteinfo_debug = msg.toLocal8Bit();
- break;
- default:
- break;
- }
-}
-
-
-QList<qreal> tst_qgeosatelliteinfo_qrealTestValues()
-{
- QList<qreal> values;
-
- if (qreal(DBL_MIN) == DBL_MIN)
- values << DBL_MIN;
-
- values << FLT_MIN;
- values << -1.0 << 0.0 << 1.0;
- values << FLT_MAX;
-
- if (qreal(DBL_MAX) == DBL_MAX)
- values << DBL_MAX;
-
- return values;
-}
-
-QList<int> tst_qgeosatelliteinfo_intTestValues()
-{
- QList<int> values;
- values << INT_MIN << -100 << 0 << 100 << INT_MAX;
- return values;
-}
-
-QList<QGeoSatelliteInfo::Attribute> tst_qgeosatelliteinfo_getAttributes()
-{
- QList<QGeoSatelliteInfo::Attribute> attributes;
- attributes << QGeoSatelliteInfo::Elevation
- << QGeoSatelliteInfo::Azimuth;
- return attributes;
-}
-
-
-class tst_QGeoSatelliteInfo : public QObject
-{
- Q_OBJECT
-
-private:
- QGeoSatelliteInfo updateWithAttribute(QGeoSatelliteInfo::Attribute attribute, qreal value)
- {
- QGeoSatelliteInfo info;
- info.setAttribute(attribute, value);
- return info;
- }
-
- void addTestData_update()
- {
- QTest::addColumn<QGeoSatelliteInfo>("info");
-
- QList<int> intValues = tst_qgeosatelliteinfo_intTestValues();
-
- for (int i=0; i<intValues.count(); i++) {
- QGeoSatelliteInfo info;
- info.setSignalStrength(intValues[i]);
- QTest::newRow("signal strength") << info;
- }
-
- for (int i=0; i<intValues.count(); i++) {
- QGeoSatelliteInfo info;
- info.setSatelliteIdentifier(intValues[i]);
- QTest::newRow("satellite identifier") << info;
- }
-
- QGeoSatelliteInfo info;
- info.setSatelliteSystem(QGeoSatelliteInfo::GPS);
- QTest::newRow("satellite system") << info;
- info.setSatelliteSystem(QGeoSatelliteInfo::GLONASS);
- QTest::newRow("satellite system") << info;
-
- QList<QGeoSatelliteInfo::Attribute> attributes = tst_qgeosatelliteinfo_getAttributes();
- QList<qreal> qrealValues = tst_qgeosatelliteinfo_qrealTestValues();
- for (int i=0; i<attributes.count(); i++) {
- QTest::newRow(qPrintable(QString("Attribute %1 = %2").arg(attributes[i]).arg(qrealValues[i])))
- << updateWithAttribute(attributes[i], qrealValues[i]);
- }
- }
-
-private slots:
- void constructor()
- {
- QGeoSatelliteInfo info;
- QCOMPARE(info.signalStrength(), -1);
- QCOMPARE(info.satelliteIdentifier(), -1);
- QCOMPARE(info.satelliteSystem(), QGeoSatelliteInfo::Undefined);
- QList<QGeoSatelliteInfo::Attribute> attributes = tst_qgeosatelliteinfo_getAttributes();
- for (int i=0; i<attributes.count(); i++)
- QCOMPARE(info.attribute(attributes[i]), qreal(-1.0));
- }
- void constructor_copy()
- {
- QFETCH(QGeoSatelliteInfo, info);
-
- QCOMPARE(QGeoSatelliteInfo(info), info);
- }
-
- void constructor_copy_data()
- {
- addTestData_update();
- }
-
- void constructor_move()
- {
- QFETCH(QGeoSatelliteInfo, info);
- QGeoSatelliteInfo infoCopy = info;
- QCOMPARE(QGeoSatelliteInfo(std::move(info)), infoCopy);
- // The moved-from object will go out of scope and will be destroyed
- // here, so we also implicitly check that moved-from object's destructor
- // is called without any issues.
- }
-
- void constructor_move_data()
- {
- addTestData_update();
- }
-
- void operator_comparison()
- {
- QFETCH(QGeoSatelliteInfo, info);
-
- QVERIFY(info == info);
- QCOMPARE(info != info, false);
- QCOMPARE(info == QGeoSatelliteInfo(), false);
- QCOMPARE(info != QGeoSatelliteInfo(), true);
-
- QVERIFY(QGeoSatelliteInfo() == QGeoSatelliteInfo());
- }
-
- void operator_comparison_data()
- {
- addTestData_update();
- }
-
- void operator_assign()
- {
- QFETCH(QGeoSatelliteInfo, info);
-
- QGeoSatelliteInfo info2 = info;
- QCOMPARE(info2, info);
- }
-
- void operator_assign_data()
- {
- addTestData_update();
- }
-
- void operator_move_assign()
- {
- QFETCH(QGeoSatelliteInfo, info);
- QGeoSatelliteInfo infoCopy = info;
-
- QGeoSatelliteInfo obj;
- obj = std::move(info);
- QCOMPARE(obj, infoCopy);
-
- // check that (move)assigning to the moved-from object is ok
- info = std::move(infoCopy);
- QCOMPARE(info, obj);
- }
-
- void operator_move_assign_data()
- {
- addTestData_update();
- }
-
- void setSignalStrength()
- {
- QFETCH(int, signal);
-
- QGeoSatelliteInfo info;
- QCOMPARE(info.signalStrength(), -1);
-
- info.setSignalStrength(signal);
- QCOMPARE(info.signalStrength(), signal);
- }
-
- void setSignalStrength_data()
- {
- QTest::addColumn<int>("signal");
-
- QList<int> intValues = tst_qgeosatelliteinfo_intTestValues();
- for (int i=0; i<intValues.count(); i++)
- QTest::newRow(qPrintable(QString("%1").arg(intValues[i]))) << intValues[i];
- }
- void setSatelliteIdentifier()
- {
- QFETCH(int, satId);
-
- QGeoSatelliteInfo info;
- QCOMPARE(info.satelliteIdentifier(), -1);
-
- info.setSatelliteIdentifier(satId);
- QCOMPARE(info.satelliteIdentifier(), satId);
- }
-
- void setSatelliteIdentifier_data()
- {
- QTest::addColumn<int>("satId");
-
- QList<int> intValues = tst_qgeosatelliteinfo_intTestValues();
- for (int i=0; i<intValues.count(); i++)
- QTest::newRow(qPrintable(QString("%1").arg(intValues[i]))) << intValues[i];
- }
-
- void setSatelliteSystem()
- {
- QFETCH(int, system);
-
- QGeoSatelliteInfo info;
- QCOMPARE(info.satelliteSystem(), QGeoSatelliteInfo::Undefined);
-
- info.setSatelliteSystem(static_cast<QGeoSatelliteInfo::SatelliteSystem>(system));
- QCOMPARE(info.satelliteSystem(), static_cast<QGeoSatelliteInfo::SatelliteSystem>(system));
- }
-
- void setSatelliteSystem_data()
- {
- QTest::addColumn<int>("system");
-
- QTest::newRow("Sat system undefined")
- << int(QGeoSatelliteInfo::Undefined);
- QTest::newRow("Sat system GPS")
- << int(QGeoSatelliteInfo::GPS);
- QTest::newRow("Sat system GLONASS")
- << int(QGeoSatelliteInfo::GLONASS);
- }
-
- void attribute()
- {
- QFETCH(QGeoSatelliteInfo::Attribute, attribute);
- QFETCH(qreal, value);
-
- QGeoSatelliteInfo u;
- QCOMPARE(u.attribute(attribute), qreal(-1.0));
-
- u.setAttribute(attribute, value);
- QCOMPARE(u.attribute(attribute), value);
- u.removeAttribute(attribute);
- QCOMPARE(u.attribute(attribute), qreal(-1.0));
- }
-
- void attribute_data()
- {
- QTest::addColumn<QGeoSatelliteInfo::Attribute>("attribute");
- QTest::addColumn<qreal>("value");
-
- QList<QGeoSatelliteInfo::Attribute> props;
- props << QGeoSatelliteInfo::Elevation
- << QGeoSatelliteInfo::Azimuth;
- for (int i=0; i<props.count(); i++) {
- QTest::newRow(qPrintable(QString("Attribute %1 = -1.0").arg(props[i])))
- << props[i]
- << qreal(-1.0);
- QTest::newRow(qPrintable(QString("Attribute %1 = 0.0").arg(props[i])))
- << props[i]
- << qreal(0.0);
- QTest::newRow(qPrintable(QString("Attribute %1 = 1.0").arg(props[i])))
- << props[i]
- << qreal(1.0);
- }
- }
-
- void hasAttribute()
- {
- QFETCH(QGeoSatelliteInfo::Attribute, attribute);
- QFETCH(qreal, value);
-
- QGeoSatelliteInfo u;
- QVERIFY(!u.hasAttribute(attribute));
-
- u.setAttribute(attribute, value);
- QVERIFY(u.hasAttribute(attribute));
-
- u.removeAttribute(attribute);
- QVERIFY(!u.hasAttribute(attribute));
- }
-
- void hasAttribute_data()
- {
- attribute_data();
- }
-
- void removeAttribute()
- {
- QFETCH(QGeoSatelliteInfo::Attribute, attribute);
- QFETCH(qreal, value);
-
- QGeoSatelliteInfo u;
- QVERIFY(!u.hasAttribute(attribute));
-
- u.setAttribute(attribute, value);
- QVERIFY(u.hasAttribute(attribute));
-
- u.removeAttribute(attribute);
- QVERIFY(!u.hasAttribute(attribute));
-
- u.setAttribute(attribute, value);
- QVERIFY(u.hasAttribute(attribute));
- }
-
- void removeAttribute_data()
- {
- attribute_data();
- }
-
- void datastream()
- {
- QFETCH(QGeoSatelliteInfo, info);
-
- QByteArray ba;
- QDataStream out(&ba, QIODevice::WriteOnly);
- out << info;
-
- QDataStream in(&ba, QIODevice::ReadOnly);
- QGeoSatelliteInfo inInfo;
- in >> inInfo;
- QCOMPARE(inInfo, info);
- }
-
- void datastream_data()
- {
- addTestData_update();
- }
-
- void debug()
- {
- QFETCH(QGeoSatelliteInfo, info);
- QFETCH(int, nextValue);
- QFETCH(QByteArray, debugString);
-
- qInstallMessageHandler(tst_qgeosatelliteinfo_messageHandler);
- qDebug() << info << nextValue;
- qInstallMessageHandler(0);
- QCOMPARE(QString(tst_qgeosatelliteinfo_debug), QString(debugString));
- }
-
- void debug_data()
- {
- QTest::addColumn<QGeoSatelliteInfo>("info");
- QTest::addColumn<int>("nextValue");
- QTest::addColumn<QByteArray>("debugString");
-
- QGeoSatelliteInfo info;
-
- QTest::newRow("uninitialized") << info << 45
- << QByteArray("QGeoSatelliteInfo(system=0, satId=-1, signal-strength=-1) 45");
-
- info = QGeoSatelliteInfo();
- info.setSignalStrength(1);
- QTest::newRow("with SignalStrength") << info << 60
- << QByteArray("QGeoSatelliteInfo(system=0, satId=-1, signal-strength=1) 60");
-
- info = QGeoSatelliteInfo();
- info.setSatelliteIdentifier(1);
- QTest::newRow("with SatelliteIdentifier") << info << -1
- << QByteArray("QGeoSatelliteInfo(system=0, satId=1, signal-strength=-1) -1");
-
- info = QGeoSatelliteInfo();
- info.setSatelliteSystem(QGeoSatelliteInfo::GPS);
- QTest::newRow("with System GPS") << info << 1
- << QByteArray("QGeoSatelliteInfo(system=1, satId=-1, signal-strength=-1) 1");
-
- info = QGeoSatelliteInfo();
- info.setSatelliteSystem(QGeoSatelliteInfo::GLONASS);
- QTest::newRow("with System GLONASS") << info << 56
- << QByteArray("QGeoSatelliteInfo(system=2, satId=-1, signal-strength=-1) 56");
-
- info = QGeoSatelliteInfo();
- info.setAttribute(QGeoSatelliteInfo::Elevation, 1.1);
- QTest::newRow("with Elevation") << info << 0
- << QByteArray("QGeoSatelliteInfo(system=0, satId=-1, signal-strength=-1, Elevation=1.1) 0");
-
- info = QGeoSatelliteInfo();
- info.setAttribute(QGeoSatelliteInfo::Azimuth, 1.1);
- QTest::newRow("with Azimuth") << info << 45
- << QByteArray("QGeoSatelliteInfo(system=0, satId=-1, signal-strength=-1, Azimuth=1.1) 45");
- }
-};
-
-
-QTEST_APPLESS_MAIN(tst_QGeoSatelliteInfo)
-#include "tst_qgeosatelliteinfo.moc"