Improve test coverage for GPropertyAction
[platform/upstream/glib.git] / gio / tests / gdbus-sessionbus.c
1 /* GLib testing framework examples and tests
2  *
3  * Copyright (C) 2012 Collabora Ltd. <http://www.collabora.co.uk/>
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: Xavier Claessens <xavier.claessens@collabora.co.uk>
21  */
22
23 #include "gdbus-sessionbus.h"
24
25 static GTestDBus *singleton = NULL;
26
27 void
28 session_bus_up (void)
29 {
30   g_assert (singleton == NULL);
31   singleton = g_test_dbus_new (G_TEST_DBUS_NONE);
32   g_test_dbus_up (singleton);
33 }
34
35 void
36 session_bus_stop (void)
37 {
38   g_assert (singleton != NULL);
39   g_test_dbus_stop (singleton);
40 }
41
42 void
43 session_bus_down (void)
44 {
45   g_assert (singleton != NULL);
46   g_test_dbus_down (singleton);
47   g_clear_object (&singleton);
48 }
49
50 gint
51 session_bus_run (void)
52 {
53   gint ret;
54
55   session_bus_up ();
56   ret = g_test_run ();
57   session_bus_down ();
58
59   return ret;
60 }