File: CellBroadcastTest.cpp

package info (click to toggle)
telepathy-ofono 0.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,040 kB
  • sloc: cpp: 8,940; ansic: 668; xml: 263; sh: 52; python: 20; sql: 17; makefile: 16
file content (166 lines) | stat: -rw-r--r-- 6,858 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
 * Copyright (C) 2022 Ubports Foundation.
 *
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License version 3, as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 * SATISFACTORY QUALITY, 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 program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *  Lionel Duboeuf <lduboeuf@ouvaton.org>
 */

#include <QDebug>

#include <QtCore/QObject>
#include <QtTest/QtTest>
#include <QVariant>
#include <TelepathyQt/Contact>
#include <TelepathyQt/ContactManager>
#include <TelepathyQt/PendingContacts>
#include <TelepathyQt/PendingOperation>
#include <TelepathyQt/TextChannel>
#include <TelepathyQt/ReceivedMessage>
#include "telepathyhelper.h"
#include "ofonomockcontroller.h"
#include "handler.h"
#include "approvertext.h"
#include "cellbroadcast-types.h"

Q_DECLARE_METATYPE(Tp::TextChannelPtr);
Q_DECLARE_METATYPE(QList<Tp::ContactPtr>);

class CellBroadcastTest : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void initTestCase();
    void testCMASCellBroadcast();
    void testETWSCellBroadcast();
private:
    Approver *mApprover;
    Handler *mHandler;
};

void CellBroadcastTest::initTestCase()
{
    qRegisterMetaType<Tp::Presence>();
    qRegisterMetaType<Tp::TextChannelPtr>();
    qRegisterMetaType<Tp::PendingOperation*>();
    qRegisterMetaType<QList<Tp::ContactPtr> >();
    TelepathyHelper::instance();

    QSignalSpy spy(TelepathyHelper::instance(), SIGNAL(accountReady()));
    QTRY_COMPARE(spy.count(), 1);

    OfonoMockController::instance()->SimManagerSetPresence(true);
    OfonoMockController::instance()->SimManagerSetPinRequired("none");
    OfonoMockController::instance()->ModemSetOnline();
    OfonoMockController::instance()->NetworkRegistrationSetStatus("registered");
    // the account should be connected
    QTRY_VERIFY(TelepathyHelper::instance()->connected());

    mHandler = new Handler(this);
    TelepathyHelper::instance()->registerClient(mHandler, "TpOfonoTestHandler");
    QTRY_VERIFY(mHandler->isRegistered());

    // register the approver
    mApprover = new Approver(this);
    TelepathyHelper::instance()->registerClient(mApprover, "TpOfonoTestApprover");
    // Tp-qt does not set registered status to approvers
    QTRY_VERIFY(QDBusConnection::sessionBus().interface()->isServiceRegistered(TELEPHONY_SERVICE_APPROVER));

    // we need to wait in order to give telepathy time to notify about the approver and handler
    QTest::qWait(1000);
}

void CellBroadcastTest::testCMASCellBroadcast()
{

    QMap<quint16, CellBroadcast::Type> channelsToTypes = {
        {25, CellBroadcast::TYPE_OTHER},
        {2360, CellBroadcast::TYPE_OTHER},
        {4370, CellBroadcast::TYPE_LEVEL_1},
        {4371, CellBroadcast::TYPE_LEVEL_2},
        {4372, CellBroadcast::TYPE_LEVEL_2},
        {4373, CellBroadcast::TYPE_LEVEL_3},
        {4374, CellBroadcast::TYPE_LEVEL_3},
        {4375, CellBroadcast::TYPE_LEVEL_3},
        {4376, CellBroadcast::TYPE_LEVEL_3},
        {4377, CellBroadcast::TYPE_LEVEL_3},
        {4378, CellBroadcast::TYPE_LEVEL_3},
        {4379, CellBroadcast::TYPE_AMBER},
        {4380, CellBroadcast::TYPE_MONTHLY_TEST},
        {4381, CellBroadcast::TYPE_EXERCISE},
        {4382, CellBroadcast::TYPE_RESERVED},
        {4398, CellBroadcast::TYPE_TEST},

    };

    QSignalSpy spy(mHandler, SIGNAL(textChannelAvailable(Tp::TextChannelPtr)));
    Q_FOREACH(quint16 channel, channelsToTypes.keys()) {
        OfonoMockController::instance()->CellBroadcastCMASNotification("Notification message", channel);
    }

    QTRY_COMPARE(spy.count(), 1);

    Tp::TextChannelPtr channel = spy.first().first().value<Tp::TextChannelPtr>();
    QVERIFY(channel);

    QCOMPARE(channel->messageQueue().count(), channelsToTypes.count());

    for(int i=0; i < channel->messageQueue().count(); i++) {
        Tp::ReceivedMessage message = channel->messageQueue().at(i);
        QCOMPARE(message.sender()->id(), QString(CellBroadcast::CELLBROADCAST_IDENTIFIER));
        QCOMPARE(message.header().value("subject").variant().toInt(), channelsToTypes.keys().at(i));
        QCOMPARE(message.header().value(CellBroadcast::CELLBROADCAST_IDENTIFIER_TYPE).variant().toInt(), channelsToTypes.values().at(i));
        QCOMPARE(message.text(), QString("Notification message"));
        QCOMPARE(message.messageType(), Tp::ChannelTextMessageTypeNotice);
    }

    channel->requestClose();
}

void CellBroadcastTest::testETWSCellBroadcast()
{
    QList<QString> etwsTopicNames = QList<QString>() << "Earthquake" << "Tsunami" << "Earthquake+Tsunami" << "Other" << "Fake";
    QList<CellBroadcast::ETWS> expectedTopics = QList<CellBroadcast::ETWS>() << CellBroadcast::ETWS_ALERT_EARTHQUAKE << CellBroadcast::ETWS_ALERT_TSUNAMI << CellBroadcast::ETWS_ALERT_EARTHQUAKE_AND_TSUNAMI << CellBroadcast::ETWS_ALERT_OTHER << CellBroadcast::ETWS_ALERT_OTHER;
    QList<CellBroadcast::Type> expectedTopicType = QList<CellBroadcast::Type>() << CellBroadcast::TYPE_LEVEL_1 << CellBroadcast::TYPE_LEVEL_2 << CellBroadcast::TYPE_LEVEL_3;

    QSignalSpy spy(mHandler, SIGNAL(textChannelAvailable(Tp::TextChannelPtr)));


    for(int i=0; i < etwsTopicNames.count(); i++)
    {
        OfonoMockController::instance()->CellBroadcastETWSNotification("Notification message", etwsTopicNames.at(i), true, true);
        OfonoMockController::instance()->CellBroadcastETWSNotification("Notification message", etwsTopicNames.at(i), true, false);
        OfonoMockController::instance()->CellBroadcastETWSNotification("Notification message", etwsTopicNames.at(i), false, false);
    }

    QTRY_COMPARE(spy.count(), 1);
    Tp::TextChannelPtr channel = spy.first().first().value<Tp::TextChannelPtr>();
    QVERIFY(channel);

    QCOMPARE(channel->messageQueue().count(), etwsTopicNames.count() * 3);
    for(int i=0; i < channel->messageQueue().count(); i++) {
        Tp::ReceivedMessage message = channel->messageQueue().at(i);
        QCOMPARE(message.sender()->id(), QString(CellBroadcast::CELLBROADCAST_IDENTIFIER));
        QCOMPARE(message.header().value("subject").variant().toInt(), expectedTopics.at(i / 3));
        QCOMPARE(message.header().value(CellBroadcast::CELLBROADCAST_IDENTIFIER_TYPE).variant().toInt(), expectedTopicType.at(i % 3));
        QCOMPARE(message.text(), QString("Notification message"));
        QCOMPARE(message.messageType(), Tp::ChannelTextMessageTypeNotice);
    }

    channel->requestClose();
}

QTEST_MAIN(CellBroadcastTest)
#include "CellBroadcastTest.moc"