aboutsummaryrefslogtreecommitdiff
path: root/tests/test-simple-server.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-20 11:25:33 -0500
committerTed Gould <ted@canonical.com>2009-04-20 11:25:33 -0500
commit8162f7196b7be52d014160b7559a98264e5f2b8a (patch)
tree5c3e1156b6d6f02d263a6873019582831a7e5d4a /tests/test-simple-server.c
parentecfb1c26cdb0908e552a33ccad288f3224038f97 (diff)
downloadlibayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.tar.gz
libayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.tar.bz2
libayatana-indicator-8162f7196b7be52d014160b7559a98264e5f2b8a.zip
Adding in a simple test
Diffstat (limited to 'tests/test-simple-server.c')
-rw-r--r--tests/test-simple-server.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/test-simple-server.c b/tests/test-simple-server.c
new file mode 100644
index 0000000..0a04e85
--- /dev/null
+++ b/tests/test-simple-server.c
@@ -0,0 +1,39 @@
+
+#include <glib.h>
+#include "libindicate/listener.h"
+
+static gboolean passed = TRUE;
+static GMainLoop * mainloop = NULL;
+
+static void
+server_added (IndicateListener * listener, IndicateListenerServer * server, gchar * type, gpointer data)
+{
+ g_debug("Indicator Server Added: %s %s", INDICATE_LISTENER_SERVER_DBUS_NAME(server), type);
+ g_main_loop_quit(mainloop);
+}
+
+static gboolean
+failed_cb (gpointer data)
+{
+ g_debug("Failed to get a server in 5 seconds.");
+ passed = FALSE;
+ g_main_loop_quit(mainloop);
+ return FALSE;
+}
+
+int
+main (int argc, char * argv)
+{
+ g_type_init();
+
+ IndicateListener * listener = indicate_listener_ref_default();
+
+ g_signal_connect(listener, INDICATE_LISTENER_SIGNAL_SERVER_ADDED, G_CALLBACK(server_added), NULL);
+
+ g_timeout_add_seconds(5, failed_cb, NULL);
+
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
+
+ return !passed;
+}