Improve gdbus test coverage
[platform/upstream/glib.git] / gio / tests / gdbus-proxy.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 "gdbus-tests.h"
28
29 /* all tests rely on a shared mainloop */
30 static GMainLoop *loop = NULL;
31
32 /* ---------------------------------------------------------------------------------------------------- */
33 /* Test that the method aspects of GDBusProxy works */
34 /* ---------------------------------------------------------------------------------------------------- */
35
36 static void
37 test_methods (GDBusProxy *proxy)
38 {
39   GVariant *result;
40   GError *error;
41   const gchar *str;
42   gchar *dbus_error_name;
43
44   /* check that we can invoke a method */
45   error = NULL;
46   result = g_dbus_proxy_call_sync (proxy,
47                                    "HelloWorld",
48                                    g_variant_new ("(s)", "Hey"),
49                                    G_DBUS_CALL_FLAGS_NONE,
50                                    -1,
51                                    NULL,
52                                    &error);
53   g_assert_no_error (error);
54   g_assert (result != NULL);
55   g_assert_cmpstr (g_variant_get_type_string (result), ==, "(s)");
56   g_variant_get (result, "(&s)", &str);
57   g_assert_cmpstr (str, ==, "You greeted me with 'Hey'. Thanks!");
58   g_variant_unref (result);
59
60   /* Check that we can completely recover the returned error */
61   result = g_dbus_proxy_call_sync (proxy,
62                                    "HelloWorld",
63                                    g_variant_new ("(s)", "Yo"),
64                                    G_DBUS_CALL_FLAGS_NONE,
65                                    -1,
66                                    NULL,
67                                    &error);
68   g_assert_error (error, G_IO_ERROR, G_IO_ERROR_DBUS_ERROR);
69   g_assert (g_dbus_error_is_remote_error (error));
70   g_assert (g_dbus_error_is_remote_error (error));
71   g_assert (result == NULL);
72   dbus_error_name = g_dbus_error_get_remote_error (error);
73   g_assert_cmpstr (dbus_error_name, ==, "com.example.TestException");
74   g_free (dbus_error_name);
75   g_assert (g_dbus_error_strip_remote_error (error));
76   g_assert_cmpstr (error->message, ==, "Yo is not a proper greeting");
77   g_clear_error (&error);
78
79   /* Check that we get a timeout if the method handling is taking longer than timeout */
80   error = NULL;
81   result = g_dbus_proxy_call_sync (proxy,
82                                    "Sleep",
83                                    g_variant_new ("(i)", 500 /* msec */),
84                                    G_DBUS_CALL_FLAGS_NONE,
85                                    100 /* msec */,
86                                    NULL,
87                                    &error);
88   g_assert_error (error, G_IO_ERROR, G_IO_ERROR_TIMED_OUT);
89   g_assert (!g_dbus_error_is_remote_error (error));
90   g_assert (result == NULL);
91   g_clear_error (&error);
92
93   /* Check that proxy-default timeouts work. */
94   g_assert_cmpint (g_dbus_proxy_get_default_timeout (proxy), ==, -1);
95
96   /* the default timeout is 25000 msec so this should work */
97   result = g_dbus_proxy_call_sync (proxy,
98                                    "Sleep",
99                                    g_variant_new ("(i)", 500 /* msec */),
100                                    G_DBUS_CALL_FLAGS_NONE,
101                                    -1, /* use proxy default (e.g. -1 -> e.g. 25000 msec) */
102                                    NULL,
103                                    &error);
104   g_assert_no_error (error);
105   g_assert (result != NULL);
106   g_assert_cmpstr (g_variant_get_type_string (result), ==, "()");
107   g_variant_unref (result);
108
109   /* now set the proxy-default timeout to 250 msec and try the 500 msec call - this should FAIL */
110   g_dbus_proxy_set_default_timeout (proxy, 250);
111   g_assert_cmpint (g_dbus_proxy_get_default_timeout (proxy), ==, 250);
112   result = g_dbus_proxy_call_sync (proxy,
113                                    "Sleep",
114                                    g_variant_new ("(i)", 500 /* msec */),
115                                    G_DBUS_CALL_FLAGS_NONE,
116                                    -1, /* use proxy default (e.g. 250 msec) */
117                                    NULL,
118                                    &error);
119   g_assert_error (error, G_IO_ERROR, G_IO_ERROR_TIMED_OUT);
120   g_assert (!g_dbus_error_is_remote_error (error));
121   g_assert (result == NULL);
122   g_clear_error (&error);
123
124   /* clean up after ourselves */
125   g_dbus_proxy_set_default_timeout (proxy, -1);
126 }
127
128 static gboolean
129 strv_equal (gchar **strv, ...)
130 {
131   gint count;
132   va_list list;
133   const gchar *str;
134   gboolean res;
135
136   res = TRUE;
137   count = 0;
138   va_start (list, strv);
139   while (1)
140     {
141       str = va_arg (list, const gchar *);
142       if (str == NULL)
143         break;
144       if (g_strcmp0 (str, strv[count]) != 0)
145         {
146           res = FALSE;
147           break;
148         }
149       count++;
150     }
151   va_end (list);
152
153   if (res)
154     res = g_strv_length (strv) == count;
155
156   return res;
157 }
158
159 /* ---------------------------------------------------------------------------------------------------- */
160 /* Test that the property aspects of GDBusProxy works */
161 /* ---------------------------------------------------------------------------------------------------- */
162
163 static void
164 test_properties (GDBusProxy *proxy)
165 {
166   GError *error;
167   GVariant *variant;
168   GVariant *variant2;
169   GVariant *result;
170   gchar **names;
171
172   error = NULL;
173
174   if (g_dbus_proxy_get_flags (proxy) & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES)
175     {
176        g_assert (g_dbus_proxy_get_cached_property_names (proxy) == NULL);
177        return;
178     }
179
180   /*
181    * Check that we can list all cached properties.
182    */
183   names = g_dbus_proxy_get_cached_property_names (proxy);
184
185   g_assert (strv_equal (names,
186                         "PropertyThatWillBeInvalidated",
187                         "ab",
188                         "ad",
189                         "ai",
190                         "an",
191                         "ao",
192                         "aq",
193                         "as",
194                         "at",
195                         "au",
196                         "ax",
197                         "ay",
198                         "b",
199                         "d",
200                         "foo",
201                         "i",
202                         "n",
203                         "o",
204                         "q",
205                         "s",
206                         "t",
207                         "u",
208                         "x",
209                         "y",
210                         NULL));
211
212   g_strfreev (names);
213
214   /*
215    * Check that we can read cached properties.
216    *
217    * No need to test all properties - GVariant has already been tested
218    */
219   variant = g_dbus_proxy_get_cached_property (proxy, "y");
220   g_assert (variant != NULL);
221   g_assert_cmpint (g_variant_get_byte (variant), ==, 1);
222   g_variant_unref (variant);
223   variant = g_dbus_proxy_get_cached_property (proxy, "o");
224   g_assert (variant != NULL);
225   g_assert_cmpstr (g_variant_get_string (variant, NULL), ==, "/some/path");
226   g_variant_unref (variant);
227
228   /*
229    * Now ask the service to change a property and check that #GDBusProxy::g-property-changed
230    * is received. Also check that the cache is updated.
231    */
232   variant2 = g_variant_new_byte (42);
233   result = g_dbus_proxy_call_sync (proxy,
234                                    "FrobSetProperty",
235                                    g_variant_new ("(sv)",
236                                                   "y",
237                                                   variant2),
238                                    G_DBUS_CALL_FLAGS_NONE,
239                                    -1,
240                                    NULL,
241                                    &error);
242   g_assert_no_error (error);
243   g_assert (result != NULL);
244   g_assert_cmpstr (g_variant_get_type_string (result), ==, "()");
245   g_variant_unref (result);
246   _g_assert_signal_received (proxy, "g-properties-changed");
247   variant = g_dbus_proxy_get_cached_property (proxy, "y");
248   g_assert (variant != NULL);
249   g_assert_cmpint (g_variant_get_byte (variant), ==, 42);
250   g_variant_unref (variant);
251
252   g_dbus_proxy_set_cached_property (proxy, "y", g_variant_new_byte (142));
253   variant = g_dbus_proxy_get_cached_property (proxy, "y");
254   g_assert (variant != NULL);
255   g_assert_cmpint (g_variant_get_byte (variant), ==, 142);
256   g_variant_unref (variant);
257
258   g_dbus_proxy_set_cached_property (proxy, "y", NULL);
259   variant = g_dbus_proxy_get_cached_property (proxy, "y");
260   g_assert (variant == NULL);
261
262   /* Check that the invalidation feature of the PropertiesChanged()
263    * signal works... First, check that we have a cached value of the
264    * property (from the initial GetAll() call)
265    */
266   variant = g_dbus_proxy_get_cached_property (proxy, "PropertyThatWillBeInvalidated");
267   g_assert (variant != NULL);
268   g_assert_cmpstr (g_variant_get_string (variant, NULL), ==, "InitialValue");
269   g_variant_unref (variant);
270   /* now ask to invalidate the property - this causes a
271    *
272    *   PropertiesChanaged("com.example.Frob",
273    *                      {},
274    *                      ["PropertyThatWillBeInvalidated")
275    *
276    * signal to be emitted. This is received before the method reply
277    * for FrobInvalidateProperty *but* since the proxy was created in
278    * the same thread as we're doing this synchronous call, we'll get
279    * the method reply before...
280    */
281   result = g_dbus_proxy_call_sync (proxy,
282                                    "FrobInvalidateProperty",
283                                    NULL,
284                                    G_DBUS_CALL_FLAGS_NONE,
285                                    -1,
286                                    NULL,
287                                    &error);
288   g_assert_no_error (error);
289   g_assert (result != NULL);
290   g_assert_cmpstr (g_variant_get_type_string (result), ==, "()");
291   g_variant_unref (result);
292   /* ... hence we wait for the g-properties-changed signal to be delivered */
293   _g_assert_signal_received (proxy, "g-properties-changed");
294   /* ... and now we finally, check that the cached value has been invalidated */
295   variant = g_dbus_proxy_get_cached_property (proxy, "PropertyThatWillBeInvalidated");
296   g_assert (variant == NULL);
297 }
298
299 /* ---------------------------------------------------------------------------------------------------- */
300 /* Test that the signal aspects of GDBusProxy works */
301 /* ---------------------------------------------------------------------------------------------------- */
302
303 static void
304 test_proxy_signals_on_signal (GDBusProxy  *proxy,
305                               const gchar *sender_name,
306                               const gchar *signal_name,
307                               GVariant    *parameters,
308                               gpointer     user_data)
309 {
310   GString *s = user_data;
311
312   g_assert_cmpstr (signal_name, ==, "TestSignal");
313   g_assert_cmpstr (g_variant_get_type_string (parameters), ==, "(sov)");
314
315   g_variant_print_string (parameters, s, TRUE);
316 }
317
318 typedef struct
319 {
320   GMainLoop *internal_loop;
321   GString *s;
322 } TestSignalData;
323
324 static void
325 test_proxy_signals_on_emit_signal_cb (GDBusProxy   *proxy,
326                                       GAsyncResult *res,
327                                       gpointer      user_data)
328 {
329   TestSignalData *data = user_data;
330   GError *error;
331   GVariant *result;
332
333   error = NULL;
334   result = g_dbus_proxy_call_finish (proxy,
335                                      res,
336                                      &error);
337   g_assert_no_error (error);
338   g_assert (result != NULL);
339   g_assert_cmpstr (g_variant_get_type_string (result), ==, "()");
340   g_variant_unref (result);
341
342   /* check that the signal was recieved before we got the method result */
343   g_assert (strlen (data->s->str) > 0);
344
345   /* break out of the loop */
346   g_main_loop_quit (data->internal_loop);
347 }
348
349 static void
350 test_signals (GDBusProxy *proxy)
351 {
352   GError *error;
353   GString *s;
354   gulong signal_handler_id;
355   TestSignalData data;
356   GVariant *result;
357
358   error = NULL;
359
360   /*
361    * Ask the service to emit a signal and check that we receive it.
362    *
363    * Note that blocking calls don't block in the mainloop so wait for the signal (which
364    * is dispatched before the method reply)
365    */
366   s = g_string_new (NULL);
367   signal_handler_id = g_signal_connect (proxy,
368                                         "g-signal",
369                                         G_CALLBACK (test_proxy_signals_on_signal),
370                                         s);
371
372   result = g_dbus_proxy_call_sync (proxy,
373                                    "EmitSignal",
374                                    g_variant_new ("(so)",
375                                                   "Accept the next proposition you hear",
376                                                   "/some/path"),
377                                    G_DBUS_CALL_FLAGS_NONE,
378                                    -1,
379                                    NULL,
380                                    &error);
381   g_assert_no_error (error);
382   g_assert (result != NULL);
383   g_assert_cmpstr (g_variant_get_type_string (result), ==, "()");
384   g_variant_unref (result);
385   /* check that we haven't received the signal just yet */
386   g_assert (strlen (s->str) == 0);
387   /* and now wait for the signal */
388   _g_assert_signal_received (proxy, "g-signal");
389   g_assert_cmpstr (s->str,
390                    ==,
391                    "('Accept the next proposition you hear .. in bed!', objectpath '/some/path/in/bed', <'a variant'>)");
392   g_signal_handler_disconnect (proxy, signal_handler_id);
393   g_string_free (s, TRUE);
394
395   /*
396    * Now do this async to check the signal is received before the method returns.
397    */
398   s = g_string_new (NULL);
399   data.internal_loop = g_main_loop_new (NULL, FALSE);
400   data.s = s;
401   signal_handler_id = g_signal_connect (proxy,
402                                         "g-signal",
403                                         G_CALLBACK (test_proxy_signals_on_signal),
404                                         s);
405   g_dbus_proxy_call (proxy,
406                      "EmitSignal",
407                      g_variant_new ("(so)",
408                                     "You will make a great programmer",
409                                     "/some/other/path"),
410                      G_DBUS_CALL_FLAGS_NONE,
411                      -1,
412                      NULL,
413                      (GAsyncReadyCallback) test_proxy_signals_on_emit_signal_cb,
414                      &data);
415   g_main_loop_run (data.internal_loop);
416   g_main_loop_unref (data.internal_loop);
417   g_assert_cmpstr (s->str,
418                    ==,
419                    "('You will make a great programmer .. in bed!', objectpath '/some/other/path/in/bed', <'a variant'>)");
420   g_signal_handler_disconnect (proxy, signal_handler_id);
421   g_string_free (s, TRUE);
422 }
423
424 static void
425 test_bogus_method_return (GDBusProxy *proxy)
426 {
427   GError *error = NULL;
428   GVariant *result;
429
430   result = g_dbus_proxy_call_sync (proxy,
431                                    "PairReturn",
432                                    NULL,
433                                    G_DBUS_CALL_FLAGS_NONE,
434                                    -1,
435                                    NULL,
436                                    &error);
437   g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
438   g_assert (result == NULL);
439 }
440
441 /* ---------------------------------------------------------------------------------------------------- */
442
443 static const gchar *frob_dbus_interface_xml =
444   "<node>"
445   "  <interface name='com.example.Frob'>"
446   /* Deliberately different from gdbus-testserver.py's definition */
447   "    <method name='PairReturn'>"
448   "      <arg type='u' name='somenumber' direction='in'/>"
449   "      <arg type='s' name='somestring' direction='out'/>"
450   "    </method>"
451   "    <method name='HelloWorld'>"
452   "      <arg type='s' name='somestring' direction='in'/>"
453   "      <arg type='s' name='somestring' direction='out'/>"
454   "    </method>"
455   "    <method name='Sleep'>"
456   "      <arg type='i' name='timeout' direction='in'/>"
457   "    </method>"
458   "    <property name='y' type='y' access='readwrite'/>"
459   "  </interface>"
460   "</node>";
461 static GDBusInterfaceInfo *frob_dbus_interface_info;
462
463 static void
464 test_expected_interface (GDBusProxy *proxy)
465 {
466   /* This is obviously wrong but expected interface is not set so we don't fail... */
467   g_dbus_proxy_set_cached_property (proxy, "y", g_variant_new_string ("error_me_out!"));
468   g_dbus_proxy_set_cached_property (proxy, "y", g_variant_new_byte (42));
469   g_dbus_proxy_set_cached_property (proxy, "does-not-exist", g_variant_new_string ("something"));
470   g_dbus_proxy_set_cached_property (proxy, "does-not-exist", NULL);
471
472   /* Now repeat the method tests, with an expected interface set */
473   g_dbus_proxy_set_interface_info (proxy, frob_dbus_interface_info);
474   test_methods (proxy);
475
476   /* And now one more test where we deliberately set the expected
477    * interface definition incorrectly
478    */
479   test_bogus_method_return (proxy);
480
481   /* Also check that we complain if setting a cached property of the wrong type */
482   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
483     {
484       g_dbus_proxy_set_cached_property (proxy, "y", g_variant_new_string ("error_me_out!"));
485     }
486   g_test_trap_assert_stderr ("*Trying to set property y of type s but according to the expected interface the type is y*");
487   g_test_trap_assert_failed();
488
489   if (g_test_trap_fork (0, G_TEST_TRAP_SILENCE_STDOUT | G_TEST_TRAP_SILENCE_STDERR))
490     {
491       g_dbus_proxy_set_cached_property (proxy, "does-not-exist", g_variant_new_string ("something"));
492     }
493   g_test_trap_assert_stderr ("*Trying to lookup property does-not-exist which isn't in expected interface com.example.Frob*");
494   g_test_trap_assert_failed();
495
496   /* this should work, however (since the type is correct) */
497   g_dbus_proxy_set_cached_property (proxy, "y", g_variant_new_byte (42));
498 }
499
500 static void
501 test_basic (GDBusProxy *proxy)
502 {
503   GDBusConnection *connection;
504   GDBusConnection *conn;
505   GDBusProxyFlags flags;
506   GDBusInterfaceInfo *info;
507   const gchar *name;
508   const gchar *path;
509   const gchar *interface;
510   gint timeout;
511
512   connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
513
514   g_assert (g_dbus_proxy_get_connection (proxy) == connection);
515   g_assert (g_dbus_proxy_get_flags (proxy) == G_DBUS_PROXY_FLAGS_NONE);
516   g_assert (g_dbus_proxy_get_interface_info (proxy) == NULL);
517   g_assert_cmpstr (g_dbus_proxy_get_name (proxy), ==, "com.example.TestService");
518   g_assert_cmpstr (g_dbus_proxy_get_object_path (proxy), ==, "/com/example/TestObject");
519   g_assert_cmpstr (g_dbus_proxy_get_interface_name (proxy), ==, "com.example.Frob");
520   g_assert_cmpint (g_dbus_proxy_get_default_timeout (proxy), ==, -1);
521
522   g_object_get (proxy,
523                 "g-connection", &conn,
524                 "g-interface-info", &info,
525                 "g-flags", &flags,
526                 "g-name", &name,
527                 "g-object-path", &path,
528                 "g-interface-name", &interface,
529                 "g-default-timeout", &timeout,
530                 NULL);
531
532   g_assert (conn == connection);
533   g_assert (info == NULL);
534   g_assert_cmpint (flags, ==, G_DBUS_PROXY_FLAGS_NONE);
535   g_assert_cmpstr (name, ==, "com.example.TestService");
536   g_assert_cmpstr (path, ==, "/com/example/TestObject");
537   g_assert_cmpstr (interface, ==, "com.example.Frob");
538   g_assert_cmpint (timeout, ==, -1);
539
540   g_object_unref (conn);
541
542   g_object_unref (connection);
543 }
544
545 static void
546 test_proxy (void)
547 {
548   GDBusProxy *proxy;
549   GDBusConnection *connection;
550   GError *error;
551
552   session_bus_up ();
553
554   /* TODO: wait a bit for the bus to come up.. ideally session_bus_up() won't return
555    * until one can connect to the bus but that's not how things work right now
556    */
557   usleep (500 * 1000);
558
559   error = NULL;
560   connection = g_bus_get_sync (G_BUS_TYPE_SESSION,
561                                NULL,
562                                &error);
563   g_assert_no_error (error);
564   error = NULL;
565   proxy = g_dbus_proxy_new_sync (connection,
566                                  G_DBUS_PROXY_FLAGS_NONE,
567                                  NULL,                      /* GDBusInterfaceInfo */
568                                  "com.example.TestService", /* name */
569                                  "/com/example/TestObject", /* object path */
570                                  "com.example.Frob",        /* interface */
571                                  NULL, /* GCancellable */
572                                  &error);
573   g_assert_no_error (error);
574
575   /* this is safe; testserver will exit once the bus goes away */
576   g_assert (g_spawn_command_line_async (SRCDIR "/gdbus-testserver.py", NULL));
577
578   _g_assert_property_notify (proxy, "g-name-owner");
579
580   test_basic (proxy);
581   test_methods (proxy);
582   test_properties (proxy);
583   test_signals (proxy);
584   test_expected_interface (proxy);
585
586   g_object_unref (proxy);
587   g_object_unref (connection);
588 }
589
590 /* ---------------------------------------------------------------------------------------------------- */
591
592 static void
593 proxy_ready (GObject      *source,
594              GAsyncResult *result,
595              gpointer      user_data)
596 {
597   GDBusProxy *proxy;
598   GError *error;
599
600   error = NULL;
601   proxy = g_dbus_proxy_new_for_bus_finish (result, &error);
602   g_assert_no_error (error);
603
604   test_basic (proxy);
605   test_methods (proxy);
606   test_properties (proxy);
607   test_signals (proxy);
608   test_expected_interface (proxy);
609
610   g_object_unref (proxy);
611 }
612
613 static void
614 test_async (void)
615 {
616   g_dbus_proxy_new_for_bus (G_BUS_TYPE_SESSION,
617                             G_DBUS_PROXY_FLAGS_NONE,
618                             NULL,                      /* GDBusInterfaceInfo */
619                             "com.example.TestService", /* name */
620                             "/com/example/TestObject", /* object path */
621                             "com.example.Frob",        /* interface */
622                             NULL, /* GCancellable */
623                             proxy_ready,
624                             NULL);
625 }
626
627 static void
628 test_no_properties (void)
629 {
630   GDBusProxy *proxy;
631   GError *error;
632
633   error = NULL;
634   proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
635                                          G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES,
636                                          NULL,                      /* GDBusInterfaceInfo */
637                                          "com.example.TestService", /* name */
638                                          "/com/example/TestObject", /* object path */
639                                          "com.example.Frob",        /* interface */
640                                          NULL, /* GCancellable */
641                                          &error);
642   g_assert_no_error (error);
643
644   test_properties (proxy);
645
646   g_object_unref (proxy);
647 }
648
649 int
650 main (int   argc,
651       char *argv[])
652 {
653   gint ret;
654   GDBusNodeInfo *introspection_data = NULL;
655
656   g_type_init ();
657   g_test_init (&argc, &argv, NULL);
658
659   introspection_data = g_dbus_node_info_new_for_xml (frob_dbus_interface_xml, NULL);
660   g_assert (introspection_data != NULL);
661   frob_dbus_interface_info = introspection_data->interfaces[0];
662
663   /* all the tests rely on a shared main loop */
664   loop = g_main_loop_new (NULL, FALSE);
665
666   /* all the tests use a session bus with a well-known address that we can bring up and down
667    * using session_bus_up() and session_bus_down().
668    */
669   g_unsetenv ("DISPLAY");
670   g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE);
671
672   g_test_add_func ("/gdbus/proxy", test_proxy);
673   g_test_add_func ("/gdbus/proxy/async", test_async);
674   g_test_add_func ("/gdbus/proxy/no-properties", test_no_properties);
675
676   ret = g_test_run();
677
678   g_dbus_node_info_unref (introspection_data);
679   return ret;
680 }