remove dep for doxygen
[profile/ivi/ofono-qt.git] / tests / test_ofonomodeminterface.cpp
1 /*
2  * This file is part of ofono-qt
3  *
4  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5  *
6  * Contact: Alexander Kanavin <alex.kanavin@gmail.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * version 2.1 as published by the Free Software Foundation.
11  *
12  * This library is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #include <QtTest/QtTest>
25 #include <QtCore/QObject>
26
27 #include <ofonomodeminterface.h>
28
29 #include <QtDebug>
30
31 class TestOfonoModemInterface : public QObject
32 {
33     Q_OBJECT
34
35 private slots:
36
37     void initTestCase()
38     {
39         mi = new OfonoModemInterface(OfonoModem::ManualSelect, "/phonesim", "org.ofono.NetworkRegistration", OfonoGetAllOnStartup, this);
40         QCOMPARE(mi->modem()->isValid(), true);
41         
42         if (!mi->modem()->powered()) {
43             mi->modem()->setPowered(true);
44             QTest::qWait(5000);
45         }
46         if (!mi->modem()->online()) {
47             mi->modem()->setOnline(true);
48             QTest::qWait(5000);
49         }
50
51     }
52
53     void testOfonoModemInterfaceOnlineOfflineModem()
54     {
55         QSignalSpy validity(mi, SIGNAL(validityChanged(bool)));
56         QCOMPARE(mi->isValid(), true);
57
58         mi->modem()->setOnline(false);
59         QTest::qWait(5000);
60         QCOMPARE(validity.count(), 1);
61         QCOMPARE(validity.takeFirst().at(0).toBool(), false);
62
63         mi->modem()->setOnline(true);
64         QTest::qWait(5000);
65         QCOMPARE(validity.count(), 1);
66         QCOMPARE(validity.takeFirst().at(0).toBool(), true);
67     }
68
69     void testOfonoModemInterfaceAddRemoveModem()
70     {
71         QSignalSpy validity(mi, SIGNAL(validityChanged(bool)));
72         qDebug() << "Please stop oFono and then start it again";
73     
74         for (int i=0; i<30; i++) {
75             if (validity.count() > 0)
76                 break;
77             QTest::qWait(1000);
78         }
79         QCOMPARE(validity.count(), 1);
80         QCOMPARE(validity.takeFirst().at(0).toBool(), false);
81         delete mi;
82         QTest::qWait(10000);
83         mi = new OfonoModemInterface(OfonoModem::ManualSelect, "/phonesim", "org.ofono.NetworkRegistration", OfonoGetAllOnStartup, this);
84         if (!mi->modem()->powered()) {
85             mi->modem()->setPowered(true);
86             QTest::qWait(5000);
87         }
88         if (!mi->modem()->online()) {
89             mi->modem()->setOnline(true);
90             QTest::qWait(5000);
91         }
92         QCOMPARE(validity.count(), 0);
93     }
94
95     void cleanupTestCase()
96     {
97
98     }
99
100
101 private:
102     OfonoModemInterface *mi;
103 };
104
105 QTEST_MAIN(TestOfonoModemInterface)
106 #include "test_ofonomodeminterface.moc"