qulogic/pidgin

The start of a ui for unit testing

2017-09-18, Gary Kramlich
d260f3b61831
Parents 515b117f1d0f
Children 7ad7854d8e60
The start of a ui for unit testing
--- a/libpurple/tests/meson.build Tue Sep 12 20:05:35 2017 -0500
+++ b/libpurple/tests/meson.build Mon Sep 18 22:29:40 2017 -0500
@@ -7,6 +7,7 @@
'util',
'xmlnode'
]
+
foreach prog : PROGS
e = executable('test_' + prog, 'test_@0@.c'.format(prog),
c_args : [
@@ -15,3 +16,12 @@
dependencies : [libpurple_dep, glib, dbus, dbus_glib])
test(prog, e)
endforeach
+
+test_ui = static_library(
+ 'test-ui',
+ 'test_ui.c',
+ c_args: [
+ '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir())
+ ],
+ dependencies: [libpurple_dep, glib, dbus, dbus_glib]
+)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/libpurple/tests/test_ui.c Mon Sep 18 22:29:40 2017 -0500
@@ -0,0 +1,137 @@
+/*
+ * pidgin
+ *
+ * Pidgin is the legal property of its developers, whose names are too numerous
+ * to list here. Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 02111-1301 USA
+ *
+ */
+
+#include "purple.h"
+
+#include <glib.h>
+#include <glib/gprintf.h>
+
+#include <signal.h>
+#include <string.h>
+#ifdef _WIN32
+# include <conio.h>
+#else
+# include <unistd.h>
+#endif
+
+#include "defines.h"
+
+/*** Conversation uiops ***/
+static void
+test_write_conv(PurpleConversation *conv, PurpleMessage *msg)
+{
+ time_t mtime = purple_message_get_time(msg);
+
+ printf("(%s) %s %s: %s\n",
+ purple_conversation_get_name(conv),
+ purple_utf8_strftime("(%H:%M:%S)", localtime(&mtime)),
+ purple_message_get_author_alias(msg),
+ purple_message_get_contents(msg));
+}
+
+static PurpleConversationUiOps test_conv_uiops = {
+ .write_conv = test_write_conv
+};
+
+static void
+test_ui_init(void)
+{
+ purple_conversations_set_ui_ops(&test_conv_uiops);
+}
+
+static PurpleCoreUiOps test_core_uiops = {
+ .ui_init = test_ui_init
+};
+
+static void
+init_libpurple(void) {
+ /* Set a custom user directory (optional) */
+ purple_util_set_user_dir(TEST_DATA_DIR);
+
+ /* We do not want any debugging for now to keep the noise to a minimum. */
+ purple_debug_set_enabled(FALSE);
+
+ /* Set the core-uiops, which is used to
+ * - initialize the ui specific preferences.
+ * - initialize the debug ui.
+ * - initialize the ui components for all the modules.
+ * - uninitialize the ui components for all the modules when the core terminates.
+ */
+ purple_core_set_ui_ops(&test_core_uiops);
+
+ /* Now that all the essential stuff has been set, let's try to init the core. It's
+ * necessary to provide a non-NULL name for the current ui to the core. This name
+ * is used by stuff that depends on this ui, for example the ui-specific plugins. */
+ if (!purple_core_init("test-ui")) {
+ /* Initializing the core failed. Terminate. */
+ fprintf(stderr,
+ "libpurple initialization failed. Dumping core.\n"
+ "Please report this!\n");
+ abort();
+ }
+
+ /* Set path to search for plugins. The core (libpurple) takes care of loading the
+ * core-plugins, which includes the in-tree protocols. So it is not essential to add
+ * any path here, but it might be desired, especially for ui-specific plugins. */
+ purple_plugins_add_search_path(TEST_DATA_DIR);
+ purple_plugins_refresh();
+
+ /* Load the preferences. */
+ purple_prefs_load();
+
+ /* Load the desired plugins. The client should save the list of loaded plugins in
+ * the preferences using purple_plugins_save_loaded(PLUGIN_SAVE_PREF) */
+ purple_plugins_load_saved(TEST_DATA_DIR);
+}
+
+gint
+main(int argc, char *argv[]) {
+ GList *list, *iter;
+ int i, num;
+ GList *names = NULL;
+ const char *protocol = NULL;
+ char name[128];
+ char *password;
+ GMainLoop *loop = g_main_loop_new(NULL, FALSE);
+ PurpleAccount *account;
+ PurpleSavedStatus *status;
+ char *res;
+
+
+#ifndef _WIN32
+ /* libpurple's built-in DNS resolution forks processes to perform
+ * blocking lookups without blocking the main process. It does not
+ * handle SIGCHLD itself, so if the UI does not you quickly get an army
+ * of zombie subprocesses marching around.
+ */
+ signal(SIGCHLD, SIG_IGN);
+#endif
+
+ init_libpurple();
+
+ printf("libpurple initialized.\n");
+
+ g_main_loop_run(loop);
+
+ return 0;
+}