summaryrefslogtreecommitdiff
path: root/PluginCommandInterfaceDbus
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-02-21 10:46:12 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-02-21 10:46:12 +0100
commit906f202f7663e6c372c192d3bd7015d32a0fbc34 (patch)
treefc4b20038c058098b632e1a2a2f13537244c6e6f /PluginCommandInterfaceDbus
parentad7b1f5816c6a3bdf2590d52a383f7aa0c52f275 (diff)
downloadaudiomanager-906f202f7663e6c372c192d3bd7015d32a0fbc34.tar.gz
* [GAM-12] Change project types as discussed in the F2F: changed in all tests, updated audiomanagertypes.h and projecttypes.h
* change towards the versioning scheme of the audiomanager in CMakelists.txt
Diffstat (limited to 'PluginCommandInterfaceDbus')
-rw-r--r--PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp22
-rw-r--r--PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp18
2 files changed, 20 insertions, 20 deletions
diff --git a/PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp b/PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp
index 8f7c23f..c190135 100644
--- a/PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp
+++ b/PluginCommandInterfaceDbus/test/dbuscommandpluginInterfaceTest.cpp
@@ -77,7 +77,7 @@ ACTION(returnListConnections)
listItem.mainConnectionID=15;
listItem.sinkID=4;
listItem.sourceID=3;
- listItem.connectionState=CS_MIN;
+ listItem.connectionState=CS_UNKNOWN;
listItem.delay=34;
list.push_back(listItem);
arg0=list;
@@ -87,8 +87,8 @@ ACTION(returnListSinks)
{
std::vector<am::am_SinkType_s> list;
am::am_SinkType_s listItem;
- listItem.availability.availability=A_MIN;
- listItem.availability.availabilityReason=AR_NOMEDIA;
+ listItem.availability.availability=A_UNAVAILABLE;
+ listItem.availability.availabilityReason=AR_GENIVI_NOMEDIA;
listItem.muteState=MS_UNMUTED;
listItem.name="mySink";
listItem.sinkClassID=34;
@@ -103,7 +103,7 @@ ACTION(returnListSources)
std::vector<am::am_SourceType_s> list;
am::am_SourceType_s listItem;
listItem.availability.availability=A_MAX;
- listItem.availability.availabilityReason=AR_SAMEMEDIA;
+ listItem.availability.availabilityReason=AR_GENIVI_SAMEMEDIA;
listItem.name="MySource";
listItem.sourceClassID=12;
listItem.sourceID=224;
@@ -121,7 +121,7 @@ ACTION(returnListMainSinkSoundProperties)
listItem.type=MSP_MAX;
listItem.value=223;
list.push_back(listItem);
- listItem.type=MSP_MIN;
+ listItem.type=MSP_UNKNOWN;
listItem.value=2;
list.push_back(listItem);
arg1=list;
@@ -132,7 +132,7 @@ ACTION(returnListSourceClasses)
std::vector<am::am_SourceClass_s> list;
am::am_SourceClass_s listItem;
am::am_ClassProperty_s property;
- property.classProperty=CP_SINK_TYPE;
+ property.classProperty=CP_GENIVI_SINK_TYPE;
property.value=12;
listItem.name="FirstCLass";
listItem.sourceClassID=23;
@@ -150,7 +150,7 @@ ACTION(returnListSinkClasses)
std::vector<am::am_SinkClass_s> list;
am::am_SinkClass_s listItem;
am::am_ClassProperty_s property;
- property.classProperty=CP_SOURCE_TYPE;
+ property.classProperty=CP_GENIVI_SOURCE_TYPE;
property.value=122;
listItem.name="FirstCLass";
listItem.sinkClassID=2123;
@@ -167,7 +167,7 @@ ACTION(returnListSystemProperties)
{
std::vector<am::am_SystemProperty_s> list;
am::am_SystemProperty_s listItem;
- listItem.type=SYP_TEST;
+ listItem.type=SYP_UNKNOWN;
listItem.value=-2245;
list.push_back(listItem);
arg0=list;
@@ -284,7 +284,7 @@ TEST_F(dbuscommandpluginInterfaceTest,Connect)
std::cout<<"[volumeStep]"<<std::endl;
- EXPECT_CALL(pReceiveInterface,setSinkMuteState(1,MS_MIN)).WillOnce(Return(E_OK));
+ EXPECT_CALL(pReceiveInterface,setSinkMuteState(1,MS_UNKNOWN)).WillOnce(Return(E_OK));
system((DBUSCOMMAND + std::string("SetSinkMuteState uint16:1 int16:0 > /tmp/result.txt ")).c_str());
//check the results
@@ -305,7 +305,7 @@ TEST_F(dbuscommandpluginInterfaceTest,Connect)
std::cout<<"[sinkmutest]"<<std::endl;
EXPECT_CALL(pReceiveInterface,setMainSinkSoundProperty(AllOf(Field(&am_MainSoundProperty_s::value, 3), \
- Field(&am_MainSoundProperty_s::type,MSP_MIN)),1)).WillOnce(Return(E_ABORTED));
+ Field(&am_MainSoundProperty_s::type,MSP_UNKNOWN)),1)).WillOnce(Return(E_ABORTED));
PyRun_SimpleStringFlags("import dbus\n"
@@ -332,7 +332,7 @@ TEST_F(dbuscommandpluginInterfaceTest,Connect)
std::cout<<"[sinksound ]"<<std::endl;
EXPECT_CALL(pReceiveInterface,setMainSourceSoundProperty(AllOf(Field(&am_MainSoundProperty_s::value, 3), \
- Field(&am_MainSoundProperty_s::type,MSP_MIN)),1)).WillOnce(Return(E_ABORTED));
+ Field(&am_MainSoundProperty_s::type,MSP_UNKNOWN)),1)).WillOnce(Return(E_ABORTED));
PyRun_SimpleStringFlags("import dbus\n"
"f = open('/tmp/result.txt','w')\n"
diff --git a/PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp b/PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp
index 9b5adb9..2b60d7c 100644
--- a/PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp
+++ b/PluginCommandInterfaceDbus/test/dbuscommaninterfacesignalsTest.cpp
@@ -70,8 +70,8 @@ void* cbSinkAdded(void*)
mysink.name = "MySink";
mysink.sinkID = 23;
mysink.availability.availability = A_MAX;
- mysink.availability.availabilityReason = AR_MIN;
- mysink.muteState = MS_MIN;
+ mysink.availability.availabilityReason = AR_UNKNOWN;
+ mysink.muteState = MS_UNKNOWN;
mysink.sinkClassID = 3;
mysink.volume = 234;
list.push_back(mysink);
@@ -96,7 +96,7 @@ void* cbSourceAdded(void*)
myource.name = "MySink";
myource.sourceID = 42;
myource.availability.availability = A_MAX;
- myource.availability.availabilityReason = AR_MIN;
+ myource.availability.availabilityReason = AR_UNKNOWN;
myource.sourceClassID = 15;
list.push_back(myource);
DbusCommandSender sender;
@@ -120,7 +120,7 @@ void* cbSourceRemoved(void*)
myource.name = "MySink";
myource.sourceID = 42;
myource.availability.availability = A_MAX;
- myource.availability.availabilityReason = AR_MIN;
+ myource.availability.availabilityReason = AR_UNKNOWN;
myource.sourceClassID = 15;
list.push_back(myource);
DbusCommandSender sender;
@@ -146,8 +146,8 @@ void* cbSinkRemoved(void*)
mysink.name = "MySink";
mysink.sinkID = 23;
mysink.availability.availability = A_MAX;
- mysink.availability.availabilityReason = AR_MIN;
- mysink.muteState = MS_MIN;
+ mysink.availability.availabilityReason = AR_UNKNOWN;
+ mysink.muteState = MS_UNKNOWN;
mysink.sinkClassID = 3;
mysink.volume = 234;
list.push_back(mysink);
@@ -226,7 +226,7 @@ void* MainSinkSoundPropertyChanged(void*)
backdoor.setDbusConnection(&sender, co);
am_sinkID_t sinkID = 3;
am_MainSoundProperty_s soundProperty;
- soundProperty.type = MSP_TEST;
+ soundProperty.type = MSP_UNKNOWN;
soundProperty.value = 23;
sender.cbMainSinkSoundPropertyChanged(sinkID, soundProperty);
return (NULL);
@@ -245,7 +245,7 @@ void* MainSourceSoundPropertyChanged(void*)
backdoor.setDbusConnection(&sender, co);
am_sourceID_t sourceID = 35;
am_MainSoundProperty_s soundProperty;
- soundProperty.type = MSP_TEST;
+ soundProperty.type = MSP_UNKNOWN;
soundProperty.value = 233;
sender.cbMainSourceSoundPropertyChanged(sourceID, soundProperty);
return (NULL);
@@ -330,7 +330,7 @@ void* SystemPropertyChanged(void*)
DBusConnection* co = dbus_bus_get(DBUS_BUS_SESSION, &error);
backdoor.setDbusConnection(&sender, co);
am_SystemProperty_s property;
- property.type = SYP_TEST;
+ property.type = SYP_UNKNOWN;
property.value = 355;
sender.cbSystemPropertyChanged(property);
return (NULL);