Revert "tests: port from g_test_trap_subprocess() to g_test_trap_fork()"
[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   if (error == NULL)
76     g_debug ("closed (%d, no error)", remote_peer_vanished);
77   else
78     g_debug ("closed (%d, %s %d \"%s\")", remote_peer_vanished,
79              g_quark_to_string (error->domain), error->code, error->message);
80
81   g_assert_cmpint (remote_peer_vanished, ==, (td->who_closes == REMOTE));
82   g_assert_cmpint ((error == NULL), ==, (td->who_closes == LOCAL));
83
84   /* we delay this so that if exit-on-close was going to happen, it will
85    * win the race
86    */
87   g_timeout_add (50, quit_later_cb, NULL);
88 }
89
90 static void
91 close_async_cb (GObject *source G_GNUC_UNUSED,
92                 GAsyncResult *res G_GNUC_UNUSED,
93                 gpointer nil G_GNUC_UNUSED)
94 {
95   GError *error = NULL;
96
97   if (g_dbus_connection_close_finish (G_DBUS_CONNECTION (source),
98                                       res,
99                                       &error))
100     {
101       g_debug ("closed connection");
102     }
103   else
104     {
105       g_warning ("failed to close connection: %s (%s #%d)",
106                  error->message, g_quark_to_string (error->domain),
107                  error->code);
108     }
109 }
110
111 static void
112 test_exit_on_close (gconstpointer test_data)
113 {
114   const TestData *td = test_data;
115   GTestTrapFlags silence;
116
117   /* all the tests rely on a shared main loop */
118   loop = g_main_loop_new (NULL, FALSE);
119
120   g_test_dbus_unset ();
121
122   if (g_test_verbose ())
123     silence = 0;
124   else
125     silence = G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR;
126
127   if (g_test_trap_fork (0, silence))
128     {
129       GDBusConnection *c;
130
131       session_bus_up ();
132       c = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
133
134       g_assert (c != NULL);
135
136       /* the default is meant to be TRUE */
137       if (td->exit_on_close != IMPLICITLY_TRUE)
138         g_dbus_connection_set_exit_on_close (c, td->exit_on_close);
139
140       g_assert_cmpint (g_dbus_connection_get_exit_on_close (c), ==,
141                        (td->exit_on_close != EXPLICITLY_FALSE));
142       g_assert (!g_dbus_connection_is_closed (c));
143
144       g_timeout_add (50, quit_later_cb, NULL);
145       g_main_loop_run (loop);
146
147       g_signal_connect (c, "closed", G_CALLBACK (closed_cb), (gpointer) td);
148
149       if (td->who_closes == LOCAL)
150         {
151           GVariant *v;
152           GError *error = NULL;
153
154           v = g_dbus_connection_call_sync (c, "org.freedesktop.DBus",
155                                            "/org/freedesktop/DBus",
156                                            "org.freedesktop.DBus",
157                                            "ListNames",
158                                            NULL,
159                                            G_VARIANT_TYPE ("(as)"),
160                                            G_DBUS_CALL_FLAGS_NONE,
161                                            -1,
162                                            NULL,
163                                            &error);
164           g_assert_no_error (error);
165           g_assert (v != NULL);
166           g_variant_unref (v);
167
168           g_dbus_connection_close (c, NULL, close_async_cb, NULL);
169         }
170       else
171         {
172           session_bus_stop ();
173         }
174
175       g_main_loop_run (loop);
176       /* this is only reached when we turn off exit-on-close */
177       g_main_loop_unref (loop);
178       g_object_unref (c);
179
180       session_bus_down ();
181
182       exit (0);
183     }
184
185   if (td->exit_on_close == EXPLICITLY_FALSE ||
186       td->who_closes == LOCAL)
187     {
188       g_test_trap_assert_stdout_unmatched (VANISHED_PATTERN);
189       g_test_trap_assert_passed ();
190     }
191   else
192     {
193       g_test_trap_assert_stdout (VANISHED_PATTERN);
194       g_test_trap_assert_failed();
195     }
196 }
197
198 /* ---------------------------------------------------------------------------------------------------- */
199
200 int
201 main (int   argc,
202       char *argv[])
203 {
204   gint i;
205
206   g_test_init (&argc, &argv, NULL);
207
208   for (i = 0; cases[i].name != NULL; i++)
209     {
210       gchar *name = g_strdup_printf ("/gdbus/exit-on-close/%s", cases[i].name);
211
212       g_test_add_data_func (name, &cases[i], test_exit_on_close);
213       g_free (name);
214     }
215
216   return g_test_run();
217 }