5 #include "gdbus-sessionbus.h"
7 static gint outstanding_watches;
8 static GMainLoop *main_loop;
12 const gchar *expected_stdout;
21 ChildData *child = data;
22 gssize expected, actual;
25 g_assert_cmpint (status, ==, 0);
27 if (--outstanding_watches == 0)
28 g_main_loop_quit (main_loop);
30 expected = strlen (child->expected_stdout);
31 buffer = g_alloca (expected + 100);
32 actual = read (child->stdout_pipe, buffer, expected + 100);
33 close (child->stdout_pipe);
35 g_assert_cmpint (actual, >=, 0);
37 if (actual != expected ||
38 memcmp (buffer, child->expected_stdout, expected) != 0)
40 buffer[MIN(expected + 100, actual)] = '\0';
42 g_error ("\nExpected\n-----\n%s-----\nGot (%s)\n-----\n%s-----\n",
43 child->expected_stdout,
44 (actual > expected) ? "truncated" : "full", buffer);
47 g_slice_free (ChildData, child);
51 spawn (const gchar *expected_stdout,
52 const gchar *first_arg,
63 va_start (ap, first_arg);
64 array = g_ptr_array_new ();
65 g_ptr_array_add (array, g_strdup ("./basic-application"));
66 for (arg = first_arg; arg; arg = va_arg (ap, const gchar *))
67 g_ptr_array_add (array, g_strdup (arg));
68 g_ptr_array_add (array, NULL);
69 args = (gchar **) g_ptr_array_free (array, FALSE);
71 data = g_slice_new (ChildData);
72 data->expected_stdout = expected_stdout;
74 g_spawn_async_with_pipes (NULL, args, NULL,
75 G_SPAWN_DO_NOT_REAP_CHILD,
76 NULL, NULL, &pid, NULL,
77 &data->stdout_pipe, NULL, &error);
78 g_assert_no_error (error);
80 g_child_watch_add (pid, child_quit, data);
81 outstanding_watches++;
89 main_loop = g_main_loop_new (NULL, 0);
91 /* spawn the master */
93 "open file:///a file:///b\n"
94 "cmdline '40 +' '2'\n"
98 /* make sure it becomes the master */
101 /* send it some files */
102 spawn ("exit status: 0\n",
103 "./app", "/a", "/b", NULL);
105 /* make sure the commandline arrives after the files */
108 spawn ("40 + 2 = 42\n"
110 "./cmd", "40 +", "2", NULL);
112 g_main_loop_run (main_loop);
119 /* Now that we register non-unique apps on the bus we need to fix the
120 * following test not to assume that it's safe to create multiple instances
121 * of the same app in one process.
123 * See https://bugzilla.gnome.org/show_bug.cgi?id=647986 for the patch that
124 * introduced this problem.
127 static GApplication *recently_activated;
128 static GMainLoop *loop;
131 nonunique_activate (GApplication *application)
133 recently_activated = application;
136 g_main_loop_quit (loop);
139 static GApplication *
140 make_app (gboolean non_unique)
145 app = g_application_new ("org.gtk.Test-Application",
146 non_unique ? G_APPLICATION_NON_UNIQUE : 0);
147 g_signal_connect (app, "activate", G_CALLBACK (nonunique_activate), NULL);
148 ok = g_application_register (app, NULL, NULL);
151 g_object_unref (app);
155 g_application_activate (app);
161 test_nonunique (void)
163 GApplication *first, *second, *third, *fourth;
167 first = make_app (TRUE);
168 /* non-remote because it is non-unique */
169 g_assert (!g_application_get_is_remote (first));
170 g_assert (recently_activated == first);
171 recently_activated = NULL;
173 second = make_app (FALSE);
174 /* non-remote because it is first */
175 g_assert (!g_application_get_is_remote (second));
176 g_assert (recently_activated == second);
177 recently_activated = NULL;
179 third = make_app (TRUE);
180 /* non-remote because it is non-unique */
181 g_assert (!g_application_get_is_remote (third));
182 g_assert (recently_activated == third);
183 recently_activated = NULL;
185 fourth = make_app (FALSE);
186 /* should have failed to register due to being
187 * unable to register the object paths
189 g_assert (fourth == NULL);
190 g_assert (recently_activated == NULL);
192 g_object_unref (first);
193 g_object_unref (second);
194 g_object_unref (third);
205 GApplicationFlags flags;
209 app = g_object_new (G_TYPE_APPLICATION,
210 "application-id", "org.gtk.TestApplication",
214 "application-id", &id,
216 "is-registered", ®istered,
217 "inactivity-timeout", &timeout,
220 g_assert_cmpstr (id, ==, "org.gtk.TestApplication");
221 g_assert_cmpint (flags, ==, G_APPLICATION_FLAGS_NONE);
222 g_assert (!registered);
223 g_assert_cmpint (timeout, ==, 0);
225 g_object_unref (app);
234 g_assert (!g_application_id_is_valid (""));
235 g_assert (!g_application_id_is_valid ("."));
236 g_assert (!g_application_id_is_valid ("a"));
237 g_assert (!g_application_id_is_valid ("abc"));
238 g_assert (!g_application_id_is_valid (".abc"));
239 g_assert (!g_application_id_is_valid ("abc."));
240 g_assert (!g_application_id_is_valid ("a..b"));
241 g_assert (!g_application_id_is_valid ("a/b"));
242 g_assert (!g_application_id_is_valid ("a\nb"));
243 g_assert (!g_application_id_is_valid ("a\nb"));
244 g_assert (!g_application_id_is_valid ("_a.b"));
245 g_assert (!g_application_id_is_valid ("-a.b"));
246 id = g_new0 (gchar, 261);
247 memset (id, 'a', 260);
250 g_assert (!g_application_id_is_valid (id));
253 g_assert (g_application_id_is_valid ("a.b"));
254 g_assert (g_application_id_is_valid ("A.B"));
255 g_assert (g_application_id_is_valid ("A-.B"));
256 g_assert (g_application_id_is_valid ("a_b.c-d"));
257 g_assert (g_application_id_is_valid ("org.gnome.SessionManager"));
260 static gboolean nodbus_activated;
263 release_app (gpointer user_data)
265 g_application_release (user_data);
266 return G_SOURCE_REMOVE;
270 nodbus_activate (GApplication *app)
272 nodbus_activated = TRUE;
273 g_application_hold (app);
274 g_idle_add (release_app, app);
280 gchar *argv[] = { "./unimportant", NULL };
281 GDBusConnection *session;
284 session = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
285 g_assert (session == NULL);
287 app = g_application_new ("org.gtk.Unimportant",
288 G_APPLICATION_FLAGS_NONE);
289 g_signal_connect (app, "activate", G_CALLBACK (nodbus_activate), NULL);
290 g_application_run (app, 1, argv);
291 g_object_unref (app);
293 g_assert (nodbus_activated);
297 quit_app (gpointer user_data)
299 g_application_quit (user_data);
300 return G_SOURCE_REMOVE;
303 static gboolean quit_activated;
306 quit_activate (GApplication *app)
308 quit_activated = TRUE;
309 g_application_hold (app);
310 g_idle_add (quit_app, app);
316 gchar *argv[] = { "./unimportant", NULL };
317 GDBusConnection *session;
320 session = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
321 g_assert (session == NULL);
323 app = g_application_new ("org.gtk.Unimportant",
324 G_APPLICATION_FLAGS_NONE);
325 g_signal_connect (app, "activate", G_CALLBACK (quit_activate), NULL);
326 g_application_run (app, 1, argv);
327 g_object_unref (app);
329 g_assert (quit_activated);
333 on_activate (GApplication *app)
339 g_assert (!g_application_get_is_remote (app));
341 actions = g_action_group_list_actions (G_ACTION_GROUP (app));
342 g_assert (g_strv_length (actions) == 0);
343 g_strfreev (actions);
345 action = (GAction*)g_simple_action_new_stateful ("test", G_VARIANT_TYPE_BOOLEAN, g_variant_new_boolean (FALSE));
346 g_action_map_add_action (G_ACTION_MAP (app), action);
348 actions = g_action_group_list_actions (G_ACTION_GROUP (app));
349 g_assert (g_strv_length (actions) == 1);
350 g_strfreev (actions);
352 g_action_group_change_action_state (G_ACTION_GROUP (app), "test", g_variant_new_boolean (TRUE));
353 state = g_action_group_get_action_state (G_ACTION_GROUP (app), "test");
354 g_assert (g_variant_get_boolean (state) == TRUE);
356 g_action_map_remove_action (G_ACTION_MAP (app), "test");
358 actions = g_action_group_list_actions (G_ACTION_GROUP (app));
359 g_assert (g_strv_length (actions) == 0);
360 g_strfreev (actions);
362 g_idle_add (quit_app, app);
368 gchar *argv[] = { "./unimportant", NULL };
369 GDBusConnection *session;
372 session = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
373 g_assert (session == NULL);
375 app = g_application_new ("org.gtk.Unimportant",
376 G_APPLICATION_FLAGS_NONE);
377 g_signal_connect (app, "activate", G_CALLBACK (on_activate), NULL);
378 g_application_run (app, 1, argv);
379 g_object_unref (app);
383 main (int argc, char **argv)
387 g_test_init (&argc, &argv, NULL);
389 /* all the tests use a session bus with a well-known address
390 * that we can bring up and down using session_bus_up() and
391 * session_bus_down().
393 g_unsetenv ("DISPLAY");
394 g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE);
396 g_test_add_func ("/gapplication/no-dbus", test_nodbus);
397 g_test_add_func ("/gapplication/basic", basic);
398 /* g_test_add_func ("/gapplication/non-unique", test_nonunique); */
399 g_test_add_func ("/gapplication/properties", properties);
400 g_test_add_func ("/gapplication/app-id", appid);
401 g_test_add_func ("/gapplication/quit", test_quit);
402 g_test_add_func ("/gapplication/actions", test_actions);
404 return g_test_run ();