aboutsummaryrefslogtreecommitdiff
path: root/tests/test-libappindicator-dbus-client.c
blob: 6125d36e4afe4afbd3d366912f705978fe6f2d79 (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
Tests for the libappindicator library that are over DBus.  This is
the client side of those tests.

Copyright 2009 Canonical Ltd.

Authors:
    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 <libappindicator/app-indicator.h>
#include "test-defines.h"

static GMainLoop * mainloop = NULL;
static gboolean passed = TRUE;
static int propcount = 0;

static void
check_propcount (void)
{
	if (propcount >= 5) {
		g_main_loop_quit(mainloop);
	}
	return;
}


static void
prop_id_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data)
{
	propcount++;

	GError * error = NULL;
	GValue value = {0};

	if (!dbus_g_proxy_end_call(proxy, call, &error, G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
		g_warning("Getting ID failed: %s", error->message);
		g_error_free(error);
		passed = FALSE;
		check_propcount();
		return;
	}

	if (g_strcmp0(TEST_ID, g_value_get_string(&value))) {
		g_debug("Property ID Returned: FAILED");
		passed = FALSE;
	} else {
		g_debug("Property ID Returned: PASSED");
	}

	check_propcount();
	return;
}

static void
prop_category_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data)
{
	propcount++;

	GError * error = NULL;
	GValue value = {0};

	if (!dbus_g_proxy_end_call(proxy, call, &error, G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
		g_warning("Getting category failed: %s", error->message);
		g_error_free(error);
		passed = FALSE;
		check_propcount();
		return;
	}

	if (g_strcmp0(TEST_CATEGORY_S, g_value_get_string(&value))) {
		g_debug("Property category Returned: FAILED");
		passed = FALSE;
	} else {
		g_debug("Property category Returned: PASSED");
	}

	check_propcount();
	return;
}

static void
prop_status_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data)
{
	propcount++;

	GError * error = NULL;
	GValue value = {0};

	if (!dbus_g_proxy_end_call(proxy, call, &error, G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
		g_warning("Getting status failed: %s", error->message);
		g_error_free(error);
		passed = FALSE;
		check_propcount();
		return;
	}

	if (g_strcmp0(TEST_STATE_S, g_value_get_string(&value))) {
		g_debug("Property status Returned: FAILED");
		passed = FALSE;
	} else {
		g_debug("Property status Returned: PASSED");
	}

	check_propcount();
	return;
}

static void
prop_icon_name_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data)
{
	propcount++;

	GError * error = NULL;
	GValue value = {0};

	if (!dbus_g_proxy_end_call(proxy, call, &error, G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
		g_warning("Getting icon name failed: %s", error->message);
		g_error_free(error);
		passed = FALSE;
		check_propcount();
		return;
	}

	if (g_strcmp0(TEST_ICON_NAME, g_value_get_string(&value))) {
		g_debug("Property icon name Returned: FAILED");
		passed = FALSE;
	} else {
		g_debug("Property icon name Returned: PASSED");
	}

	check_propcount();
	return;
}

static void
prop_attention_icon_name_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data)
{
	propcount++;

	GError * error = NULL;
	GValue value = {0};

	if (!dbus_g_proxy_end_call(proxy, call, &error, G_TYPE_VALUE, &value, G_TYPE_INVALID)) {
		g_warning("Getting attention icon name failed: %s", error->message);
		g_error_free(error);
		passed = FALSE;
		check_propcount();
		return;
	}

	if (g_strcmp0(TEST_ATTENTION_ICON_NAME, g_value_get_string(&value))) {
		g_debug("Property attention icon name Returned: FAILED");
		passed = FALSE;
	} else {
		g_debug("Property attention icon name Returned: PASSED");
	}

	check_propcount();
	return;
}

gboolean
kill_func (gpointer userdata)
{
	g_main_loop_quit(mainloop);
	g_warning("Forced to Kill");
	passed = FALSE;
	return FALSE;
}

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

	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 * props = dbus_g_proxy_new_for_name_owner(session_bus,
	                                                     ":1.0",
	                                                     "/org/ayatana/NotificationItem/my_id",
	                                                     DBUS_INTERFACE_PROPERTIES,
	                                                     &error);
	if (error != NULL) {
		g_error("Unable to get property proxy: %s", error->message);
		return 1;
	}

	dbus_g_proxy_begin_call (props,
	                         "Get",
	                         prop_id_cb,
	                         NULL, NULL,
	                         G_TYPE_STRING, "org.ayatana.indicator.application.NotificationItem",
	                         G_TYPE_STRING, "Id",
	                         G_TYPE_INVALID);
	dbus_g_proxy_begin_call (props,
	                         "Get",
	                         prop_category_cb,
	                         NULL, NULL,
	                         G_TYPE_STRING, "org.ayatana.indicator.application.NotificationItem",
	                         G_TYPE_STRING, "Category",
	                         G_TYPE_INVALID);
	dbus_g_proxy_begin_call (props,
	                         "Get",
	                         prop_status_cb,
	                         NULL, NULL,
	                         G_TYPE_STRING, "org.ayatana.indicator.application.NotificationItem",
	                         G_TYPE_STRING, "Status",
	                         G_TYPE_INVALID);
	dbus_g_proxy_begin_call (props,
	                         "Get",
	                         prop_icon_name_cb,
	                         NULL, NULL,
	                         G_TYPE_STRING, "org.ayatana.indicator.application.NotificationItem",
	                         G_TYPE_STRING, "IconName",
	                         G_TYPE_INVALID);
	dbus_g_proxy_begin_call (props,
	                         "Get",
	                         prop_attention_icon_name_cb,
	                         NULL, NULL,
	                         G_TYPE_STRING, "org.ayatana.indicator.application.NotificationItem",
	                         G_TYPE_STRING, "AttentionIconName",
	                         G_TYPE_INVALID);

	g_timeout_add_seconds(2, kill_func, NULL);

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

	if (passed) {
		g_debug("Quiting");
		return 0;
	} else {
		g_debug("Quiting as we're a failure");
		return 1;
	}
	return 0;
}