aboutsummaryrefslogtreecommitdiff
path: root/tests/test-interests-server1.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-27 10:50:40 -0500
committerTed Gould <ted@canonical.com>2009-04-27 10:50:40 -0500
commit73e576b120f91aa42d8040af16a2310fb60d62c1 (patch)
tree20062dd5d0ff2f06f0b73e8540b57367ed439bbf /tests/test-interests-server1.c
parent183d218f7c7d22da792b90c0014d44b088d91008 (diff)
parent0f174a8a4904e33f912fae70a6345a861306b474 (diff)
downloadlibayatana-indicator-73e576b120f91aa42d8040af16a2310fb60d62c1.tar.gz
libayatana-indicator-73e576b120f91aa42d8040af16a2310fb60d62c1.tar.bz2
libayatana-indicator-73e576b120f91aa42d8040af16a2310fb60d62c1.zip
Upstream Snapshot: Adding in a test suite.
Diffstat (limited to 'tests/test-interests-server1.c')
-rw-r--r--tests/test-interests-server1.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/test-interests-server1.c b/tests/test-interests-server1.c
new file mode 100644
index 0000000..e0d77f3
--- /dev/null
+++ b/tests/test-interests-server1.c
@@ -0,0 +1,41 @@
+
+#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);
+ #define INTEREST 1
+ g_debug("Setting Interest: %d", INTEREST);
+ indicate_listener_server_show_interest(listener, server, INTEREST);
+ return;
+}
+
+static gboolean
+failed_cb (gpointer data)
+{
+ g_debug("Done indicatating interest");
+ 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(2, failed_cb, NULL);
+
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
+
+ return !passed;
+}