summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurent Contzen <lcontzen@gmail.com>2012-08-08 15:15:47 +0200
committerLaurent Contzen <lcontzen@gmail.com>2012-08-09 12:51:41 +0200
commit20931fb9fe11ca2b5e1510d14acbd1ea4c886ae5 (patch)
treee20188de960a0bb4687ce97ea17834f5cfb0bc88 /tests
parent9282dff7d3ec6f4ba33a2b91fc4d415463503d9a (diff)
downloadempathy-20931fb9fe11ca2b5e1510d14acbd1ea4c886ae5.tar.gz
New test app test-empathy-roster-model-aggregator.c
Diffstat (limited to 'tests')
-rw-r--r--tests/interactive/Makefile.am4
-rw-r--r--tests/interactive/test-empathy-roster-model-aggregator.c151
2 files changed, 154 insertions, 1 deletions
diff --git a/tests/interactive/Makefile.am b/tests/interactive/Makefile.am
index d741f24da..27fdbf7e4 100644
--- a/tests/interactive/Makefile.am
+++ b/tests/interactive/Makefile.am
@@ -20,7 +20,8 @@ noinst_PROGRAMS = \
test-empathy-account-chooser \
test-empathy-calendar-button \
test-empathy-roster-view \
- test-empathy-dual-roster-view
+ test-empathy-dual-roster-view \
+ test-empathy-roster-model-aggregator
empathy_logs_SOURCES = empathy-logs.c
test_empathy_contact_blocking_dialog_SOURCES = test-empathy-contact-blocking-dialog.c
@@ -31,3 +32,4 @@ test_empathy_account_chooser_SOURCES = test-empathy-account-chooser.c
test_empathy_calendar_button_SOURCES = test-empathy-calendar-button.c
test_empathy_roster_view_SOURCES = test-empathy-roster-view.c
test_empathy_dual_roster_view_SOURCES = test-empathy-dual-roster-view.c
+test_empathy_roster_model_aggregator_SOURCES = test-empathy-roster-model-aggregator.c
diff --git a/tests/interactive/test-empathy-roster-model-aggregator.c b/tests/interactive/test-empathy-roster-model-aggregator.c
new file mode 100644
index 000000000..a3df3f533
--- /dev/null
+++ b/tests/interactive/test-empathy-roster-model-aggregator.c
@@ -0,0 +1,151 @@
+#include <config.h>
+
+#include <libempathy-gtk/empathy-roster-model.h>
+#include <libempathy-gtk/empathy-roster-model-aggregator.h>
+
+#include <libempathy-gtk/empathy-roster-view.h>
+#include <libempathy-gtk/empathy-ui-utils.h>
+
+static gboolean show_offline = FALSE;
+static gboolean show_groups = FALSE;
+
+static GOptionEntry entries[] =
+ {
+ { "offline", 0, 0, G_OPTION_ARG_NONE, &show_offline, "Show offline contacts", NULL },
+ { "groups", 0, 0, G_OPTION_ARG_NONE, &show_groups, "Show groups", NULL },
+ { NULL }
+ };
+
+static void
+individual_activated_cb (EmpathyRosterView *self,
+ FolksIndividual *individual,
+ gpointer user_data)
+{
+ g_assert (FOLKS_IS_INDIVIDUAL (individual));
+
+ g_print ("'%s' activated\n",
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
+}
+
+static void
+popup_individual_menu_cb (EmpathyRosterView *self,
+ FolksIndividual *individual,
+ guint button,
+ guint time,
+ gpointer user_data)
+{
+ GtkWidget *menu, *item;
+
+ g_print ("'%s' popup menu\n",
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
+
+ menu = gtk_menu_new ();
+
+ g_signal_connect (menu, "deactivate",
+ G_CALLBACK (gtk_widget_destroy), NULL);
+
+ item = gtk_menu_item_new_with_label (folks_alias_details_get_alias (
+ FOLKS_ALIAS_DETAILS (individual)));
+ gtk_widget_show (item);
+
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
+
+ gtk_menu_attach_to_widget (GTK_MENU (menu), GTK_WIDGET (self), NULL);
+
+ gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, button, time);
+}
+
+static gboolean
+individual_tooltip_cb (EmpathyRosterView *view,
+ FolksIndividual *individual,
+ gboolean keyboard_mode,
+ GtkTooltip *tooltip,
+ gpointer user_data)
+{
+ gtk_tooltip_set_text (tooltip,
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (individual)));
+
+ return TRUE;
+}
+
+static void
+empty_cb (EmpathyRosterView *view,
+ GParamSpec *spec,
+ gpointer user_data)
+{
+ if (empathy_roster_view_is_empty (view))
+ g_print ("view is now empty\n");
+ else
+ g_print ("view is no longer empty\n");
+}
+
+int
+main (int argc,
+ char **argv)
+{
+ GtkWidget *window, *view, *scrolled, *box, *search;
+ GError *error = NULL;
+ GOptionContext *context;
+ EmpathyRosterModel *model;
+
+ gtk_init (&argc, &argv);
+ empathy_gtk_init ();
+
+ context = g_option_context_new ("- test tree model performance");
+ g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
+ g_option_context_add_group (context, gtk_get_option_group (TRUE));
+ if (!g_option_context_parse (context, &argc, &argv, &error))
+ {
+ g_print ("option parsing failed: %s\n", error->message);
+ return 1;
+ }
+
+ window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+
+ empathy_set_css_provider (window);
+
+ box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 8);
+
+ model = EMPATHY_ROSTER_MODEL (empathy_roster_model_aggregator_new ());
+ view = empathy_roster_view_new (model);
+
+ g_object_unref (model);
+ g_signal_connect (view, "individual-activated",
+ G_CALLBACK (individual_activated_cb), NULL);
+ g_signal_connect (view, "popup-individual-menu",
+ G_CALLBACK (popup_individual_menu_cb), NULL);
+ g_signal_connect (view, "notify::empty",
+ G_CALLBACK (empty_cb), NULL);
+ g_signal_connect (view, "individual-tooltip",
+ G_CALLBACK (individual_tooltip_cb), NULL);
+
+ gtk_widget_set_has_tooltip (view, TRUE);
+
+ empathy_roster_view_show_offline (EMPATHY_ROSTER_VIEW (view), show_offline);
+ empathy_roster_view_show_groups (EMPATHY_ROSTER_VIEW (view), show_groups);
+
+ search = empathy_live_search_new (view);
+ empathy_roster_view_set_live_search (EMPATHY_ROSTER_VIEW (view),
+ EMPATHY_LIVE_SEARCH (search));
+
+ scrolled = gtk_scrolled_window_new (NULL, NULL);
+ gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled),
+ GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
+
+ egg_list_box_add_to_scrolled (EGG_LIST_BOX (view),
+ GTK_SCROLLED_WINDOW (scrolled));
+
+ gtk_box_pack_start (GTK_BOX (box), search, FALSE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (box), scrolled, TRUE, TRUE, 0);
+ gtk_container_add (GTK_CONTAINER (window), box);
+
+ gtk_window_set_default_size (GTK_WINDOW (window), 300, 600);
+ gtk_widget_show_all (window);
+
+ g_signal_connect_swapped (window, "destroy",
+ G_CALLBACK (gtk_main_quit), NULL);
+
+ gtk_main ();
+
+ return 0;
+}