6818b75ce061151242bc0943edb4d3fbba74c4b6
[profile/ivi/genivi/genivi-audio-manager.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
31 using namespace am;
32 using namespace testing;
33
34
35 DLT_DECLARE_CONTEXT(DLT_CONTEXT)
36
37
38 std::vector<std::string> testRoutingInterfaceAsync::pListRoutingPluginDirs=returnListPlugins();
39 am_domainID_t testRoutingInterfaceAsync::mDomainIDCount=0;
40 RoutingSender testRoutingInterfaceAsync::pRoutingSender=RoutingSender(pListRoutingPluginDirs);
41
42 testRoutingInterfaceAsync::testRoutingInterfaceAsync()
43         :pSocketHandler(),
44          pReceiveInterface(),
45          ptimerCallback(this, &testRoutingInterfaceAsync::timerCallback)
46 {
47 }
48
49 testRoutingInterfaceAsync::~testRoutingInterfaceAsync()
50 {
51 }
52
53 void testRoutingInterfaceAsync::SetUp()
54 {
55         DLT_REGISTER_APP("DPtest","RoutingInterfacetest");
56         DLT_REGISTER_CONTEXT(DLT_CONTEXT,"Main","Main Context");
57         DLT_LOG(DLT_CONTEXT,DLT_LOG_INFO, DLT_STRING("RoutingSendInterface Test started "));
58
59         std::vector<int> domainIDs;
60         domainIDs.push_back(0);
61         domainIDs.push_back(1);
62
63         EXPECT_CALL(pReceiveInterface,getSocketHandler(_)).WillOnce(DoAll(SetArgReferee<0>(&pSocketHandler),Return(E_OK)));
64         EXPECT_CALL(pReceiveInterface,registerDomain(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleDomainRegister));
65         EXPECT_CALL(pReceiveInterface,registerSource(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleSourceRegister));
66         EXPECT_CALL(pReceiveInterface,registerSink(_,_)).WillRepeatedly(Invoke(testRoutingInterfaceAsync::handleSinkRegister));
67
68         pRoutingSender.startupRoutingInterface(&pReceiveInterface);
69         pRoutingSender.routingInterfacesReady();
70
71         timespec t;
72         t.tv_nsec=0;
73         t.tv_sec=4;
74
75         sh_timerHandle_t handle;
76
77         shTimerCallBack *buf=&ptimerCallback;
78         //lets use a timeout so the test will finish
79         pSocketHandler.addTimer(t,buf,handle,(void*)NULL);
80 }
81
82 std::vector<std::string> am::testRoutingInterfaceAsync::returnListPlugins()
83 {
84         std::vector<std::string> list;
85         list.push_back(std::string(DEFAULT_PLUGIN_ROUTING_DIR));
86         return (list);
87 }
88
89 am_Error_e am::testRoutingInterfaceAsync::handleSourceRegister(const am_Source_s & sourceData, am_sourceID_t & sourceID)
90 {
91         sourceID=sourceData.sourceID;
92         pRoutingSender.addSourceLookup(sourceData);
93         return (E_OK);
94 }
95
96 am_Error_e am::testRoutingInterfaceAsync::handleSinkRegister(const am_Sink_s & sinkData, am_sinkID_t & sinkID)
97 {
98         sinkID=sinkData.sinkID;
99         pRoutingSender.addSinkLookup(sinkData);
100         return(E_OK);
101 }
102
103 am_Error_e am::testRoutingInterfaceAsync::handleDomainRegister(const am_Domain_s & domainData, am_domainID_t & domainID)
104 {
105         am_Domain_s domain=domainData;
106         domainID=mDomainIDCount++;
107         domain.domainID=domainID;
108         pRoutingSender.addDomainLookup(domain);
109         return (E_OK);
110 }
111
112 void am::testRoutingInterfaceAsync::timerCallback(sh_timerHandle_t handle, void *userData)
113 {
114         pSocketHandler.stop_listening();
115 }
116
117 void testRoutingInterfaceAsync::TearDown()
118 {
119         DLT_UNREGISTER_CONTEXT(DLT_CONTEXT);
120 }
121
122 std::string DBUSCOMMAND = "dbus-send --session --print-reply --dest=org.genivi.test /org/genivi/test org.genivi.test.";
123
124
125
126 TEST_F(testRoutingInterfaceAsync,hookInterruptStatusChange)
127 {
128         am_sourceID_t sourceID=2;
129         EXPECT_CALL(pReceiveInterface,hookInterruptStatusChange(sourceID,_)).Times(1);
130         system((DBUSCOMMAND + std::string("InterruptStatusChange int16:2")).c_str());
131         pSocketHandler.start_listenting();
132 }
133
134 TEST_F(testRoutingInterfaceAsync,hookSourceAvailablityStatusChange)
135 {
136         am_sourceID_t sourceID=2;
137         EXPECT_CALL(pReceiveInterface,hookSourceAvailablityStatusChange(sourceID,_)).Times(1);
138         system((DBUSCOMMAND + std::string("SourceAvailablityStatusChange int16:2")).c_str());
139         pSocketHandler.start_listenting();
140 }
141
142 TEST_F(testRoutingInterfaceAsync,hookSinkAvailablityStatusChange)
143 {
144         am_sinkID_t sinkID=2;
145         EXPECT_CALL(pReceiveInterface,hookSinkAvailablityStatusChange(sinkID,_)).Times(1);
146         system((DBUSCOMMAND + std::string("SinkAvailablityStatusChange int16:2")).c_str());
147         pSocketHandler.start_listenting();
148 }
149
150 TEST_F(testRoutingInterfaceAsync,hookTimingInformationChanged)
151 {
152         am_connectionID_t connectionID=4;
153         am_timeSync_t delay=35;
154         EXPECT_CALL(pReceiveInterface,hookTimingInformationChanged(connectionID,delay)).Times(1);
155         system((DBUSCOMMAND + std::string("timingChanged int16:4 int16:35")).c_str());
156         pSocketHandler.start_listenting();
157 }
158
159 int main(int argc, char **argv)
160 {
161         ::testing::InitGoogleTest(&argc, argv);
162         return RUN_ALL_TESTS();
163 }
164
165