Add test for OfonoModemInterface class
authorAlexander Kanavin <alexander.kanavin@nokia.com>
Thu, 18 Nov 2010 20:09:42 +0000 (22:09 +0200)
committerAlexander Kanavin <alexander.kanavin@nokia.com>
Thu, 18 Nov 2010 20:09:42 +0000 (22:09 +0200)
tests/test_ofonomodeminterface.cpp [new file with mode: 0644]
tests/test_ofonomodeminterface.pro [new file with mode: 0644]
tests/tests.pro

diff --git a/tests/test_ofonomodeminterface.cpp b/tests/test_ofonomodeminterface.cpp
new file mode 100644 (file)
index 0000000..4a0fba3
--- /dev/null
@@ -0,0 +1,110 @@
+/*
+ * This file is part of ofono-qt
+ *
+ * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+ *
+ * Contact: Alexander Kanavin <alexander.kanavin@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
+#include <QtTest/QtTest>
+#include <QtCore/QObject>
+
+#include <ofonomodeminterface.h>
+
+#include <QtDebug>
+
+class TestOfonoModemInterface : public QObject
+{
+    Q_OBJECT
+
+private slots:
+
+    void initTestCase()
+    {
+       mi = new OfonoModemInterface(OfonoModem::ManualSelect, "/phonesim", "org.ofono.NetworkRegistration", OfonoInterface::GetAllOnStartup, this);
+       
+       if (!mi->modem()->powered()) {
+           mi->modem()->setPowered(true);
+            QTest::qWait(5000);
+        }
+        if (!mi->modem()->online()) {
+           mi->modem()->setOnline(true);
+            QTest::qWait(5000);
+        }
+
+    }
+
+    void testOfonoModemInterfaceOnlineOfflineModem()
+    {
+        QSignalSpy validity(mi, SIGNAL(validityChanged(bool)));
+        QSignalSpy property(mi, SIGNAL(propertyChanged(QString, QVariant)));
+        QCOMPARE(mi->isValid(), true);
+        QVERIFY(mi->properties()["Name"].toString().length() > 0);
+
+        mi->modem()->setOnline(false);
+        QTest::qWait(5000);
+        QCOMPARE(validity.count(), 1);
+        QCOMPARE(validity.takeFirst().at(0).toBool(), false);
+        QCOMPARE(property.count(), 0);
+
+        mi->modem()->setOnline(true);
+        QTest::qWait(5000);
+        QCOMPARE(validity.count(), 1);
+        QCOMPARE(validity.takeFirst().at(0).toBool(), true);
+        QVERIFY(property.count() > 0);
+    }
+
+    void testOfonoModemInterfaceAddRemoveModem()
+    {
+        QSignalSpy validity(mi, SIGNAL(validityChanged(bool)));
+        QSignalSpy property(mi, SIGNAL(propertyChanged(QString, QVariant)));
+        qDebug() << "Please stop oFono and then start it again";
+    
+        for (int i=0; i<30; i++) {
+            QTest::qWait(1000);
+        }
+        QCOMPARE(validity.count(), 1);
+        QCOMPARE(validity.takeFirst().at(0).toBool(), false);
+        QCOMPARE(property.count(), 0);
+
+        delete mi;
+       mi = new OfonoModemInterface(OfonoModem::ManualSelect, "/phonesim", "org.ofono.NetworkRegistration", OfonoInterface::GetAllOnStartup, this);
+       if (!mi->modem()->powered()) {
+           mi->modem()->setPowered(true);
+            QTest::qWait(5000);
+        }
+        if (!mi->modem()->online()) {
+           mi->modem()->setOnline(true);
+            QTest::qWait(5000);
+        }
+        QCOMPARE(validity.count(), 0);
+        QCOMPARE(property.count(), 0);
+    }
+
+    void cleanupTestCase()
+    {
+
+    }
+
+
+private:
+    OfonoModemInterface *mi;
+};
+
+QTEST_MAIN(TestOfonoModemInterface)
+#include "test_ofonomodeminterface.moc"
diff --git a/tests/test_ofonomodeminterface.pro b/tests/test_ofonomodeminterface.pro
new file mode 100644 (file)
index 0000000..47303c4
--- /dev/null
@@ -0,0 +1,2 @@
+include(testcase.pro)
+SOURCES = test_ofonomodeminterface.cpp
index 2652e06..4f62fe5 100644 (file)
@@ -2,6 +2,7 @@ TEMPLATE = subdirs
 SUBDIRS += test_ofonointerface.pro
 SUBDIRS += test_ofonomodemmanager.pro
 SUBDIRS += test_ofonomodem.pro
+SUBDIRS += test_ofonomodeminterface.pro
 SUBDIRS += test_ofonophonebook.pro
 SUBDIRS += test_ofonomessagewaiting.pro
 SUBDIRS += test_ofonomessagemanager.pro