diff options
author | Robert Collins <robertc@robertcollins.net> | 2010-03-09 09:33:12 +1100 |
---|---|---|
committer | Robert Collins <robertc@robertcollins.net> | 2010-03-09 09:33:12 +1100 |
commit | a89c6663a0cf1deec82d8492fb897fd8541c1194 (patch) | |
tree | 135796028678eb1df9d65720c26993065a614443 /tests | |
parent | 2e85d8a7db825a7aef087710abe8159a716df6c7 (diff) | |
download | ayatana-indicator-sound-a89c6663a0cf1deec82d8492fb897fd8541c1194.tar.gz ayatana-indicator-sound-a89c6663a0cf1deec82d8492fb897fd8541c1194.tar.bz2 ayatana-indicator-sound-a89c6663a0cf1deec82d8492fb897fd8541c1194.zip |
More snapshot, just need to deal with other sound-service components now.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 3 | ||||
-rw-r--r-- | tests/test-pulse-manager.c | 23 |
2 files changed, 20 insertions, 6 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 7573ea5..5b61b5a 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -94,7 +94,8 @@ test_pulse_manager_LDADD = \ libmockpulse.la \ $(PULSEAUDIO_LIBS) \ $(SOUNDSERVICE_LIBS) \ - $(GCONF_LIBS) + $(GCONF_LIBS) \ + $(APPLET_LIBS) ######################################### diff --git a/tests/test-pulse-manager.c b/tests/test-pulse-manager.c index 2bc1c51..f5dfb80 100644 --- a/tests/test-pulse-manager.c +++ b/tests/test-pulse-manager.c @@ -37,12 +37,25 @@ static void test_sink_insert() sink_info *value; value = g_new0(sink_info, 1); value->index = 8; - value->name = "mock_sink";" - value->description = "mock description" - value->mute = FALSE - value->volume = 30000; // almost full + value->name = "mock_sink"; + value->description = "mock description"; + value->mute = FALSE; + pa_cvolume volume; // nearly full volume: + pa_cvolume_set(&volume, 1, 30000); + value->volume = volume; // update_sink_info is a static method in pulse-manager.c ? - pa_context_get_sink_info_by_index(context, value->index, update_sink_info); + pa_context_get_sink_info_by_index(context, value->index, update_sink_info, NULL); // the mockinkg lib should then return this mocked up sink_info to the method update_sink_info which tests could be wrote against to make sure everthing is populated correctly. } + +gint main (gint argc, gchar * argv[]) +{ + g_type_init(); + g_test_init(&argc, &argv, NULL); + + g_test_add_func("/indicator-sound/pulse-manager/sink-insert", test_sink_insert); + g_test_add_func("/indicator-sound/pulse-manager/pa-context-exit", test_pa_context_exit); + + return g_test_run (); +} |