aboutsummaryrefslogtreecommitdiff
path: root/tests/test-interests-client.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-18 13:41:27 -0500
committerTed Gould <ted@canonical.com>2009-08-18 13:41:27 -0500
commitf9bc0fe67b49f00732073c5945d8dd50d60ecb97 (patch)
tree55cc90563a8a798ecbae07d3f441dafea247237e /tests/test-interests-client.c
parentdcbb7eba056da11cf575bb2a10fea954440bb0fb (diff)
parentba24704988964a1f211e82e87cbe8aca29641979 (diff)
downloadlibayatana-indicator-f9bc0fe67b49f00732073c5945d8dd50d60ecb97.tar.gz
libayatana-indicator-f9bc0fe67b49f00732073c5945d8dd50d60ecb97.tar.bz2
libayatana-indicator-f9bc0fe67b49f00732073c5945d8dd50d60ecb97.zip
Merging in the separation from indicator-applet
Diffstat (limited to 'tests/test-interests-client.c')
-rw-r--r--tests/test-interests-client.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/tests/test-interests-client.c b/tests/test-interests-client.c
deleted file mode 100644
index bde3b26..0000000
--- a/tests/test-interests-client.c
+++ /dev/null
@@ -1,63 +0,0 @@
-
-#include <glib.h>
-#include "libindicate/indicator.h"
-#include "libindicate/server.h"
-#include "libindicate/interests.h"
-
-static gboolean passed = TRUE;
-static GMainLoop * mainloop = NULL;
-static gboolean interests[INDICATE_INTEREST_LAST] = {0};
-
-static gboolean
-check_interests (void)
-{
- guint i;
- for (i = INDICATE_INTEREST_NONE + 1; i < INDICATE_INTEREST_LAST; i++) {
- if (!interests[i]) {
- return FALSE;
- }
- }
-
- return TRUE;
-}
-
-static void
-interest_added (IndicateServer * server, IndicateInterests interest)
-{
- g_debug("Oh, someone is interested in my for: %d", interest);
- interests[interest] = TRUE;
-
- if (check_interests()) {
- g_main_loop_quit(mainloop);
- }
-
- return;
-}
-
-static gboolean
-done_timeout_cb (gpointer data)
-{
- g_debug("All interests not set");
- passed = FALSE;
- g_main_loop_quit(mainloop);
- return FALSE;
-}
-
-int
-main (int argc, char * argv)
-{
- g_type_init();
-
- IndicateIndicator * indicator = indicate_indicator_new();
- indicate_indicator_show(indicator);
-
- IndicateServer * server = indicate_server_ref_default();
- g_signal_connect(G_OBJECT(server), INDICATE_SERVER_SIGNAL_INTEREST_ADDED, G_CALLBACK(interest_added), NULL);
-
- g_timeout_add_seconds(2, done_timeout_cb, indicator);
-
- mainloop = g_main_loop_new(NULL, FALSE);
- g_main_loop_run(mainloop);
-
- return !passed;
-}