Convert remaining gio tests to installed
[platform/upstream/glib.git] / gio / tests / gdbus-connection-slow.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 <unistd.h>
25 #include <string.h>
26
27 #include <sys/types.h>
28
29 #include "gdbus-tests.h"
30
31 static const gchar *datapath;
32
33 /* all tests rely on a shared mainloop */
34 static GMainLoop *loop = NULL;
35
36 /* ---------------------------------------------------------------------------------------------------- */
37
38 static void
39 test_connection_flush_signal_handler (GDBusConnection  *connection,
40                                       const gchar      *sender_name,
41                                       const gchar      *object_path,
42                                       const gchar      *interface_name,
43                                       const gchar      *signal_name,
44                                       GVariant         *parameters,
45                                       gpointer         user_data)
46 {
47   g_main_loop_quit (loop);
48 }
49
50 static gboolean
51 test_connection_flush_on_timeout (gpointer user_data)
52 {
53   guint iteration = GPOINTER_TO_UINT (user_data);
54   g_printerr ("Timeout waiting 1000 msec on iteration %d\n", iteration);
55   g_assert_not_reached ();
56   return FALSE;
57 }
58
59 static void
60 test_connection_flush (void)
61 {
62   GDBusConnection *connection;
63   GError *error;
64   guint n;
65   guint signal_handler_id;
66
67   session_bus_up ();
68
69   error = NULL;
70   connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
71   g_assert_no_error (error);
72   g_assert (connection != NULL);
73
74   signal_handler_id = g_dbus_connection_signal_subscribe (connection,
75                                                           NULL, /* sender */
76                                                           "org.gtk.GDBus.FlushInterface",
77                                                           "SomeSignal",
78                                                           "/org/gtk/GDBus/FlushObject",
79                                                           NULL,
80                                                           G_DBUS_SIGNAL_FLAGS_NONE,
81                                                           test_connection_flush_signal_handler,
82                                                           NULL,
83                                                           NULL);
84   g_assert_cmpint (signal_handler_id, !=, 0);
85
86   for (n = 0; n < 50; n++)
87     {
88       gboolean ret;
89       gint exit_status;
90       guint timeout_mainloop_id;
91       gchar *path;
92
93       error = NULL;
94       path = g_build_filename (datapath, "gdbus-connection-flush-helper", NULL);
95       ret = g_spawn_command_line_sync (path,
96                                        NULL, /* stdout */
97                                        NULL, /* stderr */
98                                        &exit_status,
99                                        &error);
100       g_assert_no_error (error);
101       g_spawn_check_exit_status (exit_status, &error);
102       g_assert_no_error (error);
103       g_assert (ret);
104       g_free (path);
105
106       timeout_mainloop_id = g_timeout_add (1000, test_connection_flush_on_timeout, GUINT_TO_POINTER (n));
107       g_main_loop_run (loop);
108       g_source_remove (timeout_mainloop_id);
109     }
110
111   g_dbus_connection_signal_unsubscribe (connection, signal_handler_id);
112   g_object_unref (connection);
113
114   session_bus_down ();
115 }
116
117 /* ---------------------------------------------------------------------------------------------------- */
118
119 /* Message size > 20MiB ... should be enough to make sure the message
120  * is fragmented when shoved across any transport
121  */
122 #define LARGE_MESSAGE_STRING_LENGTH (20*1024*1024)
123
124 static void
125 large_message_on_name_appeared (GDBusConnection *connection,
126                                 const gchar *name,
127                                 const gchar *name_owner,
128                                 gpointer user_data)
129 {
130   GError *error;
131   gchar *request;
132   const gchar *reply;
133   GVariant *result;
134   guint n;
135
136   request = g_new (gchar, LARGE_MESSAGE_STRING_LENGTH + 1);
137   for (n = 0; n < LARGE_MESSAGE_STRING_LENGTH; n++)
138     request[n] = '0' + (n%10);
139   request[n] = '\0';
140
141   error = NULL;
142   result = g_dbus_connection_call_sync (connection,
143                                         "com.example.TestService",      /* bus name */
144                                         "/com/example/TestObject",      /* object path */
145                                         "com.example.Frob",             /* interface name */
146                                         "HelloWorld",                   /* method name */
147                                         g_variant_new ("(s)", request), /* parameters */
148                                         G_VARIANT_TYPE ("(s)"),         /* return type */
149                                         G_DBUS_CALL_FLAGS_NONE,
150                                         G_MAXINT,
151                                         NULL,
152                                         &error);
153   g_assert_no_error (error);
154   g_assert (result != NULL);
155   g_variant_get (result, "(&s)", &reply);
156   g_assert_cmpint (strlen (reply), >, LARGE_MESSAGE_STRING_LENGTH);
157   g_assert (g_str_has_prefix (reply, "You greeted me with '01234567890123456789012"));
158   g_assert (g_str_has_suffix (reply, "6789'. Thanks!"));
159   g_variant_unref (result);
160
161   g_free (request);
162
163   g_main_loop_quit (loop);
164 }
165
166 static void
167 large_message_on_name_vanished (GDBusConnection *connection,
168                                 const gchar *name,
169                                 gpointer user_data)
170 {
171 }
172
173 static void
174 test_connection_large_message (void)
175 {
176   guint watcher_id;
177   gchar *path;
178
179   session_bus_up ();
180
181   /* this is safe; testserver will exit once the bus goes away */
182   path = g_build_filename (datapath, "gdbus-testserver", NULL);
183   g_assert (g_spawn_command_line_async (path, NULL));
184   g_free (path);
185
186   watcher_id = g_bus_watch_name (G_BUS_TYPE_SESSION,
187                                  "com.example.TestService",
188                                  G_BUS_NAME_WATCHER_FLAGS_NONE,
189                                  large_message_on_name_appeared,
190                                  large_message_on_name_vanished,
191                                  NULL,  /* user_data */
192                                  NULL); /* GDestroyNotify */
193   g_main_loop_run (loop);
194   g_bus_unwatch_name (watcher_id);
195
196   session_bus_down ();
197 }
198
199 /* ---------------------------------------------------------------------------------------------------- */
200
201 int
202 main (int   argc,
203       char *argv[])
204 {
205   if (g_getenv ("G_TEST_DATA"))
206     datapath = g_getenv ("G_TEST_DATA");
207   else
208     datapath = SRCDIR;
209
210   g_test_init (&argc, &argv, NULL);
211
212   /* all the tests rely on a shared main loop */
213   loop = g_main_loop_new (NULL, FALSE);
214
215   g_test_dbus_unset ();
216
217   g_test_add_func ("/gdbus/connection/flush", test_connection_flush);
218   g_test_add_func ("/gdbus/connection/large_message", test_connection_large_message);
219   return g_test_run();
220 }