1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
#include <gio/gio.h>
#include <gstdio.h>
static gboolean
create_app (gpointer data)
{
const gchar *path = data;
gchar *file;
GError *error = NULL;
const gchar *contents =
"[Desktop Entry]\n"
"Name=Application\n"
"Version=1.0\n"
"Type=Application\n"
"Exec=true\n";
file = g_build_filename (path, "app.desktop", NULL);
g_file_set_contents (file, contents, -1, &error);
g_assert_no_error (error);
g_free (file);
return G_SOURCE_REMOVE;
}
static gboolean
delete_app (gpointer data)
{
const gchar *path = data;
gchar *file;
file = g_build_filename (path, "app.desktop", NULL);
g_remove (file);
g_free (file);
return G_SOURCE_REMOVE;
}
static gboolean changed_fired;
static void
changed_cb (GAppInfoMonitor *monitor, GMainLoop *loop)
{
changed_fired = TRUE;
g_main_loop_quit (loop);
}
static gboolean
quit_loop (gpointer data)
{
GMainLoop *loop = data;
g_main_loop_quit (loop);
return G_SOURCE_REMOVE;
}
static void
test_app_monitor (void)
{
gchar *path;
GAppInfoMonitor *monitor;
GMainLoop *loop;
path = g_build_filename (g_get_user_data_dir (), "applications", NULL);
g_mkdir (path, 0755);
/* FIXME: this shouldn't be required */
g_list_free_full (g_app_info_get_all (), g_object_unref);
monitor = g_app_info_monitor_get ();
loop = g_main_loop_new (NULL, FALSE);
g_signal_connect (monitor, "changed", G_CALLBACK (changed_cb), loop);
g_idle_add (create_app, path);
g_timeout_add_seconds (3, quit_loop, loop);
g_main_loop_run (loop);
g_assert (changed_fired);
changed_fired = FALSE;
/* FIXME: this shouldn't be required */
g_list_free_full (g_app_info_get_all (), g_object_unref);
g_idle_add (delete_app, path);
g_timeout_add_seconds (3, quit_loop, loop);
g_main_loop_run (loop);
g_assert (changed_fired);
g_main_loop_unref (loop);
g_object_unref (monitor);
g_free (path);
}
int
main (int argc, char *argv[])
{
gchar *path;
path = g_mkdtemp (g_strdup ("app_monitor_XXXXXX"));
g_setenv ("XDG_DATA_DIRS", path, TRUE);
g_setenv ("XDG_DATA_HOME", path, TRUE);
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/monitor/app", test_app_monitor);
return g_test_run ();
}
|