[Xfce4-commits] <xfce4-notifyd:master> Add actions test.
Jérôme Guelfucci
noreply at xfce.org
Sun Aug 21 13:56:02 CEST 2011
Updating branch refs/heads/master
to 9c0816cf600d8b4c005e8a3ddb67ce57d86df80b (commit)
from 23cea11bb6749f1f66292d322646acf92feff1ce (commit)
commit 9c0816cf600d8b4c005e8a3ddb67ce57d86df80b
Author: Jérôme Guelfucci <jeromeg at xfce.org>
Date: Sun Aug 21 13:54:39 2011 +0200
Add actions test.
Makefile.am | 7 ++-
tests/test-actions.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 149 insertions(+), 1 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 331b7fa..5e7e256 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -237,7 +237,8 @@ release: gpg-sign
if HAVE_LIBNOTIFY
noinst_PROGRAMS = \
tests/test-text \
- tests/test-positioning
+ tests/test-positioning \
+ tests/test-actions
tests_cflags = \
-I$(top_srcdir) \
@@ -253,4 +254,8 @@ tests_test_text_LDADD = $(tests_ldadd)
tests_test_positioning_SOURCES = tests/test-positioning.c
tests_test_positioning_CFLAGS = $(tests_cflags)
tests_test_positioning_LDADD = $(tests_ldadd)
+
+tests_test_actions_SOURCES = tests/test-actions.c
+tests_test_actions_CFLAGS = $(tests_cflags)
+tests_test_actions_LDADD = $(tests_ldadd)
endif
diff --git a/tests/test-actions.c b/tests/test-actions.c
new file mode 100644
index 0000000..917dbe5
--- /dev/null
+++ b/tests/test-actions.c
@@ -0,0 +1,143 @@
+/*
+ * xfce4-notifyd
+ *
+ * Copyright (c) 2011 Jérôme Guelfucci <jeromeg at xfce.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License ONLY.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <glib.h>
+#include <stdlib.h>
+#include <libnotify/notify.h>
+
+static void action1_callback (NotifyNotification *notification,
+ const char *action,
+ gpointer loop)
+{
+ g_assert (action != NULL);
+ g_assert (strcmp (action, "action1") == 0);
+ g_assert (loop != NULL);
+
+ g_printf ("You clicked the first action\n");
+
+ notify_notification_close (notification, NULL);
+
+ g_main_loop_quit (loop);
+}
+
+static void action2_callback (NotifyNotification *notification,
+ const char *action,
+ gpointer loop)
+{
+ g_assert (action != NULL);
+ g_assert (strcmp (action, "action2") == 0);
+ g_assert (loop != NULL);
+
+ g_printf ("You clicked the second action\n");
+
+ notify_notification_close (notification, NULL);
+
+ g_main_loop_quit (loop);
+}
+
+static void clear_callback (NotifyNotification *notification,
+ const char *action,
+ gpointer loop)
+{
+ g_assert (action != NULL);
+ g_assert (strcmp (action, "clear") == 0);
+ g_assert (loop != NULL);
+
+ g_printf ("You clicked the clear action\n");
+
+ notify_notification_clear_actions (notification);
+
+ notify_notification_add_action (notification,
+ "action1",
+ "First Action",
+ (NotifyActionCallback) action1_callback,
+ loop,
+ NULL);
+
+ notify_notification_add_action (notification,
+ "action2",
+ "Second Action",
+ (NotifyActionCallback) action2_callback,
+ loop,
+ NULL);
+
+ if (!notify_notification_show (notification, NULL))
+ {
+ g_error ("Failed");
+ g_main_loop_quit (loop);
+ }
+}
+
+int main (int argc, char **argv)
+{
+ NotifyNotification *notification;
+ GMainLoop *loop;
+
+ if (!notify_init ("Notification with actions test"))
+ {
+ g_error ("Failed to initialize libnotify.");
+
+ return EXIT_FAILURE;
+ }
+
+ loop = g_main_loop_new (NULL, FALSE);
+
+ notification = notify_notification_new ("Action!",
+ "Click my shiny actions",
+ NULL);
+
+ notify_notification_add_action (notification,
+ "action1",
+ "First Action",
+ (NotifyActionCallback) action1_callback,
+ loop,
+ NULL);
+
+ notify_notification_add_action (notification,
+ "action2",
+ "Second Action",
+ (NotifyActionCallback) action2_callback,
+ loop,
+ NULL);
+
+ notify_notification_add_action (notification,
+ "clear",
+ "Clear me",
+ (NotifyActionCallback) clear_callback,
+ loop,
+ NULL);
+
+ if (!notify_notification_show (notification, NULL))
+ {
+ g_error ("Failed");
+ g_object_unref (notification);
+
+ return EXIT_FAILURE;
+ }
+
+ g_main_loop_run (loop);
+
+ g_object_unref (notification);
+
+ return EXIT_SUCCESS;
+}
More information about the Xfce4-commits
mailing list