gdbus-exit-on-close test: cover more possibilities
[platform/upstream/glib.git] / gio / tests / gdbus-exit-on-close.c
1 /* GLib testing framework examples and tests
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #include <gio/gio.h>
24 #include <stdlib.h>
25 #include <unistd.h>
26 #include <string.h>
27
28 #include "gdbus-tests.h"
29
30 /* all tests rely on a shared mainloop */
31 static GMainLoop *loop = NULL;
32
33 /* ---------------------------------------------------------------------------------------------------- */
34
35 typedef struct {
36     const gchar *name;
37     const gchar *bug;
38     enum {
39         EXPLICITLY_FALSE = FALSE,
40         EXPLICITLY_TRUE = TRUE,
41         IMPLICITLY_TRUE
42     } exit_on_close;
43     enum {
44         LOCAL,
45         REMOTE
46     } who_closes;
47 } TestData;
48
49 static const TestData cases[] = {
50       { "default",  NULL,     IMPLICITLY_TRUE,  REMOTE },
51       { "true",     NULL,     EXPLICITLY_TRUE,  REMOTE },
52       { "false",    NULL,     EXPLICITLY_FALSE, REMOTE },
53       { "we-close", "662100", EXPLICITLY_TRUE,  LOCAL  },
54       { NULL }
55 };
56
57 static gboolean
58 quit_later_cb (gpointer data G_GNUC_UNUSED)
59 {
60   g_main_loop_quit (loop);
61
62   return FALSE;
63 }
64
65 #define VANISHED_PATTERN "*Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.*"
66
67 static void
68 closed_cb (GDBusConnection  *c G_GNUC_UNUSED,
69            gboolean          remote_peer_vanished,
70            GError           *error,
71            gpointer          test_data)
72 {
73   const TestData *td = test_data;
74
75   g_assert_cmpint (remote_peer_vanished, ==, (td->who_closes == REMOTE));
76   g_assert_cmpint ((error == NULL), ==, (td->who_closes == LOCAL));
77
78   /* we delay this so that if exit-on-close was going to happen, it will
79    * win the race
80    */
81   g_timeout_add (50, quit_later_cb, NULL);
82 }
83
84 static void
85 close_async_cb (GObject *source G_GNUC_UNUSED,
86                 GAsyncResult *res G_GNUC_UNUSED,
87                 gpointer nil G_GNUC_UNUSED)
88 {
89 }
90
91 static void
92 test_exit_on_close (gconstpointer test_data)
93 {
94   const TestData *td = test_data;
95
96   /* all the tests rely on a shared main loop */
97   loop = g_main_loop_new (NULL, FALSE);
98
99   /* all the tests use a session bus with a well-known address that we can bring up and down
100    * using session_bus_up() and session_bus_down().
101    */
102   g_unsetenv ("DISPLAY");
103   g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE);
104
105   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
106     {
107       GDBusConnection *c;
108
109       session_bus_up ();
110       c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
111
112       g_assert (c != NULL);
113
114       /* the default is meant to be TRUE */
115       if (td->exit_on_close != IMPLICITLY_TRUE)
116         g_dbus_connection_set_exit_on_close (c, td->exit_on_close);
117
118       g_assert_cmpint (g_dbus_connection_get_exit_on_close (c), ==,
119                        (td->exit_on_close != EXPLICITLY_FALSE));
120       g_assert (!g_dbus_connection_is_closed (c));
121
122       g_timeout_add (50, quit_later_cb, NULL);
123       g_main_loop_run (loop);
124
125       g_signal_connect (c, "closed", G_CALLBACK (closed_cb), (gpointer) td);
126
127       if (td->who_closes == LOCAL)
128         {
129           GVariant *v;
130           GError *error = NULL;
131
132           v = g_dbus_connection_call_sync (c, "org.freedesktop.DBus",
133                                            "/org/freedesktop/DBus",
134                                            "org.freedesktop.DBus",
135                                            "ListNames",
136                                            NULL,
137                                            G_VARIANT_TYPE ("(as)"),
138                                            G_DBUS_CALL_FLAGS_NONE,
139                                            -1,
140                                            NULL,
141                                            &error);
142           g_assert_no_error (error);
143           g_assert (v != NULL);
144
145           g_dbus_connection_close (c, NULL, close_async_cb, NULL);
146         }
147       else
148         {
149           session_bus_down ();
150         }
151
152       g_main_loop_run (loop);
153       /* this is only reached when we turn off exit-on-close */
154       g_main_loop_unref (loop);
155       exit (0);
156     }
157
158   if (td->exit_on_close == EXPLICITLY_FALSE ||
159       td->who_closes == LOCAL)
160     {
161       g_test_trap_assert_stdout_unmatched (VANISHED_PATTERN);
162       g_test_trap_assert_passed ();
163     }
164   else
165     {
166       g_test_trap_assert_stdout (VANISHED_PATTERN);
167       g_test_trap_assert_failed();
168     }
169 }
170
171 /* ---------------------------------------------------------------------------------------------------- */
172
173 int
174 main (int   argc,
175       char *argv[])
176 {
177   gint i;
178
179   g_type_init ();
180   g_test_init (&argc, &argv, NULL);
181
182   for (i = 0; cases[i].name != NULL; i++)
183     {
184       gchar *name = g_strdup_printf ("/gdbus/exit-on-close/%s", cases[i].name);
185
186       g_test_add_data_func (name, &cases[i], test_exit_on_close);
187       g_free (name);
188     }
189
190   return g_test_run();
191 }