summaryrefslogtreecommitdiff
path: root/AudioManagerCore/test/AmMapHandlerTest
diff options
context:
space:
mode:
authorJens Lorenz <jlorenz@de.adit-jv.com>2016-11-25 15:29:14 +0100
committerJens Lorenz <jlorenz@de.adit-jv.com>2016-11-25 15:29:14 +0100
commit30754a4100cf18b6d0b689bafbb23583d165f81b (patch)
treea2824e2e40e7c90d4f576a1dc57a7f4ba5d325be /AudioManagerCore/test/AmMapHandlerTest
parent70f3263edf097b7990fcd2d27d4d47da34b6c0da (diff)
downloadaudiomanager-30754a4100cf18b6d0b689bafbb23583d165f81b.tar.gz
AMCore: Fix deamon to update interrupt state of source.
Signed-off-by: Toshiaki Isogai <tisogai@jp.adit-jv.com>
Diffstat (limited to 'AudioManagerCore/test/AmMapHandlerTest')
-rw-r--r--AudioManagerCore/test/AmMapHandlerTest/CAmMapHandlerTest.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/AudioManagerCore/test/AmMapHandlerTest/CAmMapHandlerTest.cpp b/AudioManagerCore/test/AmMapHandlerTest/CAmMapHandlerTest.cpp
index 4c91d2a..559764d 100644
--- a/AudioManagerCore/test/AmMapHandlerTest/CAmMapHandlerTest.cpp
+++ b/AudioManagerCore/test/AmMapHandlerTest/CAmMapHandlerTest.cpp
@@ -480,6 +480,26 @@ TEST_F(CAmMapHandlerTest,sourceState)
ASSERT_EQ(listSources[0].sourceState, SS_ON);
}
+TEST_F(CAmMapHandlerTest,sourceInterruptState)
+{
+ am_Source_s source;
+ am_sourceID_t sourceID;
+ std::vector<am_Source_s> listSources;
+ pCF.createSource(source);
+ source.interruptState = IS_OFF;
+
+ //prepare the test
+
+ ASSERT_EQ(E_OK, pDatabaseHandler.enterSourceDB(source,sourceID));
+
+ //change the source interrupt state
+ ASSERT_EQ(E_OK, pDatabaseHandler.changeSourceInterruptState(sourceID,IS_INTERRUPTED));
+
+ //read out the changed values
+ ASSERT_EQ(E_OK, pDatabaseHandler.getListSources(listSources));
+ ASSERT_EQ(listSources[0].interruptState, IS_INTERRUPTED);
+}
+
TEST_F(CAmMapHandlerTest,sinkVolumeChange)
{
am_Sink_s sink;