aboutsummaryrefslogtreecommitdiff
path: root/tests/test-indicator-sound-dbus-client.c
blob: 1c23dc517180e686fc31f1827775bc47db7ea50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
Tests for the libappindicator library that are over DBus.  This is
the client side of those tests.

Copyright 2010 Canonical Ltd.

Authors:
    Conor Curran <conor.curran@canonical.com>
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License version 3, as published
by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranties of
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.
*/


#include <glib.h>
#include <dbus/dbus-glib.h>
#include "../src/dbus-shared-names.h"
#include "test-defines.h"
#include "../src/sound-service-client.h"

static GMainLoop * mainloop = NULL;
static DBusGProxy * proxy= NULL;

static void
test_fetch_mute(DBusGProxy * proxy)
{
    GError * error = NULL;
    gboolean *fetched_mute_value;
    fetched_mute_value = g_new0(gboolean, 1);
    org_ayatana_indicator_sound_get_sink_mute(proxy, fetched_mute_value, &error);
	if (error != NULL) {
		g_warning("test-indicator-sound-dbus-client::test_fetch_mute - Unable to fetch mute: %s", error->message);
		g_error_free(error);
        g_free(fetched_mute_value);
        return;
	}
    g_assert(TEST_MUTE_VALUE == *fetched_mute_value); 
    g_free(fetched_mute_value);
}

static void
test_fetch_volume(DBusGProxy * proxy)
{
	GError * error = NULL;
    gdouble *volume_percent_input;
    volume_percent_input = g_new0(gdouble, 1);
    org_ayatana_indicator_sound_get_sink_volume(proxy, volume_percent_input, &error);
	if (error != NULL) {
		g_warning("test-indicator-sound-dbus-client::test_fetch_volume - Unable to fetch VOLUME: %s", error->message);
		g_error_free(error);
        g_free(volume_percent_input);
        return;
	}
    g_assert(TEST_VOLUME_VALUE == *volume_percent_input); 
    g_free(volume_percent_input);
}

static void 
test_fetch_availability(DBusGProxy * proxy)
{
    GError * error = NULL;
    gboolean * available_input;
    available_input = g_new0(gboolean, 1);
    org_ayatana_indicator_sound_get_sink_availability(proxy, available_input, &error);
    if (error != NULL) {
	    g_warning("test-indicator-sound-dbus-client::test_fetch_availability - unable to fetch availability %s", error->message);
	    g_error_free(error);
        g_free(available_input);
        return;
    }
    g_assert(TEST_AVAILABLE_VALUE == *available_input);
    g_free(available_input);
}


gboolean
kill_func (gpointer userdata)
{
    g_free(proxy);
	g_main_loop_quit(mainloop);
	return FALSE;
}

gint
main (gint argc, gchar * argv[])
{
	g_type_init();
	g_test_init(&argc, &argv, NULL);

	g_usleep(500000);

	GError * error = NULL;
	DBusGConnection * session_bus = dbus_g_bus_get(DBUS_BUS_SESSION, &error);
	if (error != NULL) {
		g_error("Unable to get session bus: %s", error->message);
		return 1;
	}

	DBusGProxy * proxy = dbus_g_proxy_new_for_name_owner(session_bus,
                                            ":1.0",
											 INDICATOR_SOUND_SERVICE_DBUS_OBJECT,
                                             INDICATOR_SOUND_SERVICE_DBUS_INTERFACE,
                                             &error);
	if (error != NULL) {
		g_error("Unable to get property proxy: %s", error->message);
		return 1;
	}

/*    g_test_add_func("/test-indicator-sound-dbus/test-fetch-mute", test_fetch_mute);*/
/*    g_test_add_func("/test-indicator-sound-dbus/test-fetch-volume", test_fetch_volume);*/
/*    g_test_add_func("/test-indicator-sound-dbus/test-fetch-availability", test_fetch_availability);*/
/*    g_test_queue_free(proxy);*/
/*    return g_test_run();*/

    test_fetch_mute(proxy);
    test_fetch_volume(proxy);    
    test_fetch_availability(proxy);    

	g_timeout_add_seconds(2, kill_func, NULL);

	mainloop = g_main_loop_new(NULL, FALSE);
	g_main_loop_run(mainloop);

	return 0;
}