9f402309cc16e54281f9d4e8aaef5240b8947116
[profile/ivi/audiomanager.git] / PluginRoutingInterfaceAsync / test / testRoutingInterfaceAsyncInterrupt.cpp
1 /**
2  * Copyright (C) 2011, BMW AG
3  *
4  * GeniviAudioMananger AudioManagerDaemon
5  *
6  * \file testRoutingItnerfaceAsyncInterrupt.cpp
7  *
8  * \date 20-Oct-2011 3:42:04 PM
9  * \author Christian Mueller (christian.ei.mueller@bmw.de)
10  *
11  * \section License
12  * GNU Lesser General Public License, version 2.1, with special exception (GENIVI clause)
13  * Copyright (C) 2011, BMW AG Christian Mueller  Christian.ei.mueller@bmw.de
14  *
15  * This program 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.
16  * This program 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, version 2.1, for more details.
17  * You should have received a copy of the GNU Lesser General Public License, version 2.1, along with this program; if not, see <http://www.gnu.org/licenses/lgpl-2.1.html>.
18  * Note that the copyright holders assume that the GNU Lesser General Public License, version 2.1, may also be applicable to programs even in cases in which the program is not a library in the technical sense.
19  * Linking AudioManager statically or dynamically with other modules is making a combined work based on AudioManager. You may license such other modules under the GNU Lesser General Public License, version 2.1. If you do not want to license your linked modules under the GNU Lesser General Public License, version 2.1, you may use the program under the following exception.
20  * As a special exception, the copyright holders of AudioManager give you permission to combine AudioManager with software programs or libraries that are released under any license unless such a combination is not permitted by the license of such a software program or library. You may copy and distribute such a system following the terms of the GNU Lesser General Public License, version 2.1, including this special exception, for AudioManager and the licenses of the other code concerned.
21  * Note that people who make modified versions of AudioManager are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU Lesser General Public License, version 2.1, gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception.
22  *
23  */
24
25 #define INTERRUPT_TEST 1
26
27 #include "testRoutingInterfaceAsync.h"
28 #include "config.h"
29
30 using namespace am;
31 using namespace testing;
32
33 DLT_DECLARE_CONTEXT(DLT_CONTEXT)
34
35 std::vector<std::string> testRoutingInterfaceAsync::pListRoutingPluginDirs = returnListPlugins();
36 am_domainID_t testRoutingInterfaceAsync::mDomainIDCount = 0;
37 RoutingSender testRoutingInterfaceAsync::pRoutingSender = RoutingSender(pListRoutingPluginDirs);
38
39 testRoutingInterfaceAsync::testRoutingInterfaceAsync() :
40         pSocketHandler(), //
41         pReceiveInterface(), //
42         ptimerCallback(this, &testRoutingInterfaceAsync::timerCallback)
43 {
44 }
45
46 testRoutingInterfaceAsync::~testRoutingInterfaceAsync()
47 {
48 }
49
50 void testRoutingInterfaceAsync::SetUp()
51 {
52     DLT_REGISTER_APP("DPtest", "RoutingInterfacetest");
53     DLT_REGISTER_CONTEXT(DLT_CONTEXT, "Main", "Main Context");
54     DLT_LOG(DLT_CONTEXT, DLT_LOG_INFO, DLT_STRING("RoutingSendInterface Test started "));
55
56     std::vector<int> domainIDs;
57     domainIDs.push_back(0);
58     domainIDs.push_back(1);
59
60     EXPECT_CALL(pReceiveInterface,getSocketHandler(_)).WillOnce(DoAll(SetArgReferee<0>(&pSocketHandler), Return(E_OK)));
61     EXPECT_CALL(pReceiveInterface,registerDomain(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleDomainRegister));
62     EXPECT_CALL(pReceiveInterface,registerSource(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleSourceRegister));
63     EXPECT_CALL(pReceiveInterface,registerSink(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleSinkRegister));
64
65     pRoutingSender.startupRoutingInterface(&pReceiveInterface);
66     pRoutingSender.routingInterfacesReady();
67
68     timespec t;
69     t.tv_nsec = 0;
70     t.tv_sec = 4;
71
72     sh_timerHandle_t handle;
73
74     shTimerCallBack *buf = &ptimerCallback;
75     //lets use a timeout so the test will finish
76     pSocketHandler.addTimer(t, buf, handle, (void*) NULL);
77 }
78
79 std::vector<std::string> am::testRoutingInterfaceAsync::returnListPlugins()
80 {
81     std::vector<std::string> list;
82     list.push_back(std::string(DEFAULT_PLUGIN_ROUTING_DIR));
83     return (list);
84 }
85
86 am_Error_e am::testRoutingInterfaceAsync::handleSourceRegister(const am_Source_s & sourceData, am_sourceID_t & sourceID)
87 {
88     sourceID = sourceData.sourceID;
89     pRoutingSender.addSourceLookup(sourceData);
90     return (E_OK);
91 }
92
93 am_Error_e am::testRoutingInterfaceAsync::handleSinkRegister(const am_Sink_s & sinkData, am_sinkID_t & sinkID)
94 {
95     sinkID = sinkData.sinkID;
96     pRoutingSender.addSinkLookup(sinkData);
97     return (E_OK);
98 }
99
100 am_Error_e am::testRoutingInterfaceAsync::handleDomainRegister(const am_Domain_s & domainData, am_domainID_t & domainID)
101 {
102     am_Domain_s domain = domainData;
103     domainID = mDomainIDCount++;
104     domain.domainID = domainID;
105     pRoutingSender.addDomainLookup(domain);
106     return (E_OK);
107 }
108
109 void testRoutingInterfaceAsync::timerCallback(sh_timerHandle_t handle, void *userData)
110 {
111     (void) handle;
112     (void) userData;
113     pSocketHandler.stop_listening();
114 }
115
116 void testRoutingInterfaceAsync::TearDown()
117 {
118     DLT_UNREGISTER_CONTEXT(DLT_CONTEXT);
119 }
120
121 std::string DBUSCOMMAND = "dbus-send --session --print-reply --dest=org.genivi.test /org/genivi/test org.genivi.test.";
122
123 TEST_F(testRoutingInterfaceAsync,hookInterruptStatusChange)
124 {
125     am_sourceID_t sourceID = 2;
126     EXPECT_CALL(pReceiveInterface,hookInterruptStatusChange(sourceID,_)).Times(1);
127     system((DBUSCOMMAND + std::string("InterruptStatusChange int16:2")).c_str());
128     pSocketHandler.start_listenting();
129 }
130
131 TEST_F(testRoutingInterfaceAsync,hookSourceAvailablityStatusChange)
132 {
133     am_sourceID_t sourceID = 2;
134     EXPECT_CALL(pReceiveInterface,hookSourceAvailablityStatusChange(sourceID,_)).Times(1);
135     system((DBUSCOMMAND + std::string("SourceAvailablityStatusChange int16:2")).c_str());
136     pSocketHandler.start_listenting();
137 }
138
139 TEST_F(testRoutingInterfaceAsync,hookSinkAvailablityStatusChange)
140 {
141     am_sinkID_t sinkID = 2;
142     EXPECT_CALL(pReceiveInterface,hookSinkAvailablityStatusChange(sinkID,_)).Times(1);
143     system((DBUSCOMMAND + std::string("SinkAvailablityStatusChange int16:2")).c_str());
144     pSocketHandler.start_listenting();
145 }
146
147 TEST_F(testRoutingInterfaceAsync,hookTimingInformationChanged)
148 {
149     am_connectionID_t connectionID = 4;
150     am_timeSync_t delay = 35;
151     EXPECT_CALL(pReceiveInterface,hookTimingInformationChanged(connectionID,delay)).Times(1);
152     system((DBUSCOMMAND + std::string("timingChanged int16:4 int16:35")).c_str());
153     pSocketHandler.start_listenting();
154 }
155
156 int main(int argc, char **argv)
157 {
158     ::testing::InitGoogleTest(&argc, argv);
159     return RUN_ALL_TESTS();
160 }
161