diff options
author | Ted Gould <ted@canonical.com> | 2009-04-27 10:50:40 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-04-27 10:50:40 -0500 |
commit | 73e576b120f91aa42d8040af16a2310fb60d62c1 (patch) | |
tree | 20062dd5d0ff2f06f0b73e8540b57367ed439bbf /tests/test-thousand-indicators-server.c | |
parent | 183d218f7c7d22da792b90c0014d44b088d91008 (diff) | |
parent | 0f174a8a4904e33f912fae70a6345a861306b474 (diff) | |
download | libayatana-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-thousand-indicators-server.c')
-rw-r--r-- | tests/test-thousand-indicators-server.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/test-thousand-indicators-server.c b/tests/test-thousand-indicators-server.c new file mode 100644 index 0000000..285e56b --- /dev/null +++ b/tests/test-thousand-indicators-server.c @@ -0,0 +1,43 @@ + +#include <glib.h> +#include "libindicate/listener.h" + +static gboolean passed = TRUE; +static GMainLoop * mainloop = NULL; +static guint indicator_count = 0; + +static void +indicator_added (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gpointer data) +{ + g_debug("Indicator Added: %s %d %s", INDICATE_LISTENER_SERVER_DBUS_NAME(server), INDICATE_LISTENER_INDICATOR_ID(indicator), type); + indicator_count++; + if (indicator_count == 1000) { + 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_INDICATOR_ADDED, G_CALLBACK(indicator_added), NULL); + + g_timeout_add_seconds(5, failed_cb, NULL); + + mainloop = g_main_loop_new(NULL, FALSE); + g_main_loop_run(mainloop); + + return !passed; +} |